Sun, 04 Nov 2012 17:39:08 +0100
Changed a few places to use the new notification system.
--- a/Debugger/DebugUI.py Sun Nov 04 16:55:20 2012 +0100 +++ b/Debugger/DebugUI.py Sun Nov 04 17:39:08 2012 +0100 @@ -959,15 +959,26 @@ ' status of {1}.</p>') .format(Utilities.normabspath(self.ui.currentProg), status)) else: - if self.ui.currentProg is None: - self.appendStdout.emit( - self.trUtf8('The program has terminated with an exit' - ' status of {0}.\n').format(status)) + if self.ui.notificationsEnabled(): + if self.ui.currentProg is None: + msg = self.trUtf8('The program has terminated with an exit' + ' status of {0}.\n').format(status) + else: + msg = self.trUtf8('"{0}" has terminated with an exit' + ' status of {1}.\n')\ + .format(Utilities.normabspath(self.ui.currentProg), status) + self.ui.showNotification(UI.PixmapCache.getPixmap("debug48.png"), + self.trUtf8("Program terminated"), msg) else: - self.appendStdout.emit( - self.trUtf8('"{0}" has terminated with an exit' - ' status of {1}.\n') - .format(Utilities.normabspath(self.ui.currentProg), status)) + if self.ui.currentProg is None: + self.appendStdout.emit( + self.trUtf8('The program has terminated with an exit' + ' status of {0}.\n').format(status)) + else: + self.appendStdout.emit( + self.trUtf8('"{0}" has terminated with an exit' + ' status of {1}.\n') + .format(Utilities.normabspath(self.ui.currentProg), status)) def __clientSyntaxError(self, message, filename, lineNo, characterNo): """
--- a/Project/ProjectFormsBrowser.py Sun Nov 04 16:55:20 2012 +0100 +++ b/Project/ProjectFormsBrowser.py Sun Nov 04 17:39:08 2012 +0100 @@ -23,6 +23,7 @@ from .ProjectBaseBrowser import ProjectBaseBrowser from UI.DeleteFilesConfirmationDialog import DeleteFilesConfirmationDialog +import UI.PixmapCache import Preferences import Utilities @@ -603,6 +604,7 @@ """ self.compileRunning = False e5App().getObject("ViewManager").enableEditorsCheckFocusIn(True) + ui = e5App().getObject("UserInterface") if exitStatus == QProcess.NormalExit and exitCode == 0 and self.buf: ofn = os.path.join(self.project.ppath, self.compiledFile) try: @@ -616,11 +618,16 @@ f.close() if self.compiledFile not in self.project.pdata["SOURCES"]: self.project.appendFile(ofn) - if not self.noDialog: + if not self.noDialog and not ui.notificationsEnabled(): E5MessageBox.information(self, self.trUtf8("Form Compilation"), self.trUtf8("The compilation of the form file" " was successful.")) + else: + ui.showNotification(UI.PixmapCache.getPixmap("designer48.png"), + self.trUtf8("Form Compilation"), + self.trUtf8("The compilation of the form file" + " was successful.")) self.project.projectFormCompiled.emit(self.compiledFile) except IOError as msg: if not self.noDialog: @@ -628,11 +635,20 @@ self.trUtf8("Form Compilation"), self.trUtf8("<p>The compilation of the form file failed.</p>" "<p>Reason: {0}</p>").format(str(msg))) + else: + ui.showNotification(UI.PixmapCache.getPixmap("designer48.png"), + self.trUtf8("Form Compilation"), + self.trUtf8("<p>The compilation of the form file failed.</p>" + "<p>Reason: {0}</p>").format(str(msg))) else: if not self.noDialog: E5MessageBox.information(self, self.trUtf8("Form Compilation"), self.trUtf8("The compilation of the form file failed.")) + else: + ui.showNotification(UI.PixmapCache.getPixmap("designer48.png"), + self.trUtf8("Form Compilation"), + self.trUtf8("The compilation of the form file failed.")) self.compileProc = None def __compileUI(self, fn, noDialog=False, progress=None):
--- a/Project/ProjectTranslationsBrowser.py Sun Nov 04 16:55:20 2012 +0100 +++ b/Project/ProjectTranslationsBrowser.py Sun Nov 04 17:39:08 2012 +0100 @@ -15,6 +15,7 @@ from PyQt4.QtGui import QDialog, QMenu from E5Gui import E5MessageBox +from E5Gui.E5Application import e5App from .ProjectBrowserModel import ProjectBrowserFileItem, \ ProjectBrowserSimpleDirectoryItem, ProjectBrowserDirectoryItem, \ @@ -22,6 +23,7 @@ from .ProjectBaseBrowser import ProjectBaseBrowser from UI.DeleteFilesConfirmationDialog import DeleteFilesConfirmationDialog +import UI.PixmapCache import Preferences import Utilities @@ -833,10 +835,17 @@ """ self.pylupdateProcRunning = False if exitStatus == QProcess.NormalExit and exitCode == 0: - E5MessageBox.information(self, - self.trUtf8("Translation file generation"), - self.trUtf8("The generation of the translation files (*.ts)" - " was successful.")) + ui = e5App().getObject("UserInterface") + if ui.notificationsEnabled(): + ui.showNotification(UI.PixmapCache.getPixmap("linguist48.png"), + self.trUtf8("Translation file generation"), + self.trUtf8("The generation of the translation files (*.ts)" + " was successful.")) + else: + E5MessageBox.information(self, + self.trUtf8("Translation file generation"), + self.trUtf8("The generation of the translation files (*.ts)" + " was successful.")) else: E5MessageBox.critical(self, self.trUtf8("Translation file generation"), @@ -972,10 +981,17 @@ """ self.lreleaseProcRunning = False if exitStatus == QProcess.NormalExit and exitCode == 0: - E5MessageBox.information(self, - self.trUtf8("Translation file release"), - self.trUtf8("The release of the translation files (*.qm)" - " was successful.")) + ui = e5App().getObject("UserInterface") + if ui.notificationsEnabled(): + ui.showNotification(UI.PixmapCache.getPixmap("linguist48.png"), + self.trUtf8("Translation file release"), + self.trUtf8("The release of the translation files (*.qm)" + " was successful.")) + else: + E5MessageBox.information(self, + self.trUtf8("Translation file release"), + self.trUtf8("The release of the translation files (*.qm)" + " was successful.")) if self.project.pdata["TRANSLATIONSBINPATH"]: target = os.path.join(self.project.ppath, self.project.pdata["TRANSLATIONSBINPATH"][0])
--- a/i18n/eric5_cs.ts Sun Nov 04 16:55:20 2012 +0100 +++ b/i18n/eric5_cs.ts Sun Nov 04 17:39:08 2012 +0100 @@ -4545,7 +4545,7 @@ <context> <name>DebugUI</name> <message> - <location filename="Debugger/DebugUI.py" line="1587"/> + <location filename="Debugger/DebugUI.py" line="1598"/> <source>Run Script</source> <translation>Spustit skript</translation> </message> @@ -4565,7 +4565,7 @@ <translation><b>Spustit skript</b><p>Nastavení parametrů příkazové řádky a spuštění skriptu bez debugeru. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>Run Project</source> <translation>Spustit projekt</translation> </message> @@ -4665,7 +4665,7 @@ <translation><b>Profilovat projekt</b><p>Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1697"/> + <location filename="Debugger/DebugUI.py" line="1708"/> <source>Debug Script</source> <translation>Debugovat skript</translation> </message> @@ -4685,7 +4685,7 @@ <translation><b>Debugovat skript</b><p>Nastavení parametrů příkazové řádky a aktuální řádky jako první python příkaz v aktuálním editačním okně. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>Debug Project</source> <translation>Debugovat projekt</translation> </message> @@ -4840,7 +4840,7 @@ <translation><b>Stop</b><p>Stop běhu aktuální debug relace.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Evaluate</source> <translation>Evaluate</translation> </message> @@ -4855,7 +4855,7 @@ <translation>Vyhodnotit aktuální kontext</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Execute</source> <translation>Vykonat</translation> </message> @@ -5013,62 +5013,62 @@ <translation>Debug</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="986"/> + <location filename="Debugger/DebugUI.py" line="997"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Program, který je právě debugován, obsahuje nespecifikovanou syntaktickou chybu.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1009"/> + <location filename="Debugger/DebugUI.py" line="1020"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Objevila se neošetřená výjimka. Detaily naleznete v shell okně.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1092"/> + <location filename="Debugger/DebugUI.py" line="1103"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Debugovaný program byl neočekávaně ukončen.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source>Breakpoint Condition Error</source> <translation>Chyba v podmíněném breakpointu</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1384"/> + <location filename="Debugger/DebugUI.py" line="1395"/> <source>Coverage of Project</source> <translation>Pokrytí projektu</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1374"/> + <location filename="Debugger/DebugUI.py" line="1385"/> <source>Coverage of Script</source> <translation>Pokrytí skriptu</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>There is no main script defined for the current project. Aborting</source> <translation>V aktuálním projektu není definován hlavní skript. Zrušeno</translation> </message> <message> + <location filename="Debugger/DebugUI.py" line="1502"/> + <source>Profile of Project</source> + <translation>Profilovat projekt</translation> + </message> + <message> <location filename="Debugger/DebugUI.py" line="1491"/> - <source>Profile of Project</source> - <translation>Profilovat projekt</translation> - </message> - <message> - <location filename="Debugger/DebugUI.py" line="1480"/> <source>Profile of Script</source> <translation>Profilovat skript</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>V aktuálním projektu není definován hlavní skript. Debugování není možné.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Enter the statement to evaluate</source> <translation>Zadejte příkaz pro vyhodnocení</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Enter the statement to execute</source> <translation>Zadejte příkaz pro vykonání</translation> </message> @@ -5093,12 +5093,12 @@ <translation><b>Vyhodnotit</b><p>Vyhodnotit výraz aktuálního kontextu debugovaného programu. Výsledek je zobrazen v shell okně.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source>Watch Expression Error</source> <translation>Chyba sledovacího bodu</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1227"/> + <location filename="Debugger/DebugUI.py" line="1238"/> <source>Watch expression already exists</source> <translation>Sledovací bod již existuje</translation> </message> @@ -5145,52 +5145,57 @@ <translation><p><b>{0}</b> byl ukončen s exit statusem {1}.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="992"/> + <location filename="Debugger/DebugUI.py" line="1003"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation><p>Soubor <b>{0}</b> na řádce <b>{1}</b>, písmeno <b>{2}</b>, obsahuje syntaktickou chybu <b>{3}</b>.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1047"/> - <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> - <translation><p>Debugovaný program vyvolal výjimku <b>{0}</b><br>"<b>{1}</b>"<br>Soubor: <b>{2}</b>, řádek: <b>{3}</b></p><p>Zastavit zde?</p></translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="1058"/> + <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> + <translation><p>Debugovaný program vyvolal výjimku <b>{0}</b><br>"<b>{1}</b>"<br>Soubor: <b>{2}</b>, řádek: <b>{3}</b></p><p>Zastavit zde?</p></translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="1069"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>Debugovaný program vyvolal výjimku <b>{0}</b><br>"<b>{1}</b>"</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>Podmínka breakpointu <b>{0}, {1}</b> obsahuje syntaktickou chybu.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>Sledovací bod <b>{0}</b> obsahuje syntaktickou chybu.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1219"/> + <location filename="Debugger/DebugUI.py" line="1230"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>Sledovací bod '<b>{0}</b>' již existuje.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1223"/> + <location filename="Debugger/DebugUI.py" line="1234"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>Sledovací bod '<b>{0}</b>' pro proměnnou <b>{1}</b> již existuje.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="963"/> + <location filename="Debugger/DebugUI.py" line="974"/> <source>The program has terminated with an exit status of {0}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="967"/> + <location filename="Debugger/DebugUI.py" line="978"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Debugger/DebugUI.py" line="970"/> + <source>Program terminated</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebugViewer</name> @@ -32626,242 +32631,242 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="Project/ProjectFormsBrowser.py" line="67"/> + <location filename="Project/ProjectFormsBrowser.py" line="68"/> <source>Forms</source> <translation>Formuláře</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="69"/> + <location filename="Project/ProjectFormsBrowser.py" line="70"/> <source><b>Project Forms Browser</b><p>This allows to easily see all forms contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Prohlížeč formulářů projektu</b><p>Umožňuje jednoduše vidět všechny formuláře aktuálního projektu. Několik akcí lze provést i přes kontextové menu.</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="82"/> - <source>Dialog</source> - <translation>Dialog</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="83"/> - <source>Widget</source> - <translation>Widget</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="87"/> - <source>Dialog with Buttons (Bottom)</source> - <translation>Dialog s tlačítky (dole)</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="89"/> - <source>Dialog with Buttons (Right)</source> - <translation>Dialog s tlačítky (vpravo)</translation> + <source>Dialog</source> + <translation>Dialog</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="84"/> - <source>Main Window</source> - <translation>Hlavní okno aplikace</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="85"/> - <source>Dialog with Buttonbox (Bottom)</source> - <translation>Dialog s boxem s tlačítky (dole)</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="86"/> - <source>Dialog with Buttonbox (Right)</source> - <translation>Dialog s boxem s tlačítky (vpravo)</translation> + <source>Widget</source> + <translation>Widget</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="88"/> + <source>Dialog with Buttons (Bottom)</source> + <translation>Dialog s tlačítky (dole)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="90"/> + <source>Dialog with Buttons (Right)</source> + <translation>Dialog s tlačítky (vpravo)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="85"/> + <source>Main Window</source> + <translation>Hlavní okno aplikace</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="86"/> + <source>Dialog with Buttonbox (Bottom)</source> + <translation>Dialog s boxem s tlačítky (dole)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="87"/> + <source>Dialog with Buttonbox (Right)</source> + <translation>Dialog s boxem s tlačítky (vpravo)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="89"/> <source>Dialog with Buttons (Bottom-Center)</source> <translation>Dialog s tlačítky (dole uprostřed)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="122"/> + <location filename="Project/ProjectFormsBrowser.py" line="123"/> <source>Compile form</source> <translation>Kompilovat formulář</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="271"/> + <location filename="Project/ProjectFormsBrowser.py" line="272"/> <source>Compile all forms</source> <translation>Kompilovat všechny formuláře</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="199"/> + <location filename="Project/ProjectFormsBrowser.py" line="200"/> <source>Open in Qt-Designer</source> <translation>Otevřít v Qt-Designeru</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="201"/> + <location filename="Project/ProjectFormsBrowser.py" line="202"/> <source>Open in Editor</source> <translation>Otevřít v editoru</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="118"/> + <location filename="Project/ProjectFormsBrowser.py" line="119"/> <source>Preview form</source> <translation>Náhled formuláře</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="204"/> + <location filename="Project/ProjectFormsBrowser.py" line="205"/> <source>Preview translations</source> <translation>Náhled překladů</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="141"/> + <location filename="Project/ProjectFormsBrowser.py" line="142"/> <source>Rename file</source> <translation>Přejmenovat soubor</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="240"/> + <location filename="Project/ProjectFormsBrowser.py" line="241"/> <source>Remove from project</source> <translation>Odebrat z projektu</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="218"/> + <location filename="Project/ProjectFormsBrowser.py" line="219"/> <source>Delete</source> <translation>Smazat</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="247"/> + <location filename="Project/ProjectFormsBrowser.py" line="248"/> <source>New form...</source> <translation>Nový formulář...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="276"/> + <location filename="Project/ProjectFormsBrowser.py" line="277"/> <source>Add forms...</source> <translation>Přidat formuláře...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="278"/> + <location filename="Project/ProjectFormsBrowser.py" line="279"/> <source>Add forms directory...</source> <translation>Přidat adresář s formuláři...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="281"/> + <location filename="Project/ProjectFormsBrowser.py" line="282"/> <source>Expand all directories</source> <translation>Rozložit všechny adresáře</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="283"/> + <location filename="Project/ProjectFormsBrowser.py" line="284"/> <source>Collapse all directories</source> <translation>Složit všechny adresáře</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="208"/> + <location filename="Project/ProjectFormsBrowser.py" line="209"/> <source>Compile forms</source> <translation>Kompilovat formuláře</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> <source>New Form</source> <translation>Nový formulář</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="484"/> + <location filename="Project/ProjectFormsBrowser.py" line="485"/> <source>Select a form type:</source> <translation>Vybrat typ formuláře:</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="517"/> + <location filename="Project/ProjectFormsBrowser.py" line="518"/> <source>The file already exists! Overwrite it?</source> <translation>Soubor již existuje! Přepsat jej?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Delete forms</source> <translation>Smazat formuláře</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Do you really want to delete these forms from the project?</source> <translation>Opravdu chcete odebrat tyto formuláře z projektu?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>Form Compilation</source> <translation>Kompilace formuláře</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="620"/> - <source>The compilation of the form file was successful.</source> - <translation>Kompilace souboru s formulářem byla úspěšná.</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> - <source>The compilation of the form file failed.</source> - <translation>Kompilace souboru s formulářem selhala.</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> - <source>Process Generation Error</source> - <translation>Chyba v procesu generování</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> - <source>Compiling forms...</source> - <translation>Kompilovat formuláře...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> - <source>Abort</source> - <translation>Přerušit</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="825"/> - <source>Determining changed forms...</source> - <translation>Určení změněných formulářů...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="852"/> - <source>Compiling changed forms...</source> - <translation>Kompilování změněných formulářů...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="131"/> - <source>Generate Dialog Code...</source> - <translation>Generovat kód Dialog...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="213"/> - <source>Open</source> - <translation>Otevřít</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="498"/> - <source>Qt User-Interface Files (*.ui);;All Files (*)</source> - <translation>Qt User-Interface soubory (*.ui);;Všechny soubory (*)</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="286"/> - <source>Configure...</source> - <translation>Konfigurovat...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="254"/> - <source>Copy Path to Clipboard</source> - <translation>Kopírovat cestu do schránky</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> - <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> - <translation><p>Nový soubor s formulářem <b>{0}</b> se nepodařilo vytvořit..<br>Problém: {1}</p></translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="627"/> + <source>The compilation of the form file was successful.</source> + <translation>Kompilace souboru s formulářem byla úspěšná.</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> + <source>The compilation of the form file failed.</source> + <translation>Kompilace souboru s formulářem selhala.</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> + <source>Process Generation Error</source> + <translation>Chyba v procesu generování</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> + <source>Compiling forms...</source> + <translation>Kompilovat formuláře...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> + <source>Abort</source> + <translation>Přerušit</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="841"/> + <source>Determining changed forms...</source> + <translation>Určení změněných formulářů...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="868"/> + <source>Compiling changed forms...</source> + <translation>Kompilování změněných formulářů...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="132"/> + <source>Generate Dialog Code...</source> + <translation>Generovat kód Dialog...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="214"/> + <source>Open</source> + <translation>Otevřít</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="499"/> + <source>Qt User-Interface Files (*.ui);;All Files (*)</source> + <translation>Qt User-Interface soubory (*.ui);;Všechny soubory (*)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="287"/> + <source>Configure...</source> + <translation>Konfigurovat...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="255"/> + <source>Copy Path to Clipboard</source> + <translation>Kopírovat cestu do schránky</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> + <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> + <translation><p>Nový soubor s formulářem <b>{0}</b> se nepodařilo vytvořit..<br>Problém: {1}</p></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="639"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation><p>Kompilace formuláře se nepodařila.</p><p>Důvod: {0}</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>Nelze spustit {0}.<br>Ověřte, že je umístěn v požadované cestě.</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="90"/> - <source>Wizard</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <source>Wizard</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="92"/> <source>Wizard Page</source> <translation type="unfinished"></translation> </message> @@ -33644,187 +33649,187 @@ <context> <name>ProjectTranslationsBrowser</name> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="65"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> <source>Translations</source> <translation>Překlady</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="69"/> <source><b>Project Translations Browser</b><p>This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Prohlížeč jazykových překladů projektu</b><p>Umožňuje jednoduše vidět všechny překlady aktuálního projektu. Několik akcí lze provést i přes kontextové menu.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="153"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="155"/> <source>Generate translation</source> <translation>Generovat překlad</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="160"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="162"/> <source>Generate translation (with obsolete)</source> <translation>Generovat překlad (původní)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="360"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="362"/> <source>Generate all translations</source> <translation>Generovat všechny překlady</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="366"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="368"/> <source>Generate all translations (with obsolete)</source> <translation>Generovat všechny překlady (původní)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="277"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="279"/> <source>Open in Qt-Linguist</source> <translation>Otevřít v Qt-Linguist</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="315"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="317"/> <source>Open in Editor</source> <translation>Otevřít v editoru</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="184"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="186"/> <source>Release translation</source> <translation>Zveřejnit překlad</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="372"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="374"/> <source>Release all translations</source> <translation>Zveřejnit všechny překlady</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="138"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="140"/> <source>Preview translation</source> <translation>Náhled překladu</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="349"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="351"/> <source>Preview all translations</source> <translation>Náhled všech překladů</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="327"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="329"/> <source>Remove from project</source> <translation>Odebrat z projektu</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="330"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="332"/> <source>Delete</source> <translation>Smazat</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="378"/> - <source>Add translation...</source> - <translation>Přidat překlad...</translation> - </message> - <message> <location filename="Project/ProjectTranslationsBrowser.py" line="380"/> + <source>Add translation...</source> + <translation>Přidat překlad...</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="382"/> <source>Add translation files...</source> <translation>Přidat soubory s překladem...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="301"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="303"/> <source>Generate translations</source> <translation>Generovat překlady</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="308"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="310"/> <source>Generate translations (with obsolete)</source> <translation>Generovat překlady (původní)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="320"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="322"/> <source>Release translations</source> <translation>Zveřejnit překlady</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="289"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="291"/> <source>Preview translations</source> <translation>Náhled překladů</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Delete translation files</source> <translation>Smazat soubory s překlady</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Do you really want to delete these translation files from the project?</source> <translation>Opravdu chcete odebrat tyto soubory s překlady z projektu?</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source>Write temporary project file</source> <translation>Zapsat dočasný soubor projektu</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="710"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="712"/> <source>No translation files (*.ts) selected.</source> <translation>Nebyly vybrány žádné soubory s překlady (*.ts).</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>Translation file generation</source> <translation>Generování souboru s překladem</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="836"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="845"/> <source>The generation of the translation files (*.ts) was successful.</source> <translation>Generování souboru s překladem (*.ts) bylo úspěšné.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>The generation of the translation files (*.ts) has failed.</source> <translation>Generování souboru s překladem (*.ts) selhalo.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source>Process Generation Error</source> <translation>Chyba v procesu generování</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>Translation file release</source> <translation>Zveřejnění souboru s překladem</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="975"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="991"/> <source>The release of the translation files (*.qm) was successful.</source> <translation>Zveřejnění souboru s překladem (*.qm) bylo úspěšné.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>The release of the translation files (*.qm) has failed.</source> <translation>Zveřejnění souboru s překladem (*.qm) selhalo.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="386"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="388"/> <source>Configure...</source> <translation>Konfigurovat...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="353"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="355"/> <source>Extract messages</source> <translation>Extrahovat zprávy</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="383"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="385"/> <source>Copy Path to Clipboard</source> <translation>Kopírovat cestu do schránky</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> <translation><p>Do dočasného souboru projektu <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="926"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="935"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>Nelze spustit {0}.<br>Ověřte, že je umístěn v požadované cestě.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit zveřejnění.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message>
--- a/i18n/eric5_de.ts Sun Nov 04 16:55:20 2012 +0100 +++ b/i18n/eric5_de.ts Sun Nov 04 17:39:08 2012 +0100 @@ -4390,7 +4390,7 @@ <context> <name>DebugUI</name> <message> - <location filename="Debugger/DebugUI.py" line="1587"/> + <location filename="Debugger/DebugUI.py" line="1598"/> <source>Run Script</source> <translation>Skript ausführen</translation> </message> @@ -4405,7 +4405,7 @@ <translation>Das aktuelle Skript ausführen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>Run Project</source> <translation>Projekt ausführen</translation> </message> @@ -4525,47 +4525,47 @@ <translation><b>Einzelanweisung ausführen</b><p>Führe eine einzelne Anweisung im aktuellen Kontext des debuggten Programmes aus.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="986"/> + <location filename="Debugger/DebugUI.py" line="997"/> <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="1009"/> + <location filename="Debugger/DebugUI.py" line="1020"/> <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="1092"/> + <location filename="Debugger/DebugUI.py" line="1103"/> <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="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>Debug Project</source> <translation>Projekt debuggen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <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="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Evaluate</source> <translation>Auswerten</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Enter the statement to evaluate</source> <translation>Gebe die auszuwertende Anweisung ein</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Execute</source> <translation>Einzelanweisung ausführen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Enter the statement to execute</source> <translation>Gebe die auszuführende Anweisung ein</translation> </message> @@ -4625,7 +4625,7 @@ <translation><b>Skript ausführen</b><p>Bestimme die Kommandozeilenparameter und führe das Skript auserhalb 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="1697"/> + <location filename="Debugger/DebugUI.py" line="1708"/> <source>Debug Script</source> <translation>Debug Skript</translation> </message> @@ -4660,7 +4660,7 @@ <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="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <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> @@ -4710,12 +4710,12 @@ <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="1384"/> + <location filename="Debugger/DebugUI.py" line="1395"/> <source>Coverage of Project</source> <translation>Abdeckung des Projektes</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1374"/> + <location filename="Debugger/DebugUI.py" line="1385"/> <source>Coverage of Script</source> <translation>Abdeckung des Skriptes</translation> </message> @@ -4760,12 +4760,12 @@ <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="1491"/> + <location filename="Debugger/DebugUI.py" line="1502"/> <source>Profile of Project</source> <translation>Projektprofil</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1480"/> + <location filename="Debugger/DebugUI.py" line="1491"/> <source>Profile of Script</source> <translation>Skriptprofil</translation> </message> @@ -4875,7 +4875,7 @@ <translation><p><b>{0}</b> wurde mit dem Status {1} beendet.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1058"/> + <location filename="Debugger/DebugUI.py" line="1069"/> <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> @@ -4885,12 +4885,12 @@ <translation><p>Das Programm wurde mit dem Status {0} beendet.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source>Breakpoint Condition Error</source> <translation>Fehler in Haltepunkt Bedingung</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <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> @@ -4933,12 +4933,12 @@ <translation>Debug</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1047"/> + <location filename="Debugger/DebugUI.py" line="1058"/> <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="992"/> + <location filename="Debugger/DebugUI.py" line="1003"/> <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> @@ -4963,27 +4963,27 @@ <translation><b>Auswerten</b><p>Wertet einen Ausdruck im aktuellen Kontext des debuggten Programmes aus. Das Resultat wird im Shell-Fenster angezeigt.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source>Watch Expression Error</source> <translation>Fehler in Beobachtungsausdruck</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <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="1219"/> + <location filename="Debugger/DebugUI.py" line="1230"/> <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="1223"/> + <location filename="Debugger/DebugUI.py" line="1234"/> <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="1227"/> + <location filename="Debugger/DebugUI.py" line="1238"/> <source>Watch expression already exists</source> <translation>Beaobachtungsausdruck existiert bereits</translation> </message> @@ -5025,19 +5025,24 @@ <translation>Haltepunkt bearbeiten...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="963"/> + <location filename="Debugger/DebugUI.py" line="974"/> <source>The program has terminated with an exit status of {0}. </source> <translation>Das Programm wurde mit dem Status {0} beendet. </translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="967"/> + <location filename="Debugger/DebugUI.py" line="978"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation>"{0}" wurde mit dem Status {1} beendet. </translation> </message> + <message> + <location filename="Debugger/DebugUI.py" line="970"/> + <source>Program terminated</source> + <translation>Programm beendet</translation> + </message> </context> <context> <name>DebugViewer</name> @@ -31420,242 +31425,242 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="Project/ProjectFormsBrowser.py" line="67"/> + <location filename="Project/ProjectFormsBrowser.py" line="68"/> <source>Forms</source> <translation>Formulare</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="69"/> + <location filename="Project/ProjectFormsBrowser.py" line="70"/> <source><b>Project Forms Browser</b><p>This allows to easily see all forms contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Projekt Formular Browser</b><p>Dies bietet eine Übersicht aller im Projekt enthaltenen Formulare an. Verschieden Aktionen können über das Kontextmenü ausgeführt werden.</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="122"/> + <location filename="Project/ProjectFormsBrowser.py" line="123"/> <source>Compile form</source> <translation>Formular übersetzen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="271"/> + <location filename="Project/ProjectFormsBrowser.py" line="272"/> <source>Compile all forms</source> <translation>Alle Formulare übersetzen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="240"/> + <location filename="Project/ProjectFormsBrowser.py" line="241"/> <source>Remove from project</source> <translation>Aus dem Projekt entfernen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="218"/> + <location filename="Project/ProjectFormsBrowser.py" line="219"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>Form Compilation</source> <translation>Formular übersetzen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="620"/> + <location filename="Project/ProjectFormsBrowser.py" line="627"/> <source>The compilation of the form file was successful.</source> <translation>Die Übersetzung des Formulars war erfolgreich.</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Compiling forms...</source> <translation>Formular übersetzen...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Abort</source> <translation>Abbrechen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="199"/> + <location filename="Project/ProjectFormsBrowser.py" line="200"/> <source>Open in Qt-Designer</source> <translation>Mit Qt-Designer öffnen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="278"/> + <location filename="Project/ProjectFormsBrowser.py" line="279"/> <source>Add forms directory...</source> <translation>Formularverzeichnis hinzufügen...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>The compilation of the form file failed.</source> <translation>Die Übersetzung des Formulars ist fehlgeschlagen.</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="82"/> - <source>Dialog</source> - <translation>Dialog</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="83"/> + <source>Dialog</source> + <translation>Dialog</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="84"/> <source>Widget</source> <translation>Widget</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="87"/> + <location filename="Project/ProjectFormsBrowser.py" line="88"/> <source>Dialog with Buttons (Bottom)</source> <translation>Dialog mit Knöpfen (unten)</translation> </message> <message> + <location filename="Project/ProjectFormsBrowser.py" line="90"/> + <source>Dialog with Buttons (Right)</source> + <translation>Dialog mit Knöpfen (rechts)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="248"/> + <source>New form...</source> + <translation>Neues Formular...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> + <source>New Form</source> + <translation>Neues Formular</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="485"/> + <source>Select a form type:</source> + <translation>Wähle einen Formulartyp:</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="282"/> + <source>Expand all directories</source> + <translation>Alle Verzeichnisse aufklappen</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="284"/> + <source>Collapse all directories</source> + <translation>Alle Verzeichnisse einklappen</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="202"/> + <source>Open in Editor</source> + <translation>Mit Editor öffnen</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="142"/> + <source>Rename file</source> + <translation>Datei umbenennen</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="209"/> + <source>Compile forms</source> + <translation>Formulare übersetzen</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> + <source>Delete forms</source> + <translation>Formulare löschen</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> + <source>Do you really want to delete these forms from the project?</source> + <translation>Wollen Sie wirklich diese Formulare aus dem Projekt löschen?</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> + <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> + <translation><p>Die neue Formulardatei <b>{0}</b> konnte nicht erzeugt werden.<br>Problem: {1}</p></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="119"/> + <source>Preview form</source> + <translation>Formularvorschau</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="205"/> + <source>Preview translations</source> + <translation>Übersetzungsvorschau</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="639"/> + <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> + <translation><p>Die Übersetzung des Formulars ist fehlgeschlagen.</p<p>Grund: {0}</p></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> + <source>Could not start {0}.<br>Ensure that it is in the search path.</source> + <translation>{0} konnte nicht gestartet werden.<br>Stellen sie sicher, dass es sich im Suchpfad befindet.</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="277"/> + <source>Add forms...</source> + <translation>Formulare hinzufügen...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="85"/> + <source>Main Window</source> + <translation>Hauptfenster</translation> + </message> + <message> <location filename="Project/ProjectFormsBrowser.py" line="89"/> - <source>Dialog with Buttons (Right)</source> - <translation>Dialog mit Knöpfen (rechts)</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="247"/> - <source>New form...</source> - <translation>Neues Formular...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> - <source>New Form</source> - <translation>Neues Formular</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="484"/> - <source>Select a form type:</source> - <translation>Wähle einen Formulartyp:</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="281"/> - <source>Expand all directories</source> - <translation>Alle Verzeichnisse aufklappen</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="283"/> - <source>Collapse all directories</source> - <translation>Alle Verzeichnisse einklappen</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="201"/> - <source>Open in Editor</source> - <translation>Mit Editor öffnen</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="141"/> - <source>Rename file</source> - <translation>Datei umbenennen</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="208"/> - <source>Compile forms</source> - <translation>Formulare übersetzen</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> - <source>Delete forms</source> - <translation>Formulare löschen</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> - <source>Do you really want to delete these forms from the project?</source> - <translation>Wollen Sie wirklich diese Formulare aus dem Projekt löschen?</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> - <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> - <translation><p>Die neue Formulardatei <b>{0}</b> konnte nicht erzeugt werden.<br>Problem: {1}</p></translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="118"/> - <source>Preview form</source> - <translation>Formularvorschau</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="204"/> - <source>Preview translations</source> - <translation>Übersetzungsvorschau</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="627"/> - <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> - <translation><p>Die Übersetzung des Formulars ist fehlgeschlagen.</p<p>Grund: {0}</p></translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> - <source>Could not start {0}.<br>Ensure that it is in the search path.</source> - <translation>{0} konnte nicht gestartet werden.<br>Stellen sie sicher, dass es sich im Suchpfad befindet.</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="276"/> - <source>Add forms...</source> - <translation>Formulare hinzufügen...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="84"/> - <source>Main Window</source> - <translation>Hauptfenster</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="88"/> <source>Dialog with Buttons (Bottom-Center)</source> <translation>Dialog mit Knöpfen (unten Mitte)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="825"/> + <location filename="Project/ProjectFormsBrowser.py" line="841"/> <source>Determining changed forms...</source> <translation>Ermittle veränderte Formulare...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="852"/> + <location filename="Project/ProjectFormsBrowser.py" line="868"/> <source>Compiling changed forms...</source> <translation>Übersetze veränderte Formulare...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="517"/> + <location filename="Project/ProjectFormsBrowser.py" line="518"/> <source>The file already exists! Overwrite it?</source> <translation>Die Datei existiert bereits. Überschreiben?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="85"/> - <source>Dialog with Buttonbox (Bottom)</source> - <translation>Dialog mit Knöpfebox (unten)</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="86"/> + <source>Dialog with Buttonbox (Bottom)</source> + <translation>Dialog mit Knöpfebox (unten)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="87"/> <source>Dialog with Buttonbox (Right)</source> <translation>Dialog mit Knöpfebox (rechts)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="131"/> + <location filename="Project/ProjectFormsBrowser.py" line="132"/> <source>Generate Dialog Code...</source> <translation>Erzeuge Dialogcode...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="213"/> + <location filename="Project/ProjectFormsBrowser.py" line="214"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="498"/> + <location filename="Project/ProjectFormsBrowser.py" line="499"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>Qt Formulare (*.ui);;Alle Dateien (*)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="286"/> + <location filename="Project/ProjectFormsBrowser.py" line="287"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="254"/> + <location filename="Project/ProjectFormsBrowser.py" line="255"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="90"/> - <source>Wizard</source> - <translation>Assistent</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <source>Wizard</source> + <translation>Assistent</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="92"/> <source>Wizard Page</source> <translation>Assistentenseite</translation> </message> @@ -32423,187 +32428,187 @@ <context> <name>ProjectTranslationsBrowser</name> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="65"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> <source>Translations</source> <translation>Übersetzungen</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="69"/> <source><b>Project Translations Browser</b><p>This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Projekt Übersetzungen Browser</b><p>Dies bietet eine Übersicht aller im Projekt enthaltenen Übersetzungen an. Verschieden Aktionen können über das Kontextmenü ausgeführt werden.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="301"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="303"/> <source>Generate translations</source> <translation>Übersetzungen erzeugen</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="308"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="310"/> <source>Generate translations (with obsolete)</source> <translation>Übersetzungen erzeugen (mit überholten Texten)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="320"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="322"/> <source>Release translations</source> <translation>Übersetzungen freigeben</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="327"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="329"/> <source>Remove from project</source> <translation>Aus dem Projekt entfernen</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="330"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="332"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="378"/> - <source>Add translation...</source> - <translation>Übersetzung hinzufügen...</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> - <source>Translation file generation</source> - <translation>Übersetzungsdatei erzeugen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="836"/> - <source>The generation of the translation files (*.ts) was successful.</source> - <translation>Das Erzeugen der Übersetzungsdateien (*.ts) war erfolgreich.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> - <source>The generation of the translation files (*.ts) has failed.</source> - <translation>Das Erzeugen der Übersetzungsdateien (*.ts) ist fehlgeschlagen.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> - <source>Translation file release</source> - <translation>Übersetzungsdatei freigeben</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="975"/> - <source>The release of the translation files (*.qm) was successful.</source> - <translation>Die Freigabe der Übersetzungsdatei (*.qm) war erfolgreich.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> - <source>The release of the translation files (*.qm) has failed.</source> - <translation>Die Freigabe der Übersetzungsdatei (*.qm) ist fehlgeschlagen.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="277"/> - <source>Open in Qt-Linguist</source> - <translation>Mit Qt-Linguist öffnen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> - <source>Process Generation Error</source> - <translation>Fehler beim Prozessstart</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> - <source>Write temporary project file</source> - <translation>Temporäre Projektdatei schreiben</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="315"/> - <source>Open in Editor</source> - <translation>Mit Editor öffnen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="153"/> - <source>Generate translation</source> - <translation>Übersetzung erzeugen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="160"/> - <source>Generate translation (with obsolete)</source> - <translation>Übersetzung erzeugen (mit überholten Texten)</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="360"/> - <source>Generate all translations</source> - <translation>Alle Übersetzungen erzeugen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="366"/> - <source>Generate all translations (with obsolete)</source> - <translation>Alle Übersetzungen erzeugen (mit überholten Texten)</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="184"/> - <source>Release translation</source> - <translation>Übersetzung freigeben</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="372"/> - <source>Release all translations</source> - <translation>Alle Übersetzungen freigeben</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> - <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> - <translation><p>Die temporäre Projektdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> - <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> - <translation><p>lrelease konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="138"/> - <source>Preview translation</source> - <translation>Übersetzungsvorschau</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="289"/> - <source>Preview translations</source> - <translation>Übersetzungsvorschau</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> - <source>Delete translation files</source> - <translation>Übersetzungsdateien löschen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> - <source>Do you really want to delete these translation files from the project?</source> - <translation>Wollen Sie wirklich diese Übersetzungsdateien aus dem Projekt löschen?</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="710"/> - <source>No translation files (*.ts) selected.</source> - <translation>Keine Überstzungsdateien (*.ts) ausgewählt.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="926"/> - <source>Could not start {0}.<br>Ensure that it is in the search path.</source> - <translation>{0} konnte nicht gestartet werden.<br>Stellen sie sicher, dass es sich im Suchpfad befindet.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="349"/> - <source>Preview all translations</source> - <translation>Übersetzungsvorschau (alle)</translation> - </message> - <message> <location filename="Project/ProjectTranslationsBrowser.py" line="380"/> + <source>Add translation...</source> + <translation>Übersetzung hinzufügen...</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> + <source>Translation file generation</source> + <translation>Übersetzungsdatei erzeugen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="845"/> + <source>The generation of the translation files (*.ts) was successful.</source> + <translation>Das Erzeugen der Übersetzungsdateien (*.ts) war erfolgreich.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> + <source>The generation of the translation files (*.ts) has failed.</source> + <translation>Das Erzeugen der Übersetzungsdateien (*.ts) ist fehlgeschlagen.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> + <source>Translation file release</source> + <translation>Übersetzungsdatei freigeben</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="991"/> + <source>The release of the translation files (*.qm) was successful.</source> + <translation>Die Freigabe der Übersetzungsdatei (*.qm) war erfolgreich.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> + <source>The release of the translation files (*.qm) has failed.</source> + <translation>Die Freigabe der Übersetzungsdatei (*.qm) ist fehlgeschlagen.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="279"/> + <source>Open in Qt-Linguist</source> + <translation>Mit Qt-Linguist öffnen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> + <source>Process Generation Error</source> + <translation>Fehler beim Prozessstart</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> + <source>Write temporary project file</source> + <translation>Temporäre Projektdatei schreiben</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="317"/> + <source>Open in Editor</source> + <translation>Mit Editor öffnen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="155"/> + <source>Generate translation</source> + <translation>Übersetzung erzeugen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="162"/> + <source>Generate translation (with obsolete)</source> + <translation>Übersetzung erzeugen (mit überholten Texten)</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="362"/> + <source>Generate all translations</source> + <translation>Alle Übersetzungen erzeugen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="368"/> + <source>Generate all translations (with obsolete)</source> + <translation>Alle Übersetzungen erzeugen (mit überholten Texten)</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="186"/> + <source>Release translation</source> + <translation>Übersetzung freigeben</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="374"/> + <source>Release all translations</source> + <translation>Alle Übersetzungen freigeben</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> + <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> + <translation><p>Die temporäre Projektdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> + <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> + <translation><p>lrelease konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="140"/> + <source>Preview translation</source> + <translation>Übersetzungsvorschau</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="291"/> + <source>Preview translations</source> + <translation>Übersetzungsvorschau</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> + <source>Delete translation files</source> + <translation>Übersetzungsdateien löschen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> + <source>Do you really want to delete these translation files from the project?</source> + <translation>Wollen Sie wirklich diese Übersetzungsdateien aus dem Projekt löschen?</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="712"/> + <source>No translation files (*.ts) selected.</source> + <translation>Keine Überstzungsdateien (*.ts) ausgewählt.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="935"/> + <source>Could not start {0}.<br>Ensure that it is in the search path.</source> + <translation>{0} konnte nicht gestartet werden.<br>Stellen sie sicher, dass es sich im Suchpfad befindet.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="351"/> + <source>Preview all translations</source> + <translation>Übersetzungsvorschau (alle)</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="382"/> <source>Add translation files...</source> <translation>Übersetzungsdateien hinzufügen...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="386"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="388"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="353"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="355"/> <source>Extract messages</source> <translation>Texte extrahieren</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="383"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="385"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message>
--- a/i18n/eric5_en.ts Sun Nov 04 16:55:20 2012 +0100 +++ b/i18n/eric5_en.ts Sun Nov 04 17:39:08 2012 +0100 @@ -4351,7 +4351,7 @@ <context> <name>DebugUI</name> <message> - <location filename="Debugger/DebugUI.py" line="1587"/> + <location filename="Debugger/DebugUI.py" line="1598"/> <source>Run Script</source> <translation type="unfinished"></translation> </message> @@ -4371,7 +4371,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>Run Project</source> <translation type="unfinished"></translation> </message> @@ -4471,7 +4471,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1697"/> + <location filename="Debugger/DebugUI.py" line="1708"/> <source>Debug Script</source> <translation type="unfinished"></translation> </message> @@ -4491,7 +4491,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>Debug Project</source> <translation type="unfinished"></translation> </message> @@ -4661,7 +4661,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Evaluate</source> <translation type="unfinished"></translation> </message> @@ -4681,7 +4681,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Execute</source> <translation type="unfinished"></translation> </message> @@ -4881,122 +4881,127 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="986"/> + <location filename="Debugger/DebugUI.py" line="997"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="992"/> + <location filename="Debugger/DebugUI.py" line="1003"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1009"/> + <location filename="Debugger/DebugUI.py" line="1020"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1047"/> - <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="1058"/> + <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="1069"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1092"/> + <location filename="Debugger/DebugUI.py" line="1103"/> <source>The program being debugged has terminated unexpectedly.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source>Breakpoint Condition Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source>Watch Expression Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1219"/> + <location filename="Debugger/DebugUI.py" line="1230"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1223"/> + <location filename="Debugger/DebugUI.py" line="1234"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1227"/> + <location filename="Debugger/DebugUI.py" line="1238"/> <source>Watch expression already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1384"/> + <location filename="Debugger/DebugUI.py" line="1395"/> <source>Coverage of Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1374"/> + <location filename="Debugger/DebugUI.py" line="1385"/> <source>Coverage of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> + <location filename="Debugger/DebugUI.py" line="1502"/> + <source>Profile of Project</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Debugger/DebugUI.py" line="1491"/> - <source>Profile of Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Debugger/DebugUI.py" line="1480"/> <source>Profile of Script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Enter the statement to evaluate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Enter the statement to execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="963"/> + <location filename="Debugger/DebugUI.py" line="974"/> <source>The program has terminated with an exit status of {0}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="967"/> + <location filename="Debugger/DebugUI.py" line="978"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Debugger/DebugUI.py" line="970"/> + <source>Program terminated</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebugViewer</name> @@ -31256,242 +31261,242 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="Project/ProjectFormsBrowser.py" line="67"/> + <location filename="Project/ProjectFormsBrowser.py" line="68"/> <source>Forms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="69"/> + <location filename="Project/ProjectFormsBrowser.py" line="70"/> <source><b>Project Forms Browser</b><p>This allows to easily see all forms contained in the current project. Several actions can be executed via the context menu.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="82"/> - <source>Dialog</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="83"/> - <source>Widget</source> + <source>Dialog</source> <translation type="unfinished"></translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="84"/> - <source>Main Window</source> + <source>Widget</source> <translation type="unfinished"></translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="85"/> - <source>Dialog with Buttonbox (Bottom)</source> + <source>Main Window</source> <translation type="unfinished"></translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="86"/> - <source>Dialog with Buttonbox (Right)</source> + <source>Dialog with Buttonbox (Bottom)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="87"/> - <source>Dialog with Buttons (Bottom)</source> + <source>Dialog with Buttonbox (Right)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="88"/> - <source>Dialog with Buttons (Bottom-Center)</source> + <source>Dialog with Buttons (Bottom)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="89"/> + <source>Dialog with Buttons (Bottom-Center)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="90"/> <source>Dialog with Buttons (Right)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="122"/> + <location filename="Project/ProjectFormsBrowser.py" line="123"/> <source>Compile form</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="271"/> + <location filename="Project/ProjectFormsBrowser.py" line="272"/> <source>Compile all forms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="131"/> + <location filename="Project/ProjectFormsBrowser.py" line="132"/> <source>Generate Dialog Code...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="199"/> + <location filename="Project/ProjectFormsBrowser.py" line="200"/> <source>Open in Qt-Designer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="201"/> + <location filename="Project/ProjectFormsBrowser.py" line="202"/> <source>Open in Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="118"/> + <location filename="Project/ProjectFormsBrowser.py" line="119"/> <source>Preview form</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="204"/> + <location filename="Project/ProjectFormsBrowser.py" line="205"/> <source>Preview translations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="213"/> + <location filename="Project/ProjectFormsBrowser.py" line="214"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="141"/> + <location filename="Project/ProjectFormsBrowser.py" line="142"/> <source>Rename file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="240"/> + <location filename="Project/ProjectFormsBrowser.py" line="241"/> <source>Remove from project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="218"/> + <location filename="Project/ProjectFormsBrowser.py" line="219"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="247"/> + <location filename="Project/ProjectFormsBrowser.py" line="248"/> <source>New form...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="276"/> + <location filename="Project/ProjectFormsBrowser.py" line="277"/> <source>Add forms...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="278"/> + <location filename="Project/ProjectFormsBrowser.py" line="279"/> <source>Add forms directory...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="254"/> + <location filename="Project/ProjectFormsBrowser.py" line="255"/> <source>Copy Path to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="281"/> + <location filename="Project/ProjectFormsBrowser.py" line="282"/> <source>Expand all directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="283"/> + <location filename="Project/ProjectFormsBrowser.py" line="284"/> <source>Collapse all directories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="286"/> + <location filename="Project/ProjectFormsBrowser.py" line="287"/> <source>Configure...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="208"/> + <location filename="Project/ProjectFormsBrowser.py" line="209"/> <source>Compile forms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> <source>New Form</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="484"/> + <location filename="Project/ProjectFormsBrowser.py" line="485"/> <source>Select a form type:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="498"/> + <location filename="Project/ProjectFormsBrowser.py" line="499"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="517"/> + <location filename="Project/ProjectFormsBrowser.py" line="518"/> <source>The file already exists! Overwrite it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Delete forms</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Do you really want to delete these forms from the project?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>Form Compilation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="620"/> - <source>The compilation of the form file was successful.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="627"/> + <source>The compilation of the form file was successful.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="639"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>The compilation of the form file failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Compiling forms...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="825"/> + <location filename="Project/ProjectFormsBrowser.py" line="841"/> <source>Determining changed forms...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="852"/> + <location filename="Project/ProjectFormsBrowser.py" line="868"/> <source>Compiling changed forms...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="90"/> - <source>Wizard</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <source>Wizard</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="92"/> <source>Wizard Page</source> <translation type="unfinished"></translation> </message> @@ -32259,187 +32264,187 @@ <context> <name>ProjectTranslationsBrowser</name> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="65"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> <source>Translations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="69"/> <source><b>Project Translations Browser</b><p>This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="153"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="155"/> <source>Generate translation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="160"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="162"/> <source>Generate translation (with obsolete)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="360"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="362"/> <source>Generate all translations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="366"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="368"/> <source>Generate all translations (with obsolete)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="277"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="279"/> <source>Open in Qt-Linguist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="315"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="317"/> <source>Open in Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="184"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="186"/> <source>Release translation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="372"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="374"/> <source>Release all translations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="138"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="140"/> <source>Preview translation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="349"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="351"/> <source>Preview all translations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="353"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="355"/> <source>Extract messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="327"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="329"/> <source>Remove from project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="330"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="332"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="378"/> - <source>Add translation...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Project/ProjectTranslationsBrowser.py" line="380"/> + <source>Add translation...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="382"/> <source>Add translation files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="383"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="385"/> <source>Copy Path to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="386"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="388"/> <source>Configure...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="301"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="303"/> <source>Generate translations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="308"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="310"/> <source>Generate translations (with obsolete)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="320"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="322"/> <source>Release translations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="289"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="291"/> <source>Preview translations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Delete translation files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Do you really want to delete these translation files from the project?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source>Write temporary project file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="710"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="712"/> <source>No translation files (*.ts) selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>Translation file generation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="836"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="845"/> <source>The generation of the translation files (*.ts) was successful.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>The generation of the translation files (*.ts) has failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="926"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="935"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>Translation file release</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="975"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="991"/> <source>The release of the translation files (*.qm) was successful.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>The release of the translation files (*.qm) has failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_es.ts Sun Nov 04 16:55:20 2012 +0100 +++ b/i18n/eric5_es.ts Sun Nov 04 17:39:08 2012 +0100 @@ -4464,7 +4464,7 @@ <context> <name>DebugUI</name> <message> - <location filename="Debugger/DebugUI.py" line="1587"/> + <location filename="Debugger/DebugUI.py" line="1598"/> <source>Run Script</source> <translation>Ejecutar Script</translation> </message> @@ -4484,7 +4484,7 @@ <translation><b>Ejecutar Script</b><p>Establece los parámetros de la línea de comandos y ejecuta el script fuera del depurador. Si tiene cambios sin guardar, deben ser guardados primero.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>Run Project</source> <translation>Ejecutar Proyecto</translation> </message> @@ -4584,7 +4584,7 @@ <translation><b>Hacer Profiling del Proyecto</b><p>Establecer los argumentos de línea de comandos y hacer profiling del proyecto actual. Si hay archivos que tienen cambios sin guardar, se puede guardar primero.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1697"/> + <location filename="Debugger/DebugUI.py" line="1708"/> <source>Debug Script</source> <translation>Depurar Script</translation> </message> @@ -4604,7 +4604,7 @@ <translation><b>Depurar Script</b><p>Establecer los argumentos de línea de comandos y establecer la línea actual en la ventana actual de edición como la primera sentencia Python ejecutable. Si el archivo tiene cambios sin guardar, se puede guardar primero.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>Debug Project</source> <translation>Depurar proyecto</translation> </message> @@ -4774,7 +4774,7 @@ <translation><b>Detener</b><p>Detener la sesión de depuración en ejecución.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Evaluate</source> <translation>Evaluar</translation> </message> @@ -4789,7 +4789,7 @@ <translation>Evaluar en el contexto actual</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Execute</source> <translation>Ejecutar</translation> </message> @@ -4947,62 +4947,62 @@ <translation>Depurar</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="986"/> + <location filename="Debugger/DebugUI.py" line="997"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>El programa en depuración contiene un error de sintaxis no especificado.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1009"/> + <location filename="Debugger/DebugUI.py" line="1020"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Ha saltado una excepción que no ha sido manejada. Vea la ventana de shell para mas detalles.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1092"/> + <location filename="Debugger/DebugUI.py" line="1103"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>El programa en depuración ha terminado inesperadamente.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source>Breakpoint Condition Error</source> <translation>Error en la condición del Breakpoint</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1384"/> + <location filename="Debugger/DebugUI.py" line="1395"/> <source>Coverage of Project</source> <translation>Cobertura del Proyecto</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1374"/> + <location filename="Debugger/DebugUI.py" line="1385"/> <source>Coverage of Script</source> <translation>Cobertura del Script</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>There is no main script defined for the current project. Aborting</source> <translation>No hay script principal definido para el proyecto actual. Abortando</translation> </message> <message> + <location filename="Debugger/DebugUI.py" line="1502"/> + <source>Profile of Project</source> + <translation>Profiling del proyecto</translation> + </message> + <message> <location filename="Debugger/DebugUI.py" line="1491"/> - <source>Profile of Project</source> - <translation>Profiling del proyecto</translation> - </message> - <message> - <location filename="Debugger/DebugUI.py" line="1480"/> <source>Profile of Script</source> <translation>Profiling del script</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>No hay script principal definido para el proyecto actual. La depuración no es posible.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Enter the statement to evaluate</source> <translation>Introduzca la sentencia a evaluar</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Enter the statement to execute</source> <translation>Introduzca la sentencia a ejecutar</translation> </message> @@ -5012,12 +5012,12 @@ <translation><b>Evaluar</b><p>Evaluar una expresión en el contexto actual del programa en depuración. El resultado se muestra en la ventana de shell.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source>Watch Expression Error</source> <translation>Error en la Expresión a Examinar</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1227"/> + <location filename="Debugger/DebugUI.py" line="1238"/> <source>Watch expression already exists</source> <translation>La expresión a Examinar ya existe</translation> </message> @@ -5064,54 +5064,59 @@ <translation><p><b>{0}</b> ha terminado con un estado de salida {1}.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="992"/> + <location filename="Debugger/DebugUI.py" line="1003"/> <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>El archivo <b>{0}</b> contiene el error de sintaxis <b>{1}</b> en la línea<b>{2}</b>, carácter <b>{4}</b>.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1047"/> - <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>El programa en depuración ha lanzado la excepción <b>{0}</b><br>"<b>{1}</b>"<br>Archivo: <b>{2}</b>, Línea: <b>{3}</b></p><p>¿Interrumpir aquí?</p></translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="1058"/> + <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>El programa en depuración ha lanzado la excepción <b>{0}</b><br>"<b>{1}</b>"<br>Archivo: <b>{2}</b>, Línea: <b>{3}</b></p><p>¿Interrumpir aquí?</p></translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="1069"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>El programa en depuración ha lanzado la excepción <b>{0}</b><br>"<b>{1}</b>"</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>La condición del punto de ruptura <b>{0},{1}</b> tiene un error de sintaxis.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>La expresión a examinar <b>{0}</b> contiene un error de sintaxis.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1219"/> + <location filename="Debugger/DebugUI.py" line="1230"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>Una expresión a examinar '<b>{0}</b>' ya existe.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1223"/> + <location filename="Debugger/DebugUI.py" line="1234"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>Una expresión a examinar '<b>{0}</b>' para la variable <b>{1}</b> ya existe.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="963"/> + <location filename="Debugger/DebugUI.py" line="974"/> <source>The program has terminated with an exit status of {0}. </source> <translation>The programa ha terminado con un estado de salida {0}. </translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="967"/> + <location filename="Debugger/DebugUI.py" line="978"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation>{0} ha terminado con un estado de salida {1}. </translation> </message> + <message> + <location filename="Debugger/DebugUI.py" line="970"/> + <source>Program terminated</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebugViewer</name> @@ -31698,242 +31703,242 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="Project/ProjectFormsBrowser.py" line="67"/> + <location filename="Project/ProjectFormsBrowser.py" line="68"/> <source>Forms</source> <translation>Formularios</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="69"/> + <location filename="Project/ProjectFormsBrowser.py" line="70"/> <source><b>Project Forms Browser</b><p>This allows to easily see all forms contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Navegador de Formularios del Proyecto</b><p>Permite visualizar facilmente todos los formularios que contiene el proyecto actual. A través del menú de contexto se pueden ejecutar varias acciones.</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="82"/> - <source>Dialog</source> - <translation>Diálogo</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="83"/> - <source>Widget</source> - <translation>Widget</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="87"/> - <source>Dialog with Buttons (Bottom)</source> - <translation>Diálogo con botones (abajo)</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="89"/> - <source>Dialog with Buttons (Right)</source> - <translation>Diálogo con botones (Derecha)</translation> + <source>Dialog</source> + <translation>Diálogo</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="84"/> - <source>Main Window</source> - <translation>Ventana principal</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="85"/> - <source>Dialog with Buttonbox (Bottom)</source> - <translation>Diálogo con caja de botones (abajo)</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="86"/> - <source>Dialog with Buttonbox (Right)</source> - <translation>Diálogo con caja de botones (Derecha)</translation> + <source>Widget</source> + <translation>Widget</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="88"/> + <source>Dialog with Buttons (Bottom)</source> + <translation>Diálogo con botones (abajo)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="90"/> + <source>Dialog with Buttons (Right)</source> + <translation>Diálogo con botones (Derecha)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="85"/> + <source>Main Window</source> + <translation>Ventana principal</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="86"/> + <source>Dialog with Buttonbox (Bottom)</source> + <translation>Diálogo con caja de botones (abajo)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="87"/> + <source>Dialog with Buttonbox (Right)</source> + <translation>Diálogo con caja de botones (Derecha)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="89"/> <source>Dialog with Buttons (Bottom-Center)</source> <translation>Diálogo con botones (Abajo-Centro)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="122"/> + <location filename="Project/ProjectFormsBrowser.py" line="123"/> <source>Compile form</source> <translation>Compilar formulario</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="271"/> + <location filename="Project/ProjectFormsBrowser.py" line="272"/> <source>Compile all forms</source> <translation>Compilar todos los formularios</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="131"/> + <location filename="Project/ProjectFormsBrowser.py" line="132"/> <source>Generate Dialog Code...</source> <translation>Generar código de Diálogo...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="199"/> + <location filename="Project/ProjectFormsBrowser.py" line="200"/> <source>Open in Qt-Designer</source> <translation>Abrir en Qt-Designer</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="201"/> + <location filename="Project/ProjectFormsBrowser.py" line="202"/> <source>Open in Editor</source> <translation>Abrir en Editor</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="118"/> + <location filename="Project/ProjectFormsBrowser.py" line="119"/> <source>Preview form</source> <translation>Previsualizar form</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="204"/> + <location filename="Project/ProjectFormsBrowser.py" line="205"/> <source>Preview translations</source> <translation>Previsualizar traducciones</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="213"/> + <location filename="Project/ProjectFormsBrowser.py" line="214"/> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="141"/> + <location filename="Project/ProjectFormsBrowser.py" line="142"/> <source>Rename file</source> <translation>Renombrar archivo</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="240"/> + <location filename="Project/ProjectFormsBrowser.py" line="241"/> <source>Remove from project</source> <translation>Quitar del proyecto</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="218"/> + <location filename="Project/ProjectFormsBrowser.py" line="219"/> <source>Delete</source> <translation>Borrar</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="247"/> + <location filename="Project/ProjectFormsBrowser.py" line="248"/> <source>New form...</source> <translation>Formulario nuevo...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="276"/> + <location filename="Project/ProjectFormsBrowser.py" line="277"/> <source>Add forms...</source> <translation>Agregar formularios...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="278"/> + <location filename="Project/ProjectFormsBrowser.py" line="279"/> <source>Add forms directory...</source> <translation>Agregar directorio de formularios...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="281"/> + <location filename="Project/ProjectFormsBrowser.py" line="282"/> <source>Expand all directories</source> <translation>Expandir todos los directorios</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="283"/> + <location filename="Project/ProjectFormsBrowser.py" line="284"/> <source>Collapse all directories</source> <translation>Contraer todos los directorios</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="208"/> + <location filename="Project/ProjectFormsBrowser.py" line="209"/> <source>Compile forms</source> <translation>Compilar formularios</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> <source>New Form</source> <translation>Formulario nuevo</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="484"/> + <location filename="Project/ProjectFormsBrowser.py" line="485"/> <source>Select a form type:</source> <translation>Seleccione un tipo de formulario:</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="498"/> + <location filename="Project/ProjectFormsBrowser.py" line="499"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>Archivos de Interfaz de Usuario (*.ui);;Todos los Archivos(*)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="517"/> + <location filename="Project/ProjectFormsBrowser.py" line="518"/> <source>The file already exists! Overwrite it?</source> <translation>¿El archivo ya existe! ¿Sobreescribirlo?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Delete forms</source> <translation>Borrar formularios</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Do you really want to delete these forms from the project?</source> <translation>¿Realmente quiere borrar estos formularios del proyecto?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>Form Compilation</source> <translation>Compilación del Formulario</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="620"/> - <source>The compilation of the form file was successful.</source> - <translation>Se ha compilado satisfactoriamente el archivo de formulario.</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> - <source>The compilation of the form file failed.</source> - <translation>La compilación del archivo de formulario ha fallado.</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> - <source>Process Generation Error</source> - <translation>Error de Generación de Proceso</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> - <source>Compiling forms...</source> - <translation>Compilando formularios...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> - <source>Abort</source> - <translation>Abortar</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="825"/> - <source>Determining changed forms...</source> - <translation>Determinando que formularios han cambiado...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="852"/> - <source>Compiling changed forms...</source> - <translation>Compilando formularios que han cambiado...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="286"/> - <source>Configure...</source> - <translation>Configurar...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="254"/> - <source>Copy Path to Clipboard</source> - <translation>Copiar Ruta al Portapapeles</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> - <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> - <translation><p>El nuevo archivo de formulario <b>{0}</b> no ha podido ser creado.<br>Problema: {1}</p></translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="627"/> + <source>The compilation of the form file was successful.</source> + <translation>Se ha compilado satisfactoriamente el archivo de formulario.</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> + <source>The compilation of the form file failed.</source> + <translation>La compilación del archivo de formulario ha fallado.</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> + <source>Process Generation Error</source> + <translation>Error de Generación de Proceso</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> + <source>Compiling forms...</source> + <translation>Compilando formularios...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> + <source>Abort</source> + <translation>Abortar</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="841"/> + <source>Determining changed forms...</source> + <translation>Determinando que formularios han cambiado...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="868"/> + <source>Compiling changed forms...</source> + <translation>Compilando formularios que han cambiado...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="287"/> + <source>Configure...</source> + <translation>Configurar...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="255"/> + <source>Copy Path to Clipboard</source> + <translation>Copiar Ruta al Portapapeles</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> + <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> + <translation><p>El nuevo archivo de formulario <b>{0}</b> no ha podido ser creado.<br>Problema: {1}</p></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="639"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation><p>La compilación del archivo de formulario ha fallado.</p><p>Causa: {0}</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>No se ha podido ejecutar {0}.<br>Verifique que está en la ruta de búsqueda (search path).</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="90"/> - <source>Wizard</source> - <translation>Asistente</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <source>Wizard</source> + <translation>Asistente</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="92"/> <source>Wizard Page</source> <translation>Página de Asistente</translation> </message> @@ -32701,187 +32706,187 @@ <context> <name>ProjectTranslationsBrowser</name> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="65"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> <source>Translations</source> <translation>Traducciones</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="69"/> <source><b>Project Translations Browser</b><p>This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Navegador de Traducciones del Proyecto</b><p>Permite visualizar facilmente todos los traducciones que contiene el proyecto actual. A través del menú de contexto se pueden ejecutar varias acciones.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="153"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="155"/> <source>Generate translation</source> <translation>Generar traducción</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="160"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="162"/> <source>Generate translation (with obsolete)</source> <translation>Generar traducción (con obsoleto)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="360"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="362"/> <source>Generate all translations</source> <translation>Generar todas las traducciones</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="366"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="368"/> <source>Generate all translations (with obsolete)</source> <translation>Generar todas las traducciones (con obsoleto)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="277"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="279"/> <source>Open in Qt-Linguist</source> <translation>Abrir en Qt-Linguist</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="315"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="317"/> <source>Open in Editor</source> <translation>Abrir en Editor</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="184"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="186"/> <source>Release translation</source> <translation>Crear versión release de la traducción</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="372"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="374"/> <source>Release all translations</source> <translation>Crear versión release de todas las traducciones</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="138"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="140"/> <source>Preview translation</source> <translation>Previsualizar traducción</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="349"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="351"/> <source>Preview all translations</source> <translation>Previsualizar todas las traducciones</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="327"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="329"/> <source>Remove from project</source> <translation>Quitar del proyecto</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="330"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="332"/> <source>Delete</source> <translation>Borrar</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="378"/> - <source>Add translation...</source> - <translation>Añadir traducción...</translation> - </message> - <message> <location filename="Project/ProjectTranslationsBrowser.py" line="380"/> + <source>Add translation...</source> + <translation>Añadir traducción...</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="382"/> <source>Add translation files...</source> <translation>Añadir archivos de traducción...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="301"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="303"/> <source>Generate translations</source> <translation>Generar traducciones</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="308"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="310"/> <source>Generate translations (with obsolete)</source> <translation>Generar traduccines (con obsoleto)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="320"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="322"/> <source>Release translations</source> <translation>Crear versión release de las traducciones</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="289"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="291"/> <source>Preview translations</source> <translation>Previsualizar traducciones</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Delete translation files</source> <translation>Borrar archivos de traducción</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Do you really want to delete these translation files from the project?</source> <translation>¿Realmente quiere borrar estas archivos de traducción del proyecto?</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source>Write temporary project file</source> <translation>Guardar archivo de proyecto temporal</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="710"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="712"/> <source>No translation files (*.ts) selected.</source> <translation>No se han seleccionado archivos de traducción (*.ts).</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>Translation file generation</source> <translation>Generación de archivo de traducción</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="836"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="845"/> <source>The generation of the translation files (*.ts) was successful.</source> <translation>La generación de archivos de traducción (*.ts) ha sido satisfactoria.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>The generation of the translation files (*.ts) has failed.</source> <translation>La generación de archivos de traducción (*.ts) ha fallado.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source>Process Generation Error</source> <translation>Error de Generación de Proceso</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>Translation file release</source> <translation>Crear versión release del archivo de traducción</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="975"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="991"/> <source>The release of the translation files (*.qm) was successful.</source> <translation>La versión release de los archivos de traducción (*.qm) ha sido satisfactoria.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>The release of the translation files (*.qm) has failed.</source> <translation>La versión release de los archivos de traducción (*.qm) ha fallado.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="386"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="388"/> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="353"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="355"/> <source>Extract messages</source> <translation>Extraer mensajes</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="383"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="385"/> <source>Copy Path to Clipboard</source> <translation>Copiar Ruta al Portapapeles</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo temporal de proyecto <b>{0}</b> no ha podido guardarse.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="926"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="935"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>No se ha podido ejecutar {0}.<br>Verifique que está en la ruta de búsqueda (search path).</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar lrelease.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message>
--- a/i18n/eric5_fr.ts Sun Nov 04 16:55:20 2012 +0100 +++ b/i18n/eric5_fr.ts Sun Nov 04 17:39:08 2012 +0100 @@ -4707,7 +4707,7 @@ <context> <name>DebugUI</name> <message> - <location filename="Debugger/DebugUI.py" line="1587"/> + <location filename="Debugger/DebugUI.py" line="1598"/> <source>Run Script</source> <translation>Lancer le script</translation> </message> @@ -4727,7 +4727,7 @@ <translation><b>Lancer le script</b><p>Entrer les arguments de la ligne de commande et lancer le script sans le débogueur. Si le script a des modifications, elles doivent d'abord être enregistrées.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>Run Project</source> <translation>Lancer le projet</translation> </message> @@ -4867,7 +4867,7 @@ <translation type="obsolete"><b>Lancement du projet avec Cyclops</b><p>Entrer les arguments de la ligne de commande et lancer le projet avec Cyclops. Si des fichiers ont été modifiés, ils doivent d'abord être sauvés.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1697"/> + <location filename="Debugger/DebugUI.py" line="1708"/> <source>Debug Script</source> <translation>Déboguer le script</translation> </message> @@ -4887,7 +4887,7 @@ <translation><b>Deboguer le script</b><p>Entrer les arguments de la ligne de commande et donner la ligne qui correspond à la première instruction Python. Si le fichier a été modifié, il doit d'abord être sauvé.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>Debug Project</source> <translation>Déboguer le projet</translation> </message> @@ -5022,7 +5022,7 @@ <translation><b>Arrêt</b><p>Arrête le débogage courant.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Evaluate</source> <translation>Evaluer</translation> </message> @@ -5037,7 +5037,7 @@ <translation>Evalue l'expression dans le contexte en cours</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Execute</source> <translation>Exécuter</translation> </message> @@ -5137,42 +5137,42 @@ <translation>&Point d'arrêts</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="986"/> + <location filename="Debugger/DebugUI.py" line="997"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Le programme débogué contient une erreur de syntaxe non identifiée.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1009"/> + <location filename="Debugger/DebugUI.py" line="1020"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Une erreur imprévue est apparue. Regardez les détails dans la fenêtre shell.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1092"/> + <location filename="Debugger/DebugUI.py" line="1103"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Le programme débogué s'est terminé de façon prématurée.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1384"/> + <location filename="Debugger/DebugUI.py" line="1395"/> <source>Coverage of Project</source> <translation>Coverage du projet</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1374"/> + <location filename="Debugger/DebugUI.py" line="1385"/> <source>Coverage of Script</source> <translation>Coverage du Script</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation> </message> <message> + <location filename="Debugger/DebugUI.py" line="1502"/> + <source>Profile of Project</source> + <translation>Profil du projet</translation> + </message> + <message> <location filename="Debugger/DebugUI.py" line="1491"/> - <source>Profile of Project</source> - <translation>Profil du projet</translation> - </message> - <message> - <location filename="Debugger/DebugUI.py" line="1480"/> <source>Profile of Script</source> <translation>Profil du Script</translation> </message> @@ -5192,17 +5192,17 @@ <translation type="obsolete">Erreur Cyclops</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>Il n'y a pas de script principal défini dans le projet en cours. Débogage impossible.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Enter the statement to evaluate</source> <translation>Entrer une instruction à évaluer</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Enter the statement to execute</source> <translation>Entrer une instruction à exécuter</translation> </message> @@ -5267,7 +5267,7 @@ <translation type="obsolete"><p>Le programme s'est terminé avec le code de sortie %1.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source>Breakpoint Condition Error</source> <translation>Erreur de condition pour le point d'arrêt</translation> </message> @@ -5345,7 +5345,7 @@ <translation><b>Evaluer</b><p>Evalue une expression dans le contexte courant du programme débogué. Le résultat est affiché dans la fenêtre Shell</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source>Watch Expression Error</source> <translation>Erreur dans l'expression</translation> </message> @@ -5365,7 +5365,7 @@ <translation type="obsolete"><p>L'expression '<b>%1</b>' pour la variable <b>%2</b> existe déjà.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1227"/> + <location filename="Debugger/DebugUI.py" line="1238"/> <source>Watch expression already exists</source> <translation>L'expression existe déjà</translation> </message> @@ -5412,52 +5412,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="992"/> + <location filename="Debugger/DebugUI.py" line="1003"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1047"/> - <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="1058"/> + <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="1069"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1219"/> + <location filename="Debugger/DebugUI.py" line="1230"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1223"/> + <location filename="Debugger/DebugUI.py" line="1234"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="963"/> + <location filename="Debugger/DebugUI.py" line="974"/> <source>The program has terminated with an exit status of {0}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="967"/> + <location filename="Debugger/DebugUI.py" line="978"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Debugger/DebugUI.py" line="970"/> + <source>Program terminated</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebugViewer</name> @@ -34373,27 +34378,27 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="Project/ProjectFormsBrowser.py" line="67"/> + <location filename="Project/ProjectFormsBrowser.py" line="68"/> <source>Forms</source> <translation>Feuilles du projet</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="69"/> + <location filename="Project/ProjectFormsBrowser.py" line="70"/> <source><b>Project Forms Browser</b><p>This allows to easily see all forms contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Navigateur de feuilles du projet</b><p>Permet de voir rapidement toutes les feuilles du projet. Plusieurs actions peuvent être effectuées via le menu contextuel.</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="82"/> - <source>Dialog</source> - <translation>Boite de Dialogue</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="90"/> - <source>Wizard</source> - <translation type="unfinished">Assistant</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="83"/> + <source>Dialog</source> + <translation>Boite de Dialogue</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <source>Wizard</source> + <translation type="unfinished">Assistant</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="84"/> <source>Widget</source> <translation>Widget</translation> </message> @@ -34403,12 +34408,12 @@ <translation type="obsolete">Configuration</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="87"/> + <location filename="Project/ProjectFormsBrowser.py" line="88"/> <source>Dialog with Buttons (Bottom)</source> <translation>Boite de dialogue avec Boutons (en bas)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="89"/> + <location filename="Project/ProjectFormsBrowser.py" line="90"/> <source>Dialog with Buttons (Right)</source> <translation>Boite de dialogue avec Boutons (à droite)</translation> </message> @@ -34418,12 +34423,12 @@ <translation type="obsolete">Tab Dialog</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="122"/> + <location filename="Project/ProjectFormsBrowser.py" line="123"/> <source>Compile form</source> <translation>Compiler la feuille</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="271"/> + <location filename="Project/ProjectFormsBrowser.py" line="272"/> <source>Compile all forms</source> <translation>Compiler toutes les feuilles</translation> </message> @@ -34433,62 +34438,62 @@ <translation type="obsolete">Générer un sous-classe</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="199"/> + <location filename="Project/ProjectFormsBrowser.py" line="200"/> <source>Open in Qt-Designer</source> <translation>Ouvrir dans Qt-Designer</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="240"/> + <location filename="Project/ProjectFormsBrowser.py" line="241"/> <source>Remove from project</source> <translation>Supprimer du projet</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="218"/> + <location filename="Project/ProjectFormsBrowser.py" line="219"/> <source>Delete</source> <translation>Supprimer</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="247"/> + <location filename="Project/ProjectFormsBrowser.py" line="248"/> <source>New form...</source> <translation>Nouvelle feuille...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="278"/> + <location filename="Project/ProjectFormsBrowser.py" line="279"/> <source>Add forms directory...</source> <translation>Ajouter un répertoire de feuilles...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="281"/> + <location filename="Project/ProjectFormsBrowser.py" line="282"/> <source>Expand all directories</source> <translation>Déployer tous les répertoires</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="283"/> + <location filename="Project/ProjectFormsBrowser.py" line="284"/> <source>Collapse all directories</source> <translation>Contracter tous les répertoires</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> <source>New Form</source> <translation>Nouvelle feuille</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="484"/> + <location filename="Project/ProjectFormsBrowser.py" line="485"/> <source>Select a form type:</source> <translation>Sélectionner un type de feuille:</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>Form Compilation</source> <translation>Compilation</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="620"/> + <location filename="Project/ProjectFormsBrowser.py" line="627"/> <source>The compilation of the form file was successful.</source> <translation>La compilation de la feuille a réussi.</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>The compilation of the form file failed.</source> <translation>La compilation de la feuille a échoué.</translation> </message> @@ -34508,42 +34513,42 @@ <translation type="obsolete">Entrer le nom de la sous-classe:</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Compiling forms...</source> <translation>Compilation des feuilles...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Abort</source> <translation>Abandon</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="201"/> + <location filename="Project/ProjectFormsBrowser.py" line="202"/> <source>Open in Editor</source> <translation>Ouvrir dans l'éditeur</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="141"/> + <location filename="Project/ProjectFormsBrowser.py" line="142"/> <source>Rename file</source> <translation>Renommer le fichier</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="208"/> + <location filename="Project/ProjectFormsBrowser.py" line="209"/> <source>Compile forms</source> <translation>Compiler les feuilles</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Delete forms</source> <translation>Supprimer les feuilles</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Do you really want to delete these forms from the project?</source> <translation>Voulez-vous vraiment supprimer ces feuilles du projet?</translation> </message> @@ -34563,12 +34568,12 @@ <translation type="obsolete"><p>La feuille <b>%1</b> ne contient pas de définition de classe.</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="118"/> + <location filename="Project/ProjectFormsBrowser.py" line="119"/> <source>Preview form</source> <translation>Apercu feuille</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="204"/> + <location filename="Project/ProjectFormsBrowser.py" line="205"/> <source>Preview translations</source> <translation>Apercu des traductions</translation> </message> @@ -34583,17 +34588,17 @@ <translation type="obsolete">Impossible de démarrer %1.<br>Assurez-vous qu'il est bien dans le chemin de recherche.</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="276"/> + <location filename="Project/ProjectFormsBrowser.py" line="277"/> <source>Add forms...</source> <translation>Ajouter des feuilles...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="84"/> + <location filename="Project/ProjectFormsBrowser.py" line="85"/> <source>Main Window</source> <translation>Fenêtre principale</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="88"/> + <location filename="Project/ProjectFormsBrowser.py" line="89"/> <source>Dialog with Buttons (Bottom-Center)</source> <translation>Boite de dialogue avec boutons (Bas-Centre)</translation> </message> @@ -34603,72 +34608,72 @@ <translation type="obsolete"><p>La génération de sous-classes n'est pas supportée par Qt4.</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="825"/> + <location filename="Project/ProjectFormsBrowser.py" line="841"/> <source>Determining changed forms...</source> <translation>Détermination des feuilles modifiées...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="852"/> + <location filename="Project/ProjectFormsBrowser.py" line="868"/> <source>Compiling changed forms...</source> <translation>Compilation des feuilles modifiées...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="517"/> + <location filename="Project/ProjectFormsBrowser.py" line="518"/> <source>The file already exists! Overwrite it?</source> <translation>Le fichier existe déjà! Ecraser ?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="85"/> - <source>Dialog with Buttonbox (Bottom)</source> - <translation>Boite de dialogue avec Boutons (en bas)</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="86"/> + <source>Dialog with Buttonbox (Bottom)</source> + <translation>Boite de dialogue avec Boutons (en bas)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="87"/> <source>Dialog with Buttonbox (Right)</source> <translation>Boite de dialogue avec Boutons (à droite)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="131"/> + <location filename="Project/ProjectFormsBrowser.py" line="132"/> <source>Generate Dialog Code...</source> <translation>Générateur de code...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="213"/> + <location filename="Project/ProjectFormsBrowser.py" line="214"/> <source>Open</source> <translation>Ouvrir</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="498"/> + <location filename="Project/ProjectFormsBrowser.py" line="499"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>Fichiers Qt User-Interface (*.ui);;Tous fichiers(*)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="286"/> + <location filename="Project/ProjectFormsBrowser.py" line="287"/> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="254"/> + <location filename="Project/ProjectFormsBrowser.py" line="255"/> <source>Copy Path to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="627"/> + <location filename="Project/ProjectFormsBrowser.py" line="639"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <location filename="Project/ProjectFormsBrowser.py" line="92"/> <source>Wizard Page</source> <translation type="unfinished"></translation> </message> @@ -35511,122 +35516,122 @@ <context> <name>ProjectTranslationsBrowser</name> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="65"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> <source>Translations</source> <translation>Traductions</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="69"/> <source><b>Project Translations Browser</b><p>This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Navigateur de traductions</b><p>Permet de voir facilement toutes les traductions présentes dans le projet. Plusieurs actions peuvent être effectuées via le menu contextuel.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="301"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="303"/> <source>Generate translations</source> <translation>Générer des traductions</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="308"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="310"/> <source>Generate translations (with obsolete)</source> <translation>Générer des traductions (avec la version obsolete)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="277"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="279"/> <source>Open in Qt-Linguist</source> <translation>Ouvrir avec Qt-Linguist</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="320"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="322"/> <source>Release translations</source> <translation>Compiler les traductions</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="327"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="329"/> <source>Remove from project</source> <translation>Supprimer du projet</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="330"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="332"/> <source>Delete</source> <translation>Supprimer</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="378"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="380"/> <source>Add translation...</source> <translation>Ajouter une traduction...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source>Write temporary project file</source> <translation>Ecrire un fichier projet temporaire</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>Translation file generation</source> <translation>Génération d'un fichier de traduction</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="836"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="845"/> <source>The generation of the translation files (*.ts) was successful.</source> <translation>La génération des fichiers de traduction (*.ts) a réussi.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>The generation of the translation files (*.ts) has failed.</source> <translation>La génération des fichiers de traduction (*.ts) a échoué.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>Translation file release</source> <translation>Validation du fichier de traduction</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="975"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="991"/> <source>The release of the translation files (*.qm) was successful.</source> <translation>La validation des fichiers de traduction (*.qm) a réussi.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>The release of the translation files (*.qm) has failed.</source> <translation>La validation des fichiers de traduction (*.qm) a échoué.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="315"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="317"/> <source>Open in Editor</source> <translation>Ouvrir dans l'éditeur</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="153"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="155"/> <source>Generate translation</source> <translation>Générer un fichier de traduction</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="160"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="162"/> <source>Generate translation (with obsolete)</source> <translation>Générer un fichier de traduction (à partir d'un obsolète)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="360"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="362"/> <source>Generate all translations</source> <translation>Générer tous les fichiers de traduction</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="366"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="368"/> <source>Generate all translations (with obsolete)</source> <translation>Générer les traductions (à partir des fichiers obsoletes)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="184"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="186"/> <source>Release translation</source> <translation>Compiler la traduction</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="372"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="374"/> <source>Release all translations</source> <translation>Compiler toutes les traductions</translation> </message> @@ -35641,27 +35646,27 @@ <translation type="obsolete"><p>Impossible de démarrer la version.<br>Assurez-vous qu'il est bien disponible <b>%1</b>.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="138"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="140"/> <source>Preview translation</source> <translation>Apercu de la traduction</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="289"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="291"/> <source>Preview translations</source> <translation>Apercu des traductions</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Delete translation files</source> <translation>Supprimer les fichiers de traduction</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Do you really want to delete these translation files from the project?</source> <translation>Voulez-vous réellement supprimer ces traductions du projet?</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="710"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="712"/> <source>No translation files (*.ts) selected.</source> <translation>Aucun fichier de traduction (*.ts) sélectionné.</translation> </message> @@ -35671,42 +35676,42 @@ <translation type="obsolete">Impossible de démarrer %1.<br>Assurez-vous qu'il est bien dans le chemin de recherche.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="349"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="351"/> <source>Preview all translations</source> <translation>Visualiser toutes les traductions</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="380"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="382"/> <source>Add translation files...</source> <translation>Ajouter des fichiers de traduction...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="386"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="388"/> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="353"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="355"/> <source>Extract messages</source> <translation>Extraction des messages</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="383"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="385"/> <source>Copy Path to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="926"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="935"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_it.ts Sun Nov 04 16:55:20 2012 +0100 +++ b/i18n/eric5_it.ts Sun Nov 04 17:39:08 2012 +0100 @@ -4534,7 +4534,7 @@ <context> <name>DebugUI</name> <message> - <location filename="Debugger/DebugUI.py" line="1587"/> + <location filename="Debugger/DebugUI.py" line="1598"/> <source>Run Script</source> <translation>Esegui Script</translation> </message> @@ -4554,7 +4554,7 @@ <translation><b>Esegui Script</b><p>Imposta gli argomenti della linea di comando ed esegue lo script al di fuori del debugger. Se il file non è stato salvato può essere salvato prima.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>Run Project</source> <translation>Esegui Progetto</translation> </message> @@ -4654,7 +4654,7 @@ <translation><b>Profila Progetto</b><p>Imposta gli argomenti della linea di comando e profila il progetto. Se file del progetto corrente non sono stati salvati, è possibile salvarli prima.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1697"/> + <location filename="Debugger/DebugUI.py" line="1708"/> <source>Debug Script</source> <translation>Debug dello script</translation> </message> @@ -4674,7 +4674,7 @@ <translation><b>Debug dello Script</b><p>Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python della finestra dell'editor. Se il file ha modifiche non salvate è possibile salvarle prima.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>Debug Project</source> <translation>Debug del Progetto</translation> </message> @@ -4809,7 +4809,7 @@ <translation><b>Stop</b><p>Ferma la sessione di debug.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Evaluate</source> <translation>Valuta</translation> </message> @@ -4824,7 +4824,7 @@ <translation>Valuta nel contesto corrente</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Execute</source> <translation>Esegui</translation> </message> @@ -4924,57 +4924,57 @@ <translation>&Breakpoints</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="986"/> + <location filename="Debugger/DebugUI.py" line="997"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Il programma che viene debuggato contiene un errore di sintassi non specificato.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1009"/> + <location filename="Debugger/DebugUI.py" line="1020"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Un'eccezione non gestita è occorso. Guarda la finestra di shell per dettagli.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1092"/> + <location filename="Debugger/DebugUI.py" line="1103"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Il programma debuggato è terminato in maniera inaspettata.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1384"/> + <location filename="Debugger/DebugUI.py" line="1395"/> <source>Coverage of Project</source> <translation>Analisi del Progetto</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1374"/> + <location filename="Debugger/DebugUI.py" line="1385"/> <source>Coverage of Script</source> <translation>Analisi delle Script</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Non c'è uno script principale definito per il progetto. Esco</translation> </message> <message> + <location filename="Debugger/DebugUI.py" line="1502"/> + <source>Profile of Project</source> + <translation>Profilazione del progetto</translation> + </message> + <message> <location filename="Debugger/DebugUI.py" line="1491"/> - <source>Profile of Project</source> - <translation>Profilazione del progetto</translation> - </message> - <message> - <location filename="Debugger/DebugUI.py" line="1480"/> <source>Profile of Script</source> <translation>Profilazione dello script</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>Non c'è uno script principale per il progetto. Non è possibile il debug.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Enter the statement to evaluate</source> <translation>Inserisci l'istruzione da valutare</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Enter the statement to execute</source> <translation>Inserisci l'istruzione da eseguire</translation> </message> @@ -5019,7 +5019,7 @@ <translation><b>Filtro tipo variabili</b><p>Configura il filtro per i tipi variabile. Solo i tipi di variabile che non sono selezionati sono mostrati nella finestra delle variabili globali o locali durante una sessione di debug. </p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source>Breakpoint Condition Error</source> <translation>Errore condizione di interruzione</translation> </message> @@ -5082,12 +5082,12 @@ <translation><b>Valuta</b><p>Valuta un'espressione nel contesto corrente del programma debuggato. Il risultato è mostrato nella shell.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source>Watch Expression Error</source> <translation>Errore espressione di watch</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1227"/> + <location filename="Debugger/DebugUI.py" line="1238"/> <source>Watch expression already exists</source> <translation>L'espressione di controllo esiste già</translation> </message> @@ -5134,52 +5134,57 @@ <translation><p><b>{0}</b> è terminato con lo stato di uscita {1}.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="992"/> + <location filename="Debugger/DebugUI.py" line="1003"/> <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>Il file <b>{0}</b> contiene l'errore di sintassi <b>{1}</b> alla linea <b>{2}</b>, carattere <b>{3}</b>.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1047"/> - <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>Il programma in debug ha sollevato un'eccezione <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Linea: <b>{3}</b></p><p>Interrompere qui ?</p></translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="1058"/> + <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>Il programma in debug ha sollevato un'eccezione <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Linea: <b>{3}</b></p><p>Interrompere qui ?</p></translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="1069"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>Il programma debuggato ha sollevato un'eccezione <b>{0}</b><br>"<b>{1}</b>"</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>La condizione del breakpoint <b>{0}, {1}</b> contiene un errore di sintassi.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>L'espressione <b>{0}</b> contiene un errore di sintassi.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1219"/> + <location filename="Debugger/DebugUI.py" line="1230"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>L'espressione '<b>{0}</b>' esiste già.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1223"/> + <location filename="Debugger/DebugUI.py" line="1234"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>L'espressione '<b>{0}</b>' per la variabile <b>{1}</b> esiste già.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="963"/> + <location filename="Debugger/DebugUI.py" line="974"/> <source>The program has terminated with an exit status of {0}. </source> <translation>Il programma è terminato con uno stato di uscita di {0}.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="967"/> + <location filename="Debugger/DebugUI.py" line="978"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation>"{0}" è terminato con lo stato di uscita {1}.</translation> </message> + <message> + <location filename="Debugger/DebugUI.py" line="970"/> + <source>Program terminated</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebugViewer</name> @@ -32170,242 +32175,242 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="Project/ProjectFormsBrowser.py" line="67"/> + <location filename="Project/ProjectFormsBrowser.py" line="68"/> <source>Forms</source> <translation>Forms</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="69"/> + <location filename="Project/ProjectFormsBrowser.py" line="70"/> <source><b>Project Forms Browser</b><p>This allows to easily see all forms contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Browser per le form del progetto</b><p>Consente di vedere facilmente tutte le form contenute nel progetto corrente. Diverse azioni possono essere eseguite con il menù contestuale.</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="82"/> - <source>Dialog</source> - <translation>Dialoghi</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="83"/> + <source>Dialog</source> + <translation>Dialoghi</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="84"/> <source>Widget</source> <translation>Widget</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="87"/> + <location filename="Project/ProjectFormsBrowser.py" line="88"/> <source>Dialog with Buttons (Bottom)</source> <translation>Dialogo con pulsanti (in basso)</translation> </message> <message> + <location filename="Project/ProjectFormsBrowser.py" line="90"/> + <source>Dialog with Buttons (Right)</source> + <translation>Dialogo con pulsanti (a destra)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="123"/> + <source>Compile form</source> + <translation>Compila la form</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="272"/> + <source>Compile all forms</source> + <translation>Compila tutte le form</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="200"/> + <source>Open in Qt-Designer</source> + <translation>Apri con Qt-Designer</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="241"/> + <source>Remove from project</source> + <translation>Rimuovi dal progetto</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="219"/> + <source>Delete</source> + <translation>Cancella</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="248"/> + <source>New form...</source> + <translation>Nuova form...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="279"/> + <source>Add forms directory...</source> + <translation>Affiungi directory delle forms...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="282"/> + <source>Expand all directories</source> + <translation>Espandi tutte le directory</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="284"/> + <source>Collapse all directories</source> + <translation>Riduci tutte le directory</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> + <source>New Form</source> + <translation>Nuova form</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="485"/> + <source>Select a form type:</source> + <translation>Seleziona tipo form:</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> + <source>Form Compilation</source> + <translation>Compilazione form</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="627"/> + <source>The compilation of the form file was successful.</source> + <translation>La compilazione della form è avvenuta con successo.</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> + <source>The compilation of the form file failed.</source> + <translation>La compilazione della form è fallita.</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> + <source>Process Generation Error</source> + <translation>Errore Generazione Processo</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> + <source>Compiling forms...</source> + <translation>Compilazione form in corso...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> + <source>Abort</source> + <translation>Termina</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="202"/> + <source>Open in Editor</source> + <translation>Apri con l'editor</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="142"/> + <source>Rename file</source> + <translation>Rinomina file</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="209"/> + <source>Compile forms</source> + <translation>Compila le form</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> + <source>Delete forms</source> + <translation>Cancella le form</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> + <source>Do you really want to delete these forms from the project?</source> + <translation>Vuoi veramente cancellare queste form dal progetto ?</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="119"/> + <source>Preview form</source> + <translation>Anteprima form</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="205"/> + <source>Preview translations</source> + <translation>Anteprima traduzioni</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="277"/> + <source>Add forms...</source> + <translation>Aggiungi form...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="85"/> + <source>Main Window</source> + <translation>Main Window</translation> + </message> + <message> <location filename="Project/ProjectFormsBrowser.py" line="89"/> - <source>Dialog with Buttons (Right)</source> - <translation>Dialogo con pulsanti (a destra)</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="122"/> - <source>Compile form</source> - <translation>Compila la form</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="271"/> - <source>Compile all forms</source> - <translation>Compila tutte le form</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="199"/> - <source>Open in Qt-Designer</source> - <translation>Apri con Qt-Designer</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="240"/> - <source>Remove from project</source> - <translation>Rimuovi dal progetto</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="218"/> - <source>Delete</source> - <translation>Cancella</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="247"/> - <source>New form...</source> - <translation>Nuova form...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="278"/> - <source>Add forms directory...</source> - <translation>Affiungi directory delle forms...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="281"/> - <source>Expand all directories</source> - <translation>Espandi tutte le directory</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="283"/> - <source>Collapse all directories</source> - <translation>Riduci tutte le directory</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> - <source>New Form</source> - <translation>Nuova form</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="484"/> - <source>Select a form type:</source> - <translation>Seleziona tipo form:</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> - <source>Form Compilation</source> - <translation>Compilazione form</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="620"/> - <source>The compilation of the form file was successful.</source> - <translation>La compilazione della form è avvenuta con successo.</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> - <source>The compilation of the form file failed.</source> - <translation>La compilazione della form è fallita.</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> - <source>Process Generation Error</source> - <translation>Errore Generazione Processo</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> - <source>Compiling forms...</source> - <translation>Compilazione form in corso...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> - <source>Abort</source> - <translation>Termina</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="201"/> - <source>Open in Editor</source> - <translation>Apri con l'editor</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="141"/> - <source>Rename file</source> - <translation>Rinomina file</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="208"/> - <source>Compile forms</source> - <translation>Compila le form</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> - <source>Delete forms</source> - <translation>Cancella le form</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> - <source>Do you really want to delete these forms from the project?</source> - <translation>Vuoi veramente cancellare queste form dal progetto ?</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="118"/> - <source>Preview form</source> - <translation>Anteprima form</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="204"/> - <source>Preview translations</source> - <translation>Anteprima traduzioni</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="276"/> - <source>Add forms...</source> - <translation>Aggiungi form...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="84"/> - <source>Main Window</source> - <translation>Main Window</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="88"/> <source>Dialog with Buttons (Bottom-Center)</source> <translation>Dialogo con pulsanti (centrati in basso)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="825"/> + <location filename="Project/ProjectFormsBrowser.py" line="841"/> <source>Determining changed forms...</source> <translation>Determina form modificate...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="852"/> + <location filename="Project/ProjectFormsBrowser.py" line="868"/> <source>Compiling changed forms...</source> <translation>Compila le form modificate...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="517"/> + <location filename="Project/ProjectFormsBrowser.py" line="518"/> <source>The file already exists! Overwrite it?</source> <translation>Il file esiste già! Sovrascriverlo ?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="85"/> - <source>Dialog with Buttonbox (Bottom)</source> - <translation>Dialogo con un Buttonbox (in basso)</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="86"/> + <source>Dialog with Buttonbox (Bottom)</source> + <translation>Dialogo con un Buttonbox (in basso)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="87"/> <source>Dialog with Buttonbox (Right)</source> <translation>Dialogo con un Buttonbox (a destra)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="131"/> + <location filename="Project/ProjectFormsBrowser.py" line="132"/> <source>Generate Dialog Code...</source> <translation>Genera codice del dialogo...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="213"/> + <location filename="Project/ProjectFormsBrowser.py" line="214"/> <source>Open</source> <translation>Apri</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="498"/> + <location filename="Project/ProjectFormsBrowser.py" line="499"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>File interfaccia Qt (*.ui);;Tutti i file (*)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="286"/> + <location filename="Project/ProjectFormsBrowser.py" line="287"/> <source>Configure...</source> <translation>Configura...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="254"/> + <location filename="Project/ProjectFormsBrowser.py" line="255"/> <source>Copy Path to Clipboard</source> <translation>Copia il path nella Clipboard</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation><p>Il nuovo file della form <b>{0}</b> non può essere creato.<br>Problema: {1}</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="627"/> + <location filename="Project/ProjectFormsBrowser.py" line="639"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation><p>La compilazione del file form è fallita.</p><p>Motivo: {0}</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>Non posso avviare {0}.<br>Assicurarsi che sia nel path.</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="90"/> - <source>Wizard</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <source>Wizard</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="92"/> <source>Wizard Page</source> <translation type="unfinished"></translation> </message> @@ -33173,187 +33178,187 @@ <context> <name>ProjectTranslationsBrowser</name> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="65"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> <source>Translations</source> <translation>Traduzioni</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="69"/> <source><b>Project Translations Browser</b><p>This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Browser delle traduzioni del progetto</b><p>Consente di vedere facilmente tutte le traduzioni contenute nel progetto corrente. Diverse azioni posso essere eseguite dal menù contestuale.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="301"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="303"/> <source>Generate translations</source> <translation>Genera traduzioni</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="308"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="310"/> <source>Generate translations (with obsolete)</source> <translation>Genera traduzioni (con deprecati)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="277"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="279"/> <source>Open in Qt-Linguist</source> <translation>Apri in Qt-Linguist</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="320"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="322"/> <source>Release translations</source> <translation>Rilascia traduzioni</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="327"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="329"/> <source>Remove from project</source> <translation>Rimuovi dal progetto</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="330"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="332"/> <source>Delete</source> <translation>Cancella</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="378"/> - <source>Add translation...</source> - <translation>Aggiungi traduzione...</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> - <source>Write temporary project file</source> - <translation>Scrivi un file progetto temporaneo</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> - <source>Translation file generation</source> - <translation>Generazione file traduzioni</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="836"/> - <source>The generation of the translation files (*.ts) was successful.</source> - <translation>La generazione dei file di traduzione (*.ts) è avvenuta con successo.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> - <source>The generation of the translation files (*.ts) has failed.</source> - <translation>La generazione dei file di traduzione (*.ts) è fallita.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> - <source>Process Generation Error</source> - <translation>Errore Generazione Processo</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> - <source>Translation file release</source> - <translation>Rilascia file traduzione</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="975"/> - <source>The release of the translation files (*.qm) was successful.</source> - <translation>Il rilascio dei file traduzione (*.qm) è avvenuta con successo.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> - <source>The release of the translation files (*.qm) has failed.</source> - <translation>La generazione dei file di traduzione (*.qm) è fallita.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="315"/> - <source>Open in Editor</source> - <translation>Apri con l'editor</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="153"/> - <source>Generate translation</source> - <translation>Genera traduzioni</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="160"/> - <source>Generate translation (with obsolete)</source> - <translation>Genera traduzioni (con deprecati)</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="360"/> - <source>Generate all translations</source> - <translation>Genera tutte le traduzioni</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="366"/> - <source>Generate all translations (with obsolete)</source> - <translation>Genera tutte le traduzioni (con deprecati)</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="184"/> - <source>Release translation</source> - <translation>Rilascia traduzione</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="372"/> - <source>Release all translations</source> - <translation>Rilascia tutte le traduzioni</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="138"/> - <source>Preview translation</source> - <translation>Anteprima traduzione</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="289"/> - <source>Preview translations</source> - <translation>Anteprima traduzioni</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> - <source>Delete translation files</source> - <translation>Cancella file della traduzione</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> - <source>Do you really want to delete these translation files from the project?</source> - <translation>Vuoi veramente cancellare questi file traduzione del progetto ?</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="710"/> - <source>No translation files (*.ts) selected.</source> - <translation>Nessun file traduzione (*.ts) selezionato.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="349"/> - <source>Preview all translations</source> - <translation>Anteprima tutte le traduzioni</translation> - </message> - <message> <location filename="Project/ProjectTranslationsBrowser.py" line="380"/> + <source>Add translation...</source> + <translation>Aggiungi traduzione...</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> + <source>Write temporary project file</source> + <translation>Scrivi un file progetto temporaneo</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> + <source>Translation file generation</source> + <translation>Generazione file traduzioni</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="845"/> + <source>The generation of the translation files (*.ts) was successful.</source> + <translation>La generazione dei file di traduzione (*.ts) è avvenuta con successo.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> + <source>The generation of the translation files (*.ts) has failed.</source> + <translation>La generazione dei file di traduzione (*.ts) è fallita.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> + <source>Process Generation Error</source> + <translation>Errore Generazione Processo</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> + <source>Translation file release</source> + <translation>Rilascia file traduzione</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="991"/> + <source>The release of the translation files (*.qm) was successful.</source> + <translation>Il rilascio dei file traduzione (*.qm) è avvenuta con successo.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> + <source>The release of the translation files (*.qm) has failed.</source> + <translation>La generazione dei file di traduzione (*.qm) è fallita.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="317"/> + <source>Open in Editor</source> + <translation>Apri con l'editor</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="155"/> + <source>Generate translation</source> + <translation>Genera traduzioni</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="162"/> + <source>Generate translation (with obsolete)</source> + <translation>Genera traduzioni (con deprecati)</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="362"/> + <source>Generate all translations</source> + <translation>Genera tutte le traduzioni</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="368"/> + <source>Generate all translations (with obsolete)</source> + <translation>Genera tutte le traduzioni (con deprecati)</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="186"/> + <source>Release translation</source> + <translation>Rilascia traduzione</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="374"/> + <source>Release all translations</source> + <translation>Rilascia tutte le traduzioni</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="140"/> + <source>Preview translation</source> + <translation>Anteprima traduzione</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="291"/> + <source>Preview translations</source> + <translation>Anteprima traduzioni</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> + <source>Delete translation files</source> + <translation>Cancella file della traduzione</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> + <source>Do you really want to delete these translation files from the project?</source> + <translation>Vuoi veramente cancellare questi file traduzione del progetto ?</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="712"/> + <source>No translation files (*.ts) selected.</source> + <translation>Nessun file traduzione (*.ts) selezionato.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="351"/> + <source>Preview all translations</source> + <translation>Anteprima tutte le traduzioni</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="382"/> <source>Add translation files...</source> <translation>Aggiungi file traduzione...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="386"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="388"/> <source>Configure...</source> <translation>Configura...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="353"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="355"/> <source>Extract messages</source> <translation>Estrai messaggi</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="383"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="385"/> <source>Copy Path to Clipboard</source> <translation>Copia il path nella Clipboard</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> <translation><p>Il file temporaneo <b>{0}</b> del progetto non può essere scritto.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="926"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="935"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>Non posso avviare {0}.<br>Assicurarsi che sia nel path.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare lrelease.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message>
--- a/i18n/eric5_ru.ts Sun Nov 04 16:55:20 2012 +0100 +++ b/i18n/eric5_ru.ts Sun Nov 04 17:39:08 2012 +0100 @@ -4542,7 +4542,7 @@ <context> <name>DebugUI</name> <message> - <location filename="Debugger/DebugUI.py" line="1587"/> + <location filename="Debugger/DebugUI.py" line="1598"/> <source>Run Script</source> <translation>Выполнить сценарий</translation> </message> @@ -4563,7 +4563,7 @@ <p>Задайте аргументы и выполните сценарий без отладки. Если файл не был сохранён, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>Run Project</source> <translation>Выполнить проект</translation> </message> @@ -4668,7 +4668,7 @@ <p>Задайте аргументы и запустите проект на профилирование. Если файлы проекта не были сохранёны, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1697"/> + <location filename="Debugger/DebugUI.py" line="1708"/> <source>Debug Script</source> <translation>Отладить сценарий</translation> </message> @@ -4689,7 +4689,7 @@ <p>Задайте аргументы командной строки и запустите сценарий на отладку. Если файл не был сохранён, изменения можно предварительно сохранить.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>Debug Project</source> <translation>Отладить проект</translation> </message> @@ -4873,68 +4873,68 @@ <p>Стоит заметить, что все необработанные исключения перехватываются независимо от настроек фильтра.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="986"/> + <location filename="Debugger/DebugUI.py" line="997"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Отлаживаемая программа содержит неуказанную синтаксическую ошибку.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1009"/> + <location filename="Debugger/DebugUI.py" line="1020"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Выброшено исключение, которое не было обработано программой. Более точная информация в окне консоли.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1092"/> + <location filename="Debugger/DebugUI.py" line="1103"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Отлаживаемая программа была неожиданно прервана.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1384"/> + <location filename="Debugger/DebugUI.py" line="1395"/> <source>Coverage of Project</source> <translation>Охват проекта</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1374"/> + <location filename="Debugger/DebugUI.py" line="1385"/> <source>Coverage of Script</source> <translation>Охват сценария</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> + <location filename="Debugger/DebugUI.py" line="1502"/> + <source>Profile of Project</source> + <translation>Профиль проекта</translation> + </message> + <message> <location filename="Debugger/DebugUI.py" line="1491"/> - <source>Profile of Project</source> - <translation>Профиль проекта</translation> - </message> - <message> - <location filename="Debugger/DebugUI.py" line="1480"/> <source>Profile of Script</source> <translation>Профиль сценария</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>Для текущего проекта не определён главный сценарий. Отладка невозможна.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Evaluate</source> <translation>Вычислить</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Enter the statement to evaluate</source> <translation>Задайте выражение для вычисления</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Execute</source> <translation>Выполнить</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Enter the statement to execute</source> <translation>Задайте выражение для выполнения</translation> </message> @@ -5053,7 +5053,7 @@ <translation><p><b>{0}</b> завершился с кодом выхода {1}.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1058"/> + <location filename="Debugger/DebugUI.py" line="1069"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>Отлаживаемая программа выбросила исключение <b>{0}</b><br>"<b>{1}</b>"</p></translation> </message> @@ -5063,12 +5063,12 @@ <translation><p>Программа завершилась с кодом выхода {0}.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source>Breakpoint Condition Error</source> <translation>Ошибка в условиях точки останова</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>Условие точки останова <b>{0}, {1}</b> содержит синтаксическую ошибку.</p></translation> </message> @@ -5111,12 +5111,12 @@ <translation>Отладка</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1047"/> + <location filename="Debugger/DebugUI.py" line="1058"/> <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>Отлаживаемая программа выбросила исключение <b>{0}</b><br>"<b>{1}</b>"<br>Файл: <b>{2}</b>, строка <b>{3}</b></p><p>Прервать выполнение в этом месте?</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="992"/> + <location filename="Debugger/DebugUI.py" line="1003"/> <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>В строке <b>{2}</b>, символе <b>{3}</b> файла <b>{0}</b> обнаружена синтаксическая ошибка <b>{1}</b>.</p></translation> </message> @@ -5141,27 +5141,27 @@ <translation><b>Вычислить</b><p>Вычислить выражение в текущем контексте отлаживаемой программы. Результат будет отображен в окне интерпретатора.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source>Watch Expression Error</source> <translation>Ошибка в выражении для отслеживания</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>Выражение для отслеживания <b>{0}</b> содержит синтаксическую ошибку.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1219"/> + <location filename="Debugger/DebugUI.py" line="1230"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>Выражение для отслеживания '<b>{0}</b>' уже существует.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1223"/> + <location filename="Debugger/DebugUI.py" line="1234"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>Выражение отслеживания '<b>{0}</b>' для переменной <b>{1}</b> уже существует.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1227"/> + <location filename="Debugger/DebugUI.py" line="1238"/> <source>Watch expression already exists</source> <translation>Выражение для отслеживания уже существует</translation> </message> @@ -5198,17 +5198,22 @@ <translation>Shift+F12</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="963"/> + <location filename="Debugger/DebugUI.py" line="974"/> <source>The program has terminated with an exit status of {0}. </source> <translation>Программа завершилась с кодом выхода {0}.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="967"/> + <location filename="Debugger/DebugUI.py" line="978"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation>{0} завершился с кодом выхода {1}.</translation> </message> + <message> + <location filename="Debugger/DebugUI.py" line="970"/> + <source>Program terminated</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebugViewer</name> @@ -32331,242 +32336,242 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="Project/ProjectFormsBrowser.py" line="67"/> + <location filename="Project/ProjectFormsBrowser.py" line="68"/> <source>Forms</source> <translation>Формы</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="69"/> + <location filename="Project/ProjectFormsBrowser.py" line="70"/> <source><b>Project Forms Browser</b><p>This allows to easily see all forms contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Обозреватель форм</b><p>Позволяет легко обозревать формы, содержащиеся в текущем проекте. Некоторые действия над ними доступны посредством контекстного меню.</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="122"/> + <location filename="Project/ProjectFormsBrowser.py" line="123"/> <source>Compile form</source> <translation>Компилировать форму</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="271"/> + <location filename="Project/ProjectFormsBrowser.py" line="272"/> <source>Compile all forms</source> <translation>Компилировать все формы</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="199"/> + <location filename="Project/ProjectFormsBrowser.py" line="200"/> <source>Open in Qt-Designer</source> <translation>Открыть в Дизайнере Qt</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="240"/> + <location filename="Project/ProjectFormsBrowser.py" line="241"/> <source>Remove from project</source> <translation>Удалить из проекта</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="218"/> + <location filename="Project/ProjectFormsBrowser.py" line="219"/> <source>Delete</source> <translation>Удалить</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="278"/> + <location filename="Project/ProjectFormsBrowser.py" line="279"/> <source>Add forms directory...</source> <translation>Добавить каталог с формами...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>Form Compilation</source> <translation>Компиляция форм</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="620"/> + <location filename="Project/ProjectFormsBrowser.py" line="627"/> <source>The compilation of the form file was successful.</source> <translation>Компиляция формы прошла успешно.</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>The compilation of the form file failed.</source> <translation>Компиляция формы не удалась.</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Process Generation Error</source> <translation>Ошибка процесса генерации</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Compiling forms...</source> <translation>Компилирую формы...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Abort</source> <translation>Отмена</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="82"/> - <source>Dialog</source> - <translation>Диалог</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="83"/> + <source>Dialog</source> + <translation>Диалог</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="84"/> <source>Widget</source> <translation>Элемент интерфейса</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="87"/> + <location filename="Project/ProjectFormsBrowser.py" line="88"/> <source>Dialog with Buttons (Bottom)</source> <translation>Дталог с кнопками (снизу)</translation> </message> <message> + <location filename="Project/ProjectFormsBrowser.py" line="90"/> + <source>Dialog with Buttons (Right)</source> + <translation>Дталог с кнопками (справа)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="248"/> + <source>New form...</source> + <translation>Новая форма...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="282"/> + <source>Expand all directories</source> + <translation>Раскрыть все подкаталоги</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="284"/> + <source>Collapse all directories</source> + <translation>Скрыть все подкаталоги</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> + <source>New Form</source> + <translation>Новая форма</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="485"/> + <source>Select a form type:</source> + <translation>Выберите тип формы:</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="202"/> + <source>Open in Editor</source> + <translation>Открыть в редакторе</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="142"/> + <source>Rename file</source> + <translation>Переименовать файл</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="209"/> + <source>Compile forms</source> + <translation>Компилировать формы</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> + <source>Delete forms</source> + <translation>Удалить формы</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> + <source>Do you really want to delete these forms from the project?</source> + <translation>Вы правда хотите удалить выбранные формы из проекта?</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> + <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> + <translation><p>Файл с формой <b>{0}</b> не может быть создан из-за следующей проблемы: {1}</p></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="119"/> + <source>Preview form</source> + <translation>Предпросмотр формы</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="205"/> + <source>Preview translations</source> + <translation>Предпросмотр переводов</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="639"/> + <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> + <translation><p>Компиляция формы не удалась по причине: {0}</p></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> + <source>Could not start {0}.<br>Ensure that it is in the search path.</source> + <translation>Невозможно запустить {0}.<br>Убедитесь, что он находится в пути поиска.</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="277"/> + <source>Add forms...</source> + <translation>Добавить формы...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="85"/> + <source>Main Window</source> + <translation>Главное окно</translation> + </message> + <message> <location filename="Project/ProjectFormsBrowser.py" line="89"/> - <source>Dialog with Buttons (Right)</source> - <translation>Дталог с кнопками (справа)</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="247"/> - <source>New form...</source> - <translation>Новая форма...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="281"/> - <source>Expand all directories</source> - <translation>Раскрыть все подкаталоги</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="283"/> - <source>Collapse all directories</source> - <translation>Скрыть все подкаталоги</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> - <source>New Form</source> - <translation>Новая форма</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="484"/> - <source>Select a form type:</source> - <translation>Выберите тип формы:</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="201"/> - <source>Open in Editor</source> - <translation>Открыть в редакторе</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="141"/> - <source>Rename file</source> - <translation>Переименовать файл</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="208"/> - <source>Compile forms</source> - <translation>Компилировать формы</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> - <source>Delete forms</source> - <translation>Удалить формы</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> - <source>Do you really want to delete these forms from the project?</source> - <translation>Вы правда хотите удалить выбранные формы из проекта?</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> - <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> - <translation><p>Файл с формой <b>{0}</b> не может быть создан из-за следующей проблемы: {1}</p></translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="118"/> - <source>Preview form</source> - <translation>Предпросмотр формы</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="204"/> - <source>Preview translations</source> - <translation>Предпросмотр переводов</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="627"/> - <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> - <translation><p>Компиляция формы не удалась по причине: {0}</p></translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> - <source>Could not start {0}.<br>Ensure that it is in the search path.</source> - <translation>Невозможно запустить {0}.<br>Убедитесь, что он находится в пути поиска.</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="276"/> - <source>Add forms...</source> - <translation>Добавить формы...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="84"/> - <source>Main Window</source> - <translation>Главное окно</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="88"/> <source>Dialog with Buttons (Bottom-Center)</source> <translation>Диалог с кнопками (снизу в центре)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="825"/> + <location filename="Project/ProjectFormsBrowser.py" line="841"/> <source>Determining changed forms...</source> <translation>Определяю изменённые формы...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="852"/> + <location filename="Project/ProjectFormsBrowser.py" line="868"/> <source>Compiling changed forms...</source> <translation>Компилирую изменённые формы...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="517"/> + <location filename="Project/ProjectFormsBrowser.py" line="518"/> <source>The file already exists! Overwrite it?</source> <translation>Файл уже существует! Перезаписать?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="85"/> - <source>Dialog with Buttonbox (Bottom)</source> - <translation>Диалог с кнопками (снизу)</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="86"/> + <source>Dialog with Buttonbox (Bottom)</source> + <translation>Диалог с кнопками (снизу)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="87"/> <source>Dialog with Buttonbox (Right)</source> <translation>Диалог с кнопками (справа)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="131"/> + <location filename="Project/ProjectFormsBrowser.py" line="132"/> <source>Generate Dialog Code...</source> <translation>Создать код для диалога...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="213"/> + <location filename="Project/ProjectFormsBrowser.py" line="214"/> <source>Open</source> <translation>Открыть</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="498"/> + <location filename="Project/ProjectFormsBrowser.py" line="499"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>Файлы описания интерфейса Qt (*.ui);;Все файлы (*)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="286"/> + <location filename="Project/ProjectFormsBrowser.py" line="287"/> <source>Configure...</source> <translation>Настроить...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="254"/> + <location filename="Project/ProjectFormsBrowser.py" line="255"/> <source>Copy Path to Clipboard</source> <translation>Сопировать путь в буфер обмена</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="90"/> - <source>Wizard</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <source>Wizard</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="92"/> <source>Wizard Page</source> <translation type="unfinished"></translation> </message> @@ -33335,187 +33340,187 @@ <context> <name>ProjectTranslationsBrowser</name> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="65"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> <source>Translations</source> <translation>Переводы</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="69"/> <source><b>Project Translations Browser</b><p>This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Обозреватель переводов</b><p>Позволяет легко обозревать файлы переводов, содержащиеся в текущем проекте. Некоторые действия над ними доступны посредством контекстного меню.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="301"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="303"/> <source>Generate translations</source> <translation>Создать переводы</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="308"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="310"/> <source>Generate translations (with obsolete)</source> <translation>Создать переводы (включая устаревшие)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="277"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="279"/> <source>Open in Qt-Linguist</source> <translation>Открыть в Qt-Linguist</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="320"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="322"/> <source>Release translations</source> <translation>Создать двоичные переводы (release)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="327"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="329"/> <source>Remove from project</source> <translation>Удалить из проекта</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="330"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="332"/> <source>Delete</source> <translation>Удалить</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="378"/> - <source>Add translation...</source> - <translation>Добавить перевод...</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> - <source>Write temporary project file</source> - <translation>Запись временного файла проекта</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> - <source>Translation file generation</source> - <translation>Создание файлов перевода</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="836"/> - <source>The generation of the translation files (*.ts) was successful.</source> - <translation>Создание файлов перевода (*.ts) прошло успешно.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> - <source>The generation of the translation files (*.ts) has failed.</source> - <translation>Создание файлов перевода (*.ts) не удалось.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> - <source>Process Generation Error</source> - <translation>Ошибка процесса генерации</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> - <source>Translation file release</source> - <translation>Релиз файлов перевода</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="975"/> - <source>The release of the translation files (*.qm) was successful.</source> - <translation>Релиз файлов перевода (*.ts) прошёл успешно.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> - <source>The release of the translation files (*.qm) has failed.</source> - <translation>Релиз файлов перевода (*.ts) не удался.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="315"/> - <source>Open in Editor</source> - <translation>Открыть в редакторе</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="153"/> - <source>Generate translation</source> - <translation>Создать перевод</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="160"/> - <source>Generate translation (with obsolete)</source> - <translation>Создать перевод (включая устаревшие)</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="360"/> - <source>Generate all translations</source> - <translation>Создать все переводы</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="366"/> - <source>Generate all translations (with obsolete)</source> - <translation>Создать все переводы (включая устаревшие)</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="184"/> - <source>Release translation</source> - <translation>Создать двоичный перевод (release)</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="372"/> - <source>Release all translations</source> - <translation>Создать все двоичные переводы (release)</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> - <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> - <translation><p>Невозможно сохранить временный файл проекта: <b>{0}</b></p></translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> - <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> - <translation><p>Невозможно запустить lrelease.<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="138"/> - <source>Preview translation</source> - <translation>Предпросмотр перевода</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="289"/> - <source>Preview translations</source> - <translation>Предпросмотр переводов</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> - <source>Delete translation files</source> - <translation>Удалить файлы переводов</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> - <source>Do you really want to delete these translation files from the project?</source> - <translation>Вы правда хотите удалить эти файлы переводов из проекта?</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="710"/> - <source>No translation files (*.ts) selected.</source> - <translation>Не выбрано ни одного файла переводов (*.ts).</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="926"/> - <source>Could not start {0}.<br>Ensure that it is in the search path.</source> - <translation>Невозможно запустить {0}.<br>Убедитесь, что он находится в пути поиска.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="349"/> - <source>Preview all translations</source> - <translation>Предпросмотр всех переводов</translation> - </message> - <message> <location filename="Project/ProjectTranslationsBrowser.py" line="380"/> + <source>Add translation...</source> + <translation>Добавить перевод...</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> + <source>Write temporary project file</source> + <translation>Запись временного файла проекта</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> + <source>Translation file generation</source> + <translation>Создание файлов перевода</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="845"/> + <source>The generation of the translation files (*.ts) was successful.</source> + <translation>Создание файлов перевода (*.ts) прошло успешно.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> + <source>The generation of the translation files (*.ts) has failed.</source> + <translation>Создание файлов перевода (*.ts) не удалось.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> + <source>Process Generation Error</source> + <translation>Ошибка процесса генерации</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> + <source>Translation file release</source> + <translation>Релиз файлов перевода</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="991"/> + <source>The release of the translation files (*.qm) was successful.</source> + <translation>Релиз файлов перевода (*.ts) прошёл успешно.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> + <source>The release of the translation files (*.qm) has failed.</source> + <translation>Релиз файлов перевода (*.ts) не удался.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="317"/> + <source>Open in Editor</source> + <translation>Открыть в редакторе</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="155"/> + <source>Generate translation</source> + <translation>Создать перевод</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="162"/> + <source>Generate translation (with obsolete)</source> + <translation>Создать перевод (включая устаревшие)</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="362"/> + <source>Generate all translations</source> + <translation>Создать все переводы</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="368"/> + <source>Generate all translations (with obsolete)</source> + <translation>Создать все переводы (включая устаревшие)</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="186"/> + <source>Release translation</source> + <translation>Создать двоичный перевод (release)</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="374"/> + <source>Release all translations</source> + <translation>Создать все двоичные переводы (release)</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> + <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> + <translation><p>Невозможно сохранить временный файл проекта: <b>{0}</b></p></translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> + <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> + <translation><p>Невозможно запустить lrelease.<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="140"/> + <source>Preview translation</source> + <translation>Предпросмотр перевода</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="291"/> + <source>Preview translations</source> + <translation>Предпросмотр переводов</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> + <source>Delete translation files</source> + <translation>Удалить файлы переводов</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> + <source>Do you really want to delete these translation files from the project?</source> + <translation>Вы правда хотите удалить эти файлы переводов из проекта?</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="712"/> + <source>No translation files (*.ts) selected.</source> + <translation>Не выбрано ни одного файла переводов (*.ts).</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="935"/> + <source>Could not start {0}.<br>Ensure that it is in the search path.</source> + <translation>Невозможно запустить {0}.<br>Убедитесь, что он находится в пути поиска.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="351"/> + <source>Preview all translations</source> + <translation>Предпросмотр всех переводов</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="382"/> <source>Add translation files...</source> <translation>Добавить файлы переводов...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="386"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="388"/> <source>Configure...</source> <translation>Настроить...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="353"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="355"/> <source>Extract messages</source> <translation>Выделить сообщения</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="383"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="385"/> <source>Copy Path to Clipboard</source> <translation>Сопировать путь в буфер обмена</translation> </message>
--- a/i18n/eric5_tr.ts Sun Nov 04 16:55:20 2012 +0100 +++ b/i18n/eric5_tr.ts Sun Nov 04 17:39:08 2012 +0100 @@ -4544,7 +4544,7 @@ <context> <name>DebugUI</name> <message> - <location filename="Debugger/DebugUI.py" line="1587"/> + <location filename="Debugger/DebugUI.py" line="1598"/> <source>Run Script</source> <translation>Betiği Çalıştır</translation> </message> @@ -4564,7 +4564,7 @@ <translation><b>Betiği Çalıştır</b><p> KOmut satırı argumanlarını ayarla ve hata ayıklayıcının dışında çalıştır. Eğer dosyada kaydedilmemiş değişiklikler varsa önce kaydedilmelidir.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>Run Project</source> <translation>Projeyi Çalıştır</translation> </message> @@ -4664,7 +4664,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1697"/> + <location filename="Debugger/DebugUI.py" line="1708"/> <source>Debug Script</source> <translation>Betik Hata Ayıklama</translation> </message> @@ -4684,7 +4684,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>Debug Project</source> <translation>Proje Hata Ayıklama</translation> </message> @@ -4854,7 +4854,7 @@ <translation><b>Dur</b><p>Çalışan hata ayıklama oturumunu durdur.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Evaluate</source> <translation>Değerlendir</translation> </message> @@ -4874,7 +4874,7 @@ <translation><b>Değerlendirme</b><p>Hata ayıklaması yapılan program metni içinde geçenr ifadeleri değerlendir. Sonuç kabuk penceresinde gösterilir.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Execute</source> <translation>Gerçekleştir</translation> </message> @@ -5074,122 +5074,127 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="986"/> + <location filename="Debugger/DebugUI.py" line="997"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Uygulama belirtilmemiş sözdizimi hatalarını belirlemeye başladı.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="992"/> + <location filename="Debugger/DebugUI.py" line="1003"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1009"/> + <location filename="Debugger/DebugUI.py" line="1020"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1047"/> - <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="1058"/> + <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="1069"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1092"/> + <location filename="Debugger/DebugUI.py" line="1103"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Hata ayıklanmaya başlanan program beklenmeyen bir şekilde sonlandı.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source>Breakpoint Condition Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source>Watch Expression Error</source> <translation>Gözetleme İfade hatası</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1219"/> + <location filename="Debugger/DebugUI.py" line="1230"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1223"/> + <location filename="Debugger/DebugUI.py" line="1234"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1227"/> + <location filename="Debugger/DebugUI.py" line="1238"/> <source>Watch expression already exists</source> <translation>Hali hazırda gözetleme ifadesi var</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1384"/> + <location filename="Debugger/DebugUI.py" line="1395"/> <source>Coverage of Project</source> <translation>Proje Kapsamı</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1374"/> + <location filename="Debugger/DebugUI.py" line="1385"/> <source>Coverage of Script</source> <translation>Betik Kapsamı</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation> </message> <message> + <location filename="Debugger/DebugUI.py" line="1502"/> + <source>Profile of Project</source> + <translation>Proje Kesiti</translation> + </message> + <message> <location filename="Debugger/DebugUI.py" line="1491"/> - <source>Profile of Project</source> - <translation>Proje Kesiti</translation> - </message> - <message> - <location filename="Debugger/DebugUI.py" line="1480"/> <source>Profile of Script</source> <translation>Betik Kesiti</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Enter the statement to evaluate</source> <translation>Değerlendilecek ifadeleri giriniz</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Enter the statement to execute</source> <translation>Çalıştırılacak ifadeleri giriniz</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="963"/> + <location filename="Debugger/DebugUI.py" line="974"/> <source>The program has terminated with an exit status of {0}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="967"/> + <location filename="Debugger/DebugUI.py" line="978"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Debugger/DebugUI.py" line="970"/> + <source>Program terminated</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebugViewer</name> @@ -32444,242 +32449,242 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="Project/ProjectFormsBrowser.py" line="67"/> + <location filename="Project/ProjectFormsBrowser.py" line="68"/> <source>Forms</source> <translation>Formlar</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="69"/> + <location filename="Project/ProjectFormsBrowser.py" line="70"/> <source><b>Project Forms Browser</b><p>This allows to easily see all forms contained in the current project. Several actions can be executed via the context menu.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="82"/> - <source>Dialog</source> - <translation>Diyalog</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="83"/> - <source>Widget</source> - <translation>Parçacık</translation> + <source>Dialog</source> + <translation>Diyalog</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="84"/> - <source>Main Window</source> - <translation>Ana Pencere</translation> + <source>Widget</source> + <translation>Parçacık</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="85"/> - <source>Dialog with Buttonbox (Bottom)</source> - <translation>Düğmekutulu Diyalog (Altta)</translation> + <source>Main Window</source> + <translation>Ana Pencere</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="86"/> - <source>Dialog with Buttonbox (Right)</source> - <translation>Düğmekutulu Diyalog (Sağda)</translation> + <source>Dialog with Buttonbox (Bottom)</source> + <translation>Düğmekutulu Diyalog (Altta)</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="87"/> - <source>Dialog with Buttons (Bottom)</source> - <translation>Düğmeli Diyalog (Altta)</translation> + <source>Dialog with Buttonbox (Right)</source> + <translation>Düğmekutulu Diyalog (Sağda)</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="88"/> - <source>Dialog with Buttons (Bottom-Center)</source> - <translation>Düğmekutulu Diyalog (Altta-Ortalı)</translation> + <source>Dialog with Buttons (Bottom)</source> + <translation>Düğmeli Diyalog (Altta)</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="89"/> + <source>Dialog with Buttons (Bottom-Center)</source> + <translation>Düğmekutulu Diyalog (Altta-Ortalı)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="90"/> <source>Dialog with Buttons (Right)</source> <translation>Düğme Diyalog (Sağda)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="122"/> + <location filename="Project/ProjectFormsBrowser.py" line="123"/> <source>Compile form</source> <translation>Formu derle</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="271"/> + <location filename="Project/ProjectFormsBrowser.py" line="272"/> <source>Compile all forms</source> <translation>Tüm formları derle</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="131"/> + <location filename="Project/ProjectFormsBrowser.py" line="132"/> <source>Generate Dialog Code...</source> <translation>Diyalog kodunu Üret...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="199"/> + <location filename="Project/ProjectFormsBrowser.py" line="200"/> <source>Open in Qt-Designer</source> <translation>Qt-Designer'da Aç</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="201"/> + <location filename="Project/ProjectFormsBrowser.py" line="202"/> <source>Open in Editor</source> <translation>Düzenleyicide Aç</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="118"/> + <location filename="Project/ProjectFormsBrowser.py" line="119"/> <source>Preview form</source> <translation>Form öngörünümü</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="204"/> + <location filename="Project/ProjectFormsBrowser.py" line="205"/> <source>Preview translations</source> <translation>Çeviri öngörünümü</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="213"/> + <location filename="Project/ProjectFormsBrowser.py" line="214"/> <source>Open</source> <translation>Aç</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="141"/> + <location filename="Project/ProjectFormsBrowser.py" line="142"/> <source>Rename file</source> <translation>Dosya adını değiştir</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="240"/> + <location filename="Project/ProjectFormsBrowser.py" line="241"/> <source>Remove from project</source> <translation>Projeden çıkar</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="218"/> + <location filename="Project/ProjectFormsBrowser.py" line="219"/> <source>Delete</source> <translation>Sil</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="247"/> + <location filename="Project/ProjectFormsBrowser.py" line="248"/> <source>New form...</source> <translation>Yeni Kalıp...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="276"/> + <location filename="Project/ProjectFormsBrowser.py" line="277"/> <source>Add forms...</source> <translation>Form ekli...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="278"/> + <location filename="Project/ProjectFormsBrowser.py" line="279"/> <source>Add forms directory...</source> <translation>Form dizini ekle...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="254"/> + <location filename="Project/ProjectFormsBrowser.py" line="255"/> <source>Copy Path to Clipboard</source> <translation>Yolu Panoya kopyala</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="281"/> + <location filename="Project/ProjectFormsBrowser.py" line="282"/> <source>Expand all directories</source> <translation>Tüm dizinleri genişlet</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="283"/> + <location filename="Project/ProjectFormsBrowser.py" line="284"/> <source>Collapse all directories</source> <translation>Tüm dizinleri daralt</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="286"/> + <location filename="Project/ProjectFormsBrowser.py" line="287"/> <source>Configure...</source> <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="208"/> + <location filename="Project/ProjectFormsBrowser.py" line="209"/> <source>Compile forms</source> <translation>Formları derle</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> <source>New Form</source> <translation>Yeni Form</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="484"/> + <location filename="Project/ProjectFormsBrowser.py" line="485"/> <source>Select a form type:</source> <translation>Form tipini seç:</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="498"/> + <location filename="Project/ProjectFormsBrowser.py" line="499"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>Qt Kullanıcı-Arayüz Dosyaları (*.ui);;Tüm Dosyalar (*)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="517"/> + <location filename="Project/ProjectFormsBrowser.py" line="518"/> <source>The file already exists! Overwrite it?</source> <translation>Bu dosya halihazırda var! Üzerine yazılsın mı?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Delete forms</source> <translation>Formları sil</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Do you really want to delete these forms from the project?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>Form Compilation</source> <translation>Form Derleme</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="620"/> - <source>The compilation of the form file was successful.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="627"/> + <source>The compilation of the form file was successful.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="639"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>The compilation of the form file failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Process Generation Error</source> <translation>İşlem Üretecinde Hata</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Compiling forms...</source> <translation>Formlar derleniyor...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Abort</source> <translation>Vazgeç</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="825"/> + <location filename="Project/ProjectFormsBrowser.py" line="841"/> <source>Determining changed forms...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="852"/> + <location filename="Project/ProjectFormsBrowser.py" line="868"/> <source>Compiling changed forms...</source> <translation>Değişen formlar derleniyor...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="90"/> - <source>Wizard</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <source>Wizard</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="92"/> <source>Wizard Page</source> <translation type="unfinished"></translation> </message> @@ -33457,187 +33462,187 @@ <context> <name>ProjectTranslationsBrowser</name> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="65"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> <source>Translations</source> <translation>Çeviriler</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="69"/> <source><b>Project Translations Browser</b><p>This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Proje Çevirileri Gözatıcısı</b><p>Bu geçerli projedeki tüm çevirileri kolayca bir arada görmek için biriktirir . Pekçok işlem için açılır menüyü kullanabilirsiniz.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="153"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="155"/> <source>Generate translation</source> <translation>Çeviriyii üret</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="160"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="162"/> <source>Generate translation (with obsolete)</source> <translation>Çeviriyi üret (eskileri ile beraber)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="360"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="362"/> <source>Generate all translations</source> <translation>Tüm çevirileri üret</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="366"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="368"/> <source>Generate all translations (with obsolete)</source> <translation>Tüm çevirileri üret (eskileri ile beraber)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="277"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="279"/> <source>Open in Qt-Linguist</source> <translation>Qt-Linguist'te Aç</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="315"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="317"/> <source>Open in Editor</source> <translation>Düzenleyicide Aç</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="184"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="186"/> <source>Release translation</source> <translation>Çeviriyi yayımla</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="372"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="374"/> <source>Release all translations</source> <translation>Tüm çevirileri yayımla</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="138"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="140"/> <source>Preview translation</source> <translation>Çeviri öngörünümü</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="349"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="351"/> <source>Preview all translations</source> <translation>Tüm çevirilerin öngörünümü</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="353"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="355"/> <source>Extract messages</source> <translation>Masajı Genişlet</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="327"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="329"/> <source>Remove from project</source> <translation>Projeden çıkar</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="330"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="332"/> <source>Delete</source> <translation>Sil</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="378"/> - <source>Add translation...</source> - <translation>Çeviri ekle...</translation> - </message> - <message> <location filename="Project/ProjectTranslationsBrowser.py" line="380"/> + <source>Add translation...</source> + <translation>Çeviri ekle...</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="382"/> <source>Add translation files...</source> <translation>Çeviri dosyası ekle...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="383"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="385"/> <source>Copy Path to Clipboard</source> <translation>Yolu Panoya kopyala</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="386"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="388"/> <source>Configure...</source> <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="301"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="303"/> <source>Generate translations</source> <translation>Çevirileri üret</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="308"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="310"/> <source>Generate translations (with obsolete)</source> <translation>Çevirileri üret (eskileri ile beraber)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="320"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="322"/> <source>Release translations</source> <translation>Çevirileri yayımla</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="289"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="291"/> <source>Preview translations</source> <translation>Çeviri öngörünümü</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Delete translation files</source> <translation>Çeviri dosyalarını sil</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Do you really want to delete these translation files from the project?</source> <translation>Bu çeviri dosyalarını gerçekten projeden silmek mi istiyorsunuz?</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source>Write temporary project file</source> <translation>Geçici proje dosyasını yaz</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="710"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="712"/> <source>No translation files (*.ts) selected.</source> <translation>Hiç çeviri dosyası (*.ts) seçilmedi.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>Translation file generation</source> <translation>Çeviri dosyası üreteci</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="836"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="845"/> <source>The generation of the translation files (*.ts) was successful.</source> <translation>Çeviri dosyaları (*.ts) tam olarak üretildi.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>The generation of the translation files (*.ts) has failed.</source> <translation>Çeviri dosyalarının (*.ts) üretimi başarısız oldu.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source>Process Generation Error</source> <translation>İşlem Üretecinde Hata</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="926"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="935"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>Translation file release</source> <translation>Yayımlanmış çeviri dosyası</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="975"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="991"/> <source>The release of the translation files (*.qm) was successful.</source> <translation>Çeviri dosyaları (*.qm) tam olarak yayımlandı.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>The release of the translation files (*.qm) has failed.</source> <translation>Çeviri dosyalarının (*qm) yayımı başarısız oldu.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_zh_CN.GB2312.ts Sun Nov 04 16:55:20 2012 +0100 +++ b/i18n/eric5_zh_CN.GB2312.ts Sun Nov 04 17:39:08 2012 +0100 @@ -4701,7 +4701,7 @@ <context> <name>DebugUI</name> <message> - <location filename="Debugger/DebugUI.py" line="1587"/> + <location filename="Debugger/DebugUI.py" line="1598"/> <source>Run Script</source> <translation>运行脚本</translation> </message> @@ -4721,7 +4721,7 @@ <translation><b>运行脚本</b><p>设置命令行参数,并在调试器之外运行脚本。如果文件未对更改进行保存,则可能会先行保存。</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>Run Project</source> <translation>运行项目</translation> </message> @@ -4861,7 +4861,7 @@ <translation type="obsolete"><b>循环项目</b><p>设置命令行参数,并通过循环运行当前项目。如果当前项目的文件未保存则会先行保存。</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1697"/> + <location filename="Debugger/DebugUI.py" line="1708"/> <source>Debug Script</source> <translation>调试脚本</translation> </message> @@ -4881,7 +4881,7 @@ <translation><b>调试脚本</b><p>设置命令行参数,并将当前行设为当前编辑窗口首先执行的 Python 声明。如果文件未保存则会先行保存。</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>Debug Project</source> <translation>调试项目</translation> </message> @@ -5051,7 +5051,7 @@ <translation><b>中止</b><p>中止正在运行中的调试会话。</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Evaluate</source> <translation>赋值</translation> </message> @@ -5071,7 +5071,7 @@ <translation><b>赋值</b><p>在调试程序的当前上下文中为表达式赋值。结果显示在命令行窗口中。</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Execute</source> <translation>执行</translation> </message> @@ -5259,7 +5259,7 @@ <translation type="obsolete"><p><b>%1</b> 已终止于 %2 的退出状态。</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="986"/> + <location filename="Debugger/DebugUI.py" line="997"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>被调试的程序包含一个未指定的语法错误。</translation> </message> @@ -5269,7 +5269,7 @@ <translation type="obsolete"><p>文件 <b>%1</b> 包含语法错误 <b>%2</b> ,位于第 <b>%3</b> 行, 字符为 <b>%4</b> 。</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1009"/> + <location filename="Debugger/DebugUI.py" line="1020"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>产生了一个未处理的异常。详细信息参见命令行窗口。</translation> </message> @@ -5284,12 +5284,12 @@ <translation type="obsolete"><p>被调试的程序导致异常 <b>%1</b><br>“<b>%2</b>”</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1092"/> + <location filename="Debugger/DebugUI.py" line="1103"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>被调试的程序意外终止。</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source>Breakpoint Condition Error</source> <translation>断点条件错误</translation> </message> @@ -5299,7 +5299,7 @@ <translation type="obsolete"><p>断点 <b>%1, %2</b> 的条件中包含一个语法错误。</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source>Watch Expression Error</source> <translation>监视表达式出错</translation> </message> @@ -5319,32 +5319,32 @@ <translation type="obsolete"><p> 变量 <b>%2</b> 的监视表达式 '<b>%1</b>' 已存在。</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1227"/> + <location filename="Debugger/DebugUI.py" line="1238"/> <source>Watch expression already exists</source> <translation>监视表达式已存在</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1384"/> + <location filename="Debugger/DebugUI.py" line="1395"/> <source>Coverage of Project</source> <translation>项目覆盖率</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1374"/> + <location filename="Debugger/DebugUI.py" line="1385"/> <source>Coverage of Script</source> <translation>脚本覆盖率</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1600"/> + <location filename="Debugger/DebugUI.py" line="1611"/> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> + <location filename="Debugger/DebugUI.py" line="1502"/> + <source>Profile of Project</source> + <translation>项目轮廓</translation> + </message> + <message> <location filename="Debugger/DebugUI.py" line="1491"/> - <source>Profile of Project</source> - <translation>项目轮廓</translation> - </message> - <message> - <location filename="Debugger/DebugUI.py" line="1480"/> <source>Profile of Script</source> <translation>脚本轮廓</translation> </message> @@ -5369,17 +5369,17 @@ <translation type="obsolete"><p>要循环一个模块,相应模块必须定义一个函数作为循环的进入点。模块 <b>%1</b> 未定义函数 <b>%2</b>。</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1710"/> + <location filename="Debugger/DebugUI.py" line="1721"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>当前项目未定义主脚本。不能进行调试。</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1971"/> + <location filename="Debugger/DebugUI.py" line="1982"/> <source>Enter the statement to evaluate</source> <translation>输入赋值语句</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2000"/> + <location filename="Debugger/DebugUI.py" line="2011"/> <source>Enter the statement to execute</source> <translation>输入执行语句</translation> </message> @@ -5406,52 +5406,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="992"/> + <location filename="Debugger/DebugUI.py" line="1003"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1047"/> - <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="1058"/> + <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="1069"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1161"/> + <location filename="Debugger/DebugUI.py" line="1172"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1192"/> + <location filename="Debugger/DebugUI.py" line="1203"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1219"/> + <location filename="Debugger/DebugUI.py" line="1230"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1223"/> + <location filename="Debugger/DebugUI.py" line="1234"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="963"/> + <location filename="Debugger/DebugUI.py" line="974"/> <source>The program has terminated with an exit status of {0}. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="967"/> + <location filename="Debugger/DebugUI.py" line="978"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Debugger/DebugUI.py" line="970"/> + <source>Program terminated</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>DebugViewer</name> @@ -34338,27 +34343,27 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="Project/ProjectFormsBrowser.py" line="67"/> + <location filename="Project/ProjectFormsBrowser.py" line="68"/> <source>Forms</source> <translation>窗体</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="69"/> + <location filename="Project/ProjectFormsBrowser.py" line="70"/> <source><b>Project Forms Browser</b><p>This allows to easily see all forms contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>项目窗体浏览器</b><p>可以方便地观察当前项目中包含的所有窗体。可以通过上下文菜单执行多个动作。</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="82"/> - <source>Dialog</source> - <translation>对话框</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="90"/> - <source>Wizard</source> - <translation type="unfinished">向导</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="83"/> + <source>Dialog</source> + <translation>对话框</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <source>Wizard</source> + <translation type="unfinished">向导</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="84"/> <source>Widget</source> <translation>构件</translation> </message> @@ -34368,12 +34373,12 @@ <translation type="obsolete">配置对话框</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="87"/> + <location filename="Project/ProjectFormsBrowser.py" line="88"/> <source>Dialog with Buttons (Bottom)</source> <translation>带按钮(底部)的对话框</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="89"/> + <location filename="Project/ProjectFormsBrowser.py" line="90"/> <source>Dialog with Buttons (Right)</source> <translation>带按钮(右侧)的对话框</translation> </message> @@ -34383,37 +34388,37 @@ <translation type="obsolete">选项卡对话框</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="84"/> + <location filename="Project/ProjectFormsBrowser.py" line="85"/> <source>Main Window</source> <translation>主窗口</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="85"/> - <source>Dialog with Buttonbox (Bottom)</source> - <translation>带按钮盒(底部)的对话框</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="86"/> + <source>Dialog with Buttonbox (Bottom)</source> + <translation>带按钮盒(底部)的对话框</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="87"/> <source>Dialog with Buttonbox (Right)</source> <translation>带按钮盒(右侧)的对话框</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="88"/> + <location filename="Project/ProjectFormsBrowser.py" line="89"/> <source>Dialog with Buttons (Bottom-Center)</source> <translation>带按钮(底部居中)的对话框</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="122"/> + <location filename="Project/ProjectFormsBrowser.py" line="123"/> <source>Compile form</source> <translation>编译窗体</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="271"/> + <location filename="Project/ProjectFormsBrowser.py" line="272"/> <source>Compile all forms</source> <translation>编译所有窗体</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="131"/> + <location filename="Project/ProjectFormsBrowser.py" line="132"/> <source>Generate Dialog Code...</source> <translation>生成对话框代码……</translation> </message> @@ -34423,97 +34428,97 @@ <translation type="obsolete">生成子类</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="199"/> + <location filename="Project/ProjectFormsBrowser.py" line="200"/> <source>Open in Qt-Designer</source> <translation>在 Qt 设计师中打开</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="201"/> + <location filename="Project/ProjectFormsBrowser.py" line="202"/> <source>Open in Editor</source> <translation>在编辑器中打开</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="118"/> + <location filename="Project/ProjectFormsBrowser.py" line="119"/> <source>Preview form</source> <translation>预览窗体</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="204"/> + <location filename="Project/ProjectFormsBrowser.py" line="205"/> <source>Preview translations</source> <translation>预览翻译</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="213"/> + <location filename="Project/ProjectFormsBrowser.py" line="214"/> <source>Open</source> <translation>打开</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="141"/> + <location filename="Project/ProjectFormsBrowser.py" line="142"/> <source>Rename file</source> <translation>重命名文件</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="240"/> + <location filename="Project/ProjectFormsBrowser.py" line="241"/> <source>Remove from project</source> <translation>从项目移除</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="218"/> + <location filename="Project/ProjectFormsBrowser.py" line="219"/> <source>Delete</source> <translation>删除</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="247"/> + <location filename="Project/ProjectFormsBrowser.py" line="248"/> <source>New form...</source> <translation>新建窗体……</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="276"/> + <location filename="Project/ProjectFormsBrowser.py" line="277"/> <source>Add forms...</source> <translation>添加窗体……</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="278"/> + <location filename="Project/ProjectFormsBrowser.py" line="279"/> <source>Add forms directory...</source> <translation>添加窗体文件夹……</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="281"/> + <location filename="Project/ProjectFormsBrowser.py" line="282"/> <source>Expand all directories</source> <translation>展开所有文件夹</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="283"/> + <location filename="Project/ProjectFormsBrowser.py" line="284"/> <source>Collapse all directories</source> <translation>折叠所有文件夹</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="286"/> + <location filename="Project/ProjectFormsBrowser.py" line="287"/> <source>Configure...</source> <translation>配置……</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="208"/> + <location filename="Project/ProjectFormsBrowser.py" line="209"/> <source>Compile forms</source> <translation>编译窗体</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> <source>New Form</source> <translation>新建窗体</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="484"/> + <location filename="Project/ProjectFormsBrowser.py" line="485"/> <source>Select a form type:</source> <translation>选择窗体类型:</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="498"/> + <location filename="Project/ProjectFormsBrowser.py" line="499"/> <source>Qt User-Interface Files (*.ui);;All Files (*)</source> <translation>Qt 用户界面文件 (*.ui);;所有文件 (*)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="517"/> + <location filename="Project/ProjectFormsBrowser.py" line="518"/> <source>The file already exists! Overwrite it?</source> <translation>文件已存在!是否覆盖?</translation> </message> @@ -34523,22 +34528,22 @@ <translation type="obsolete"><p>无法创建新窗体 <b>%1</b> 。<br>问题: %2</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Delete forms</source> <translation>删除窗体</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="551"/> + <location filename="Project/ProjectFormsBrowser.py" line="552"/> <source>Do you really want to delete these forms from the project?</source> <translation>确定要从项目中删除这些窗体?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>Form Compilation</source> <translation>窗体编译</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="620"/> + <location filename="Project/ProjectFormsBrowser.py" line="627"/> <source>The compilation of the form file was successful.</source> <translation>窗体文件编译成功。</translation> </message> @@ -34548,7 +34553,7 @@ <translation type="obsolete"><p>窗体文件编译失败。</p><p>原因: %1</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="633"/> + <location filename="Project/ProjectFormsBrowser.py" line="649"/> <source>The compilation of the form file failed.</source> <translation>窗体文件编译失败。</translation> </message> @@ -34583,7 +34588,7 @@ <translation type="obsolete">输入子类名称:</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Process Generation Error</source> <translation>进程生成错误</translation> </message> @@ -34593,47 +34598,47 @@ <translation type="obsolete">无法开启 %1。<br>确保其在搜索路径中。</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Compiling forms...</source> <translation>正在编译窗体……</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="790"/> + <location filename="Project/ProjectFormsBrowser.py" line="806"/> <source>Abort</source> <translation>终止</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="825"/> + <location filename="Project/ProjectFormsBrowser.py" line="841"/> <source>Determining changed forms...</source> <translation>正在确定更改的窗体……</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="852"/> + <location filename="Project/ProjectFormsBrowser.py" line="868"/> <source>Compiling changed forms...</source> <translation>正在编译更改的窗体……</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="254"/> + <location filename="Project/ProjectFormsBrowser.py" line="255"/> <source>Copy Path to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="528"/> + <location filename="Project/ProjectFormsBrowser.py" line="529"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="627"/> + <location filename="Project/ProjectFormsBrowser.py" line="639"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="702"/> + <location filename="Project/ProjectFormsBrowser.py" line="718"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <location filename="Project/ProjectFormsBrowser.py" line="92"/> <source>Wizard Page</source> <translation type="unfinished"></translation> </message> @@ -35476,127 +35481,127 @@ <context> <name>ProjectTranslationsBrowser</name> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="65"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> <source>Translations</source> <translation>翻译</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="67"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="69"/> <source><b>Project Translations Browser</b><p>This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>项目翻译浏览器</b><p>可以方便地观察在当前项目中包含的所有翻译。通过上下文菜单可以运行多个动作。</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="153"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="155"/> <source>Generate translation</source> <translation>生成翻译</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="160"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="162"/> <source>Generate translation (with obsolete)</source> <translation>生成翻译(包括不使用的翻译)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="360"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="362"/> <source>Generate all translations</source> <translation>生成所有翻译</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="366"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="368"/> <source>Generate all translations (with obsolete)</source> <translation>生成所有翻译(包括不使用的翻译)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="277"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="279"/> <source>Open in Qt-Linguist</source> <translation>在 Qt 语言家中打开</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="315"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="317"/> <source>Open in Editor</source> <translation>在编辑器中打开</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="184"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="186"/> <source>Release translation</source> <translation>发布翻译</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="372"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="374"/> <source>Release all translations</source> <translation>发布所有翻译</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="138"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="140"/> <source>Preview translation</source> <translation>预览翻译</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="349"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="351"/> <source>Preview all translations</source> <translation>预览所有翻译</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="327"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="329"/> <source>Remove from project</source> <translation>从项目移除</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="330"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="332"/> <source>Delete</source> <translation>删除</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="378"/> - <source>Add translation...</source> - <translation>添加翻译……</translation> - </message> - <message> <location filename="Project/ProjectTranslationsBrowser.py" line="380"/> + <source>Add translation...</source> + <translation>添加翻译……</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="382"/> <source>Add translation files...</source> <translation>添加翻译文件……</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="386"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="388"/> <source>Configure...</source> <translation>配置……</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="301"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="303"/> <source>Generate translations</source> <translation>生成翻译</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="308"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="310"/> <source>Generate translations (with obsolete)</source> <translation>生成翻译(包括过时的)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="320"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="322"/> <source>Release translations</source> <translation>发布翻译</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="289"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="291"/> <source>Preview translations</source> <translation>预览翻译</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Delete translation files</source> <translation>删除翻译文件</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="605"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="607"/> <source>Do you really want to delete these translation files from the project?</source> <translation>确定要从项目中删除这些翻译?</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source>Write temporary project file</source> <translation>写入临时项目文件</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="710"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="712"/> <source>No translation files (*.ts) selected.</source> <translation>未选择翻译文件 (*.ts)</translation> </message> @@ -35606,22 +35611,22 @@ <translation type="obsolete"><p>无法写入临时项目文件 <b>%1</b> 。</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>Translation file generation</source> <translation>翻译文件生成</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="836"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="845"/> <source>The generation of the translation files (*.ts) was successful.</source> <translation>翻译文件 (*.ts) 生成成功。</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="841"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="850"/> <source>The generation of the translation files (*.ts) has failed.</source> <translation>翻译文件 (*.ts) 生成失败。</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source>Process Generation Error</source> <translation>进程生成错误</translation> </message> @@ -35631,17 +35636,17 @@ <translation type="obsolete">无法开启 %1。<br>确保其在搜索路径中。</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>Translation file release</source> <translation>翻译文件发布</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="975"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="991"/> <source>The release of the translation files (*.qm) was successful.</source> <translation>翻译文件 (*.qm) 发布成功。</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="989"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1005"/> <source>The release of the translation files (*.qm) has failed.</source> <translation>翻译文件 (*.qm) 发布失败。</translation> </message> @@ -35651,27 +35656,27 @@ <translation type="obsolete"><p>无法开始发布。<br>确保其有效如 <b>%1</b>。</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="353"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="355"/> <source>Extract messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="383"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="385"/> <source>Copy Path to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="737"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="739"/> <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="926"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="935"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1055"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1071"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message>