Tue, 18 Mar 2014 18:55:25 +0100
Added support for Mercurial queues summary.
--- a/Documentation/Help/source.qhp Tue Mar 18 18:51:09 2014 +0100 +++ b/Documentation/Help/source.qhp Tue Mar 18 18:55:25 2014 +0100 @@ -9813,6 +9813,7 @@ <keyword name="QueuesProjectHelper.__hgQueueShowHeader" id="QueuesProjectHelper.__hgQueueShowHeader" ref="eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.ProjectHelper.html#QueuesProjectHelper.__hgQueueShowHeader" /> <keyword name="QueuesProjectHelper.__hgQueueShowPatch" id="QueuesProjectHelper.__hgQueueShowPatch" ref="eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.ProjectHelper.html#QueuesProjectHelper.__hgQueueShowPatch" /> <keyword name="QueuesProjectHelper.__hgQueueStatus" id="QueuesProjectHelper.__hgQueueStatus" ref="eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.ProjectHelper.html#QueuesProjectHelper.__hgQueueStatus" /> + <keyword name="QueuesProjectHelper.__hgQueueSummary" id="QueuesProjectHelper.__hgQueueSummary" ref="eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.ProjectHelper.html#QueuesProjectHelper.__hgQueueSummary" /> <keyword name="QueuesProjectHelper.__initGuardsActions" id="QueuesProjectHelper.__initGuardsActions" ref="eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.ProjectHelper.html#QueuesProjectHelper.__initGuardsActions" /> <keyword name="QueuesProjectHelper.__initPushPopActions" id="QueuesProjectHelper.__initPushPopActions" ref="eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.ProjectHelper.html#QueuesProjectHelper.__initPushPopActions" /> <keyword name="QueuesProjectHelper.__initPushPopForceActions" id="QueuesProjectHelper.__initPushPopForceActions" ref="eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.ProjectHelper.html#QueuesProjectHelper.__initPushPopForceActions" />
--- a/Documentation/Source/eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.ProjectHelper.html Tue Mar 18 18:51:09 2014 +0100 +++ b/Documentation/Source/eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.ProjectHelper.html Tue Mar 18 18:55:25 2014 +0100 @@ -183,6 +183,9 @@ <td><a href="#QueuesProjectHelper.__hgQueueStatus">__hgQueueStatus</a></td> <td>Private slot to show the status of the queue repository.</td> </tr><tr> +<td><a href="#QueuesProjectHelper.__hgQueueSummary">__hgQueueSummary</a></td> +<td>Private slot to show a summary of the queue repository.</td> +</tr><tr> <td><a href="#QueuesProjectHelper.__initGuardsActions">__initGuardsActions</a></td> <td>Public method to generate the guards action objects.</td> </tr><tr> @@ -450,6 +453,11 @@ <b>__hgQueueStatus</b>(<i></i>) <p> Private slot to show the status of the queue repository. +</p><a NAME="QueuesProjectHelper.__hgQueueSummary" ID="QueuesProjectHelper.__hgQueueSummary"></a> +<h4>QueuesProjectHelper.__hgQueueSummary</h4> +<b>__hgQueueSummary</b>(<i></i>) +<p> + Private slot to show a summary of the queue repository. </p><a NAME="QueuesProjectHelper.__initGuardsActions" ID="QueuesProjectHelper.__initGuardsActions"></a> <h4>QueuesProjectHelper.__initGuardsActions</h4> <b>__initGuardsActions</b>(<i></i>)
--- a/Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py Tue Mar 18 18:51:09 2014 +0100 +++ b/Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py Tue Mar 18 18:55:25 2014 +0100 @@ -74,7 +74,8 @@ self.__largefiles = largefiles args = self.vcs.initCommand("summary") - args.append("--remote") + if self.vcs.canPull(): + args.append("--remote") if self.__mq: args.append("--mq") if self.__largefiles:
--- a/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py Tue Mar 18 18:51:09 2014 +0100 +++ b/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py Tue Mar 18 18:55:25 2014 +0100 @@ -222,7 +222,20 @@ self.hgQueueStatusAct.triggered.connect(self.__hgQueueStatus) self.actions.append(self.hgQueueStatusAct) - # TODO: add support for hg summary --mq + self.hgQueueSummaryAct = E5Action( + self.tr('Show Summary'), + self.tr('Show summary...'), + 0, 0, self, 'mercurial_queues_summary') + self.hgQueueSummaryAct.setStatusTip(self.tr( + 'Show summary information of the queue repository' + )) + self.hgQueueSummaryAct.setWhatsThis(self.tr( + """<b>Show summary</b>""" + """<p>This shows some summary information of the queue""" + """ repository.</p>""" + )) + self.hgQueueSummaryAct.triggered.connect(self.__hgQueueSummary) + self.actions.append(self.hgQueueSummaryAct) self.__initPushPopActions() self.__initPushPopForceActions() @@ -734,6 +747,7 @@ menu.addAction(self.hgQueueFinishAct) menu.addSeparator() menu.addAction(self.hgQueueStatusAct) + menu.addAction(self.hgQueueSummaryAct) menu.addSeparator() menu.addAction(self.hgQueueDiffAct) menu.addAction(self.hgQueueHeaderAct) @@ -1095,3 +1109,9 @@ """ self.vcs.getExtensionObject("mq")\ .hgQueueStatus(self.project.getProjectPath()) + + def __hgQueueSummary(self): + """ + Private slot to show a summary of the queue repository. + """ + self.vcs.hgSummary(mq=True)
--- a/changelog Tue Mar 18 18:51:09 2014 +0100 +++ b/changelog Tue Mar 18 18:55:25 2014 +0100 @@ -33,6 +33,7 @@ revision --- added support for the shelve extension (as of Mercurial 2.8) --- added support for the largefiles extension (as of Mercurial 2.0) + --- added support for Mercurial queues summary Version 5.4.0: - bug fixes
--- a/i18n/eric5_cs.ts Tue Mar 18 18:51:09 2014 +0100 +++ b/i18n/eric5_cs.ts Tue Mar 18 18:55:25 2014 +0100 @@ -9449,7 +9449,7 @@ <translation>Editovat breakpoint...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4882"/> + <location filename="../QScintilla/Editor.py" line="4883"/> <source>Enable breakpoint</source> <translation>Aktivovat breakpoint</translation> </message> @@ -9549,112 +9549,112 @@ <translation>Autodoplňování není dostupné protože zdrojová část autodoplňování nebyla nalezena.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4885"/> + <location filename="../QScintilla/Editor.py" line="4886"/> <source>Disable breakpoint</source> <translation>Deaktivovat breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Code Coverage</source> <translation>Pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Please select a coverage file</source> <translation>Prosím, vyberte soubor s pokrytím kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>Show Code Coverage Annotations</source> <translation>Zobrazit poznámky pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5327"/> + <location filename="../QScintilla/Editor.py" line="5328"/> <source>All lines have been covered.</source> <translation>Všechny řádky byly pokryty.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>There is no coverage file available.</source> <translation>Soubor s pokrytím není dostupný.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Profile Data</source> <translation>Profilovat data</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>Syntax Error</source> <translation>Chyba syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>No syntax error message available.</source> <translation>Hlášení syntaktické chyby není dostupné.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Macro Name</source> <translation>Název makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Select a macro name:</source> <translation>Vyberte název makra:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5950"/> + <location filename="../QScintilla/Editor.py" line="5951"/> <source>Load macro file</source> <translation>Načíst soubor makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Macro files (*.macro)</source> <translation>Macro soubory (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source>Error loading macro</source> <translation>Chyba při načítání makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Save macro file</source> <translation>Uložit soubor s makrem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source>Save macro</source> <translation>Uložit makro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source>Error saving macro</source> <translation>Chyba při ukládání makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Start Macro Recording</source> <translation>Spustit záznam makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Macro recording is already active. Start new?</source> <translation>Nahrávání makra již probíhá. Spustit nové?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Macro Recording</source> <translation>Záznam makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Enter name of the macro:</source> <translation>Vložte název makra:</translation> </message> @@ -9664,77 +9664,77 @@ <translation type="obsolete"><br><b>Pozor:</b> Ztratíte všechny změny pokud jej znovu otevřete.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6197"/> + <location filename="../QScintilla/Editor.py" line="6198"/> <source>File changed</source> <translation>Soubor změněn</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6516"/> + <location filename="../QScintilla/Editor.py" line="6517"/> <source>Resources</source> <translation>Zdroje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6518"/> + <location filename="../QScintilla/Editor.py" line="6519"/> <source>Add file...</source> <translation>Přidat soubor...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6520"/> + <location filename="../QScintilla/Editor.py" line="6521"/> <source>Add files...</source> <translation>Přidat soubory...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6522"/> + <location filename="../QScintilla/Editor.py" line="6523"/> <source>Add aliased file...</source> <translation>Přidat zástupce souboru...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6525"/> + <location filename="../QScintilla/Editor.py" line="6526"/> <source>Add localized resource...</source> <translation>Přidat lokalizované resource...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6529"/> + <location filename="../QScintilla/Editor.py" line="6530"/> <source>Add resource frame</source> <translation>Přidat resource frame</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6548"/> + <location filename="../QScintilla/Editor.py" line="6549"/> <source>Add file resource</source> <translation>Přidat soubor resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6564"/> + <location filename="../QScintilla/Editor.py" line="6565"/> <source>Add file resources</source> <translation>Přidat soubory resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Add aliased file resource</source> <translation>Přidat zástupce souboru resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Package Diagram</source> <translation>Diagram balíčku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Include class attributes?</source> <translation>Včetně atributů třídy?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Application Diagram</source> <translation>Diagram aplikace</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> @@ -9754,12 +9754,12 @@ <translation>Nebyl zadán forám exportu. Zrušeno....</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Imports Diagram</source> <translation>Importovat diagram</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Include imports from external modules?</source> <translation>Zahrnout importy z externích modulů?</translation> </message> @@ -9834,7 +9834,7 @@ <translation>Použít Pygments lexer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Check spelling...</source> <translation>Zatrhnout kontrolu...</translation> </message> @@ -9844,12 +9844,12 @@ <translation>Zatrhnout výběr kontroly...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6981"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add to dictionary</source> <translation>Přidat do slovníku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6983"/> + <location filename="../QScintilla/Editor.py" line="6984"/> <source>Ignore All</source> <translation>Ignorovat vše</translation> </message> @@ -9894,12 +9894,12 @@ <translation type="obsolete"><p>Soubor <b>{0}</b> již existuje.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5964"/> + <location filename="../QScintilla/Editor.py" line="5965"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s makrem <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Soubor s makrem <b>{0}</b> je poškozen.</p></translation> </message> @@ -9909,27 +9909,27 @@ <translation type="obsolete"><p>Soubor s makrem <b>{0}</b> již existuje.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>So souboru s makrem <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6187"/> + <location filename="../QScintilla/Editor.py" line="6188"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation><p>Soubor <b>{0}</b> byl změněn po té co již byl načten do eric5. Znovu načíst?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6355"/> + <location filename="../QScintilla/Editor.py" line="6356"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> není soubor.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Alias for file <b>{0}</b>:</source> <translation>Zástupce pro soubor <b>{0}</b>:</translation> </message> @@ -9969,22 +9969,22 @@ <translation type="unfinished"><p>Soubor <b>{0}</b> již existuje.</p><p>Má se přepsat?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5862"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5868"/> + <location filename="../QScintilla/Editor.py" line="5869"/> <source>Error: {0}</source> <translation type="unfinished">Chyby: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6193"/> + <location filename="../QScintilla/Editor.py" line="6194"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished"></translation> </message> @@ -10029,27 +10029,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>Warning</source> <translation type="unfinished">Varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>No warning messages available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5858"/> + <location filename="../QScintilla/Editor.py" line="5859"/> <source>Style: {0}</source> <translation type="unfinished"></translation> </message> @@ -26278,202 +26278,202 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>Process Generation Error</source> <translation type="unfinished">Chyba v procesu generování</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="332"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/> <source><tr><td><b>Parent</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="337"/> <source><tr><td><b>Tags</b></td><td>{0}</td></tr></source> <translation type="unfinished"><tr><td><b>Tagy</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="340"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/> <source><tr><td><b>Commit Message</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="346"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/> <source>empty repository</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="348"/> - <source>no revision checked out</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/> + <source>no revision checked out</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="350"/> <source><tr><td><b>Remarks</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/> <source><tr><td><b>Branch</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="361"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/> <source><tr><td><b>Bookmarks</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="369"/> <source>{0} modified</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="370"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/> <source>{0} added</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="372"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/> <source>{0} removed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="374"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="375"/> <source>{0} renamed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="376"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="377"/> <source>{0} copied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="378"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="379"/> <source>{0} deleted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="380"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="381"/> <source>{0} unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="382"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="383"/> <source>{0} ignored</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="384"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="385"/> <source>{0} unresolved</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="387"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="388"/> <source>{0} subrepos</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="390"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="391"/> <source>Merge needed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="392"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="393"/> <source>New Branch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="395"/> <source>Head is closed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="396"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="397"/> <source>No commit required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="398"/> - <source>New Branch Head</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="399"/> + <source>New Branch Head</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="400"/> <source><tr><td><b>Commit Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="404"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="405"/> <source>current</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="419"/> - <source>unknown status</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="420"/> + <source>unknown status</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="421"/> <source><tr><td><b>Update Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="425"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="426"/> <source>synched</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="429"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="430"/> <source>1 or more incoming</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="431"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="432"/> <source>{0} outgoing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="440"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="441"/> <source><tr><td><b>Remote Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="445"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="446"/> <source>empty queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="449"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="450"/> <source>{0} applied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="452"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="453"/> <source>{0} unapplied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="455"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="456"/> <source><tr><td><b>Queues Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="469"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="470"/> <source><p>No status information available.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="328"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/> <source><tr><td><b>Parent #{0}</b></td><td>{1}</td></tr></source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="406"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="407"/> <source>%n new changeset(s)<br/>Update required</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26482,7 +26482,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="410"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="411"/> <source>%n new changeset(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26491,7 +26491,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="412"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="413"/> <source>%n branch head(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26500,13 +26500,13 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="414"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="415"/> <source>{0}<br/>{1}<br/>Merge required</source> <comment>0 is changesets, 1 is branch heads</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="434"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="435"/> <source>%n incoming bookmark(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26515,7 +26515,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="437"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="438"/> <source>%n outgoing bookmark(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26524,12 +26524,12 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="460"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="461"/> <source>No files to upload</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="462"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="463"/> <source>%n file(s) to upload</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26538,7 +26538,7 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="464"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="465"/> <source><tr><td><b>Large Files</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> @@ -45208,187 +45208,187 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="348"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="361"/> <source>Push Next Patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="240"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="253"/> <source>Push the next patch onto the stack</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="243"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="256"/> <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="364"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="377"/> <source>Push All Patches</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="255"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="268"/> <source>Push all patches onto the stack</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="258"/> - <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="380"/> - <source>Push Patches</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="271"/> + <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="393"/> + <source>Push Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="284"/> <source>Push patches onto the stack</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="410"/> + <source>Pop Current Patch</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="300"/> + <source>Pop the current patch off the stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="303"/> + <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="427"/> + <source>Pop All Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="315"/> + <source>Pop all patches off the stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="318"/> + <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="443"/> + <source>Pop Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="331"/> + <source>Pop patches off the stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="334"/> + <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="460"/> + <source>Go to Patch</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="346"/> + <source>Push or pop patches until named patch is at top of stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="349"/> + <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="365"/> + <source>Push the next patch onto the stack on top of local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="368"/> + <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches on top of local changes.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="381"/> + <source>Push all patches onto the stack on top of local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> + <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches on top of local changes.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="397"/> - <source>Pop Current Patch</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="287"/> - <source>Pop the current patch off the stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="290"/> - <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> + <source>Push patches onto the stack on top of local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="400"/> + <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack on top of local changes.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="414"/> - <source>Pop All Patches</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="302"/> - <source>Pop all patches off the stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="305"/> - <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="430"/> - <source>Pop Patches</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="318"/> - <source>Pop patches off the stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="321"/> - <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack.</p></source> + <source>Pop the current patch off the stack forgetting local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="417"/> + <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches forgetting local changes.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="431"/> + <source>Pop all patches off the stack forgetting local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="434"/> + <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches forgetting local changes.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="447"/> - <source>Go to Patch</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="333"/> - <source>Push or pop patches until named patch is at top of stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="336"/> - <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="352"/> - <source>Push the next patch onto the stack on top of local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="355"/> - <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches on top of local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="368"/> - <source>Push all patches onto the stack on top of local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="371"/> - <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches on top of local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> - <source>Push patches onto the stack on top of local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="387"/> - <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack on top of local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="401"/> - <source>Pop the current patch off the stack forgetting local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="404"/> - <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches forgetting local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="418"/> - <source>Pop all patches off the stack forgetting local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="421"/> - <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches forgetting local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="434"/> <source>Pop patches off the stack forgetting local changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="437"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="450"/> <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack forgetting local changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="451"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="464"/> <source>Push or pop patches until named patch is at top of stack overwriting any local changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="455"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack overwriting any local changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="763"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="777"/> <source>Queues</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="680"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="693"/> <source>Push/Pop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="692"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="705"/> <source>Push/Pop (force)</source> <translation type="unfinished"></translation> </message> @@ -45398,262 +45398,262 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="274"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="287"/> <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="481"/> <source>Define Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="481"/> <source>Define Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="472"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="485"/> <source>Define guards for the current or a named patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="475"/> - <source><b>Define Guards</b><p>This opens a dialog to define guards for the current or a named patch.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="484"/> - <source>Drop All Guards</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="484"/> - <source>Drop All Guards...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="488"/> + <source><b>Define Guards</b><p>This opens a dialog to define guards for the current or a named patch.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="497"/> + <source>Drop All Guards</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="497"/> + <source>Drop All Guards...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="501"/> <source>Drop all guards of the current or a named patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="491"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="504"/> <source><b>Drop All Guards</b><p>This drops all guards of the current or a named patch.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="499"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="512"/> <source>List Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="499"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="512"/> <source>List Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="503"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="516"/> <source>List guards of the current or a named patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="506"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="519"/> <source><b>List Guards</b><p>This lists the guards of the current or a named patch.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="514"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="527"/> <source>List All Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="514"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="527"/> <source>List All Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="518"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="531"/> <source>List all guards of all patches</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="521"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="534"/> <source><b>List All Guards</b><p>This lists all guards of all patches.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="529"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="542"/> <source>Set Active Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="529"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="542"/> <source>Set Active Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="533"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="546"/> <source>Set the list of active guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="536"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="549"/> <source><b>Set Active Guards</b><p>This opens a dialog to set the active guards.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="544"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="557"/> <source>Deactivate Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="544"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="557"/> <source>Deactivate Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="548"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="561"/> <source>Deactivate all active guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="551"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="564"/> <source><b>Deactivate Guards</b><p>This deactivates all active guards.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="559"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="572"/> <source>Identify Active Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="559"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="572"/> <source>Identify Active Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="563"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="576"/> <source>Show a list of active guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="566"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="579"/> <source><b>Identify Active Guards</b><p>This opens a dialog showing a list of active guards.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="704"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="717"/> <source>Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="578"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="591"/> <source>Create Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="582"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="595"/> <source>Create a new patch queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="585"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="598"/> <source><b>Create Queue</b><p>This creates a new patch queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="593"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="606"/> <source>Rename Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="597"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="610"/> <source>Rename the active patch queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="600"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="613"/> <source><b>Rename Queue</b><p>This renames the active patch queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="608"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="621"/> <source>Delete Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="612"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="625"/> <source>Delete the reference to a patch queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="615"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="628"/> <source><b>Delete Queue</b><p>This deletes the reference to a patch queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="623"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="636"/> <source>Purge Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="627"/> - <source>Delete the reference to a patch queue and remove the patch directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="631"/> - <source><b>Purge Queue</b><p>This deletes the reference to a patch queue and removes the patch directory.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="640"/> - <source>Activate Queue</source> + <source>Delete the reference to a patch queue and remove the patch directory</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="644"/> + <source><b>Purge Queue</b><p>This deletes the reference to a patch queue and removes the patch directory.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="653"/> + <source>Activate Queue</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="657"/> <source>Set the active queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="647"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="660"/> <source><b>Activate Queue</b><p>This sets the active queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="655"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="668"/> <source>List Queues</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="655"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="668"/> <source>List Queues...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="659"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="672"/> <source>List the available queues</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="662"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="675"/> <source><b>List Queues</b><p>This opens a dialog showing all available queues.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="717"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="730"/> <source>Queue Management</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="819"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="833"/> <source>The project should be reread. Do this now?</source> <translation type="unfinished">Projekt bude znovu načten. Má se provést?</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="819"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="833"/> <source>Changing Applied Patches</source> <translation type="unfinished"></translation> </message> @@ -45712,6 +45712,26 @@ <source><b>Show Status</b><p>This shows the status of the queue repository.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="225"/> + <source>Show Summary</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="225"/> + <source>Show summary...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="229"/> + <source>Show summary information of the queue repository</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="232"/> + <source><b>Show summary</b><p>This shows some summary information of the queue repository.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Rebase</name>
--- a/i18n/eric5_de.ts Tue Mar 18 18:51:09 2014 +0100 +++ b/i18n/eric5_de.ts Tue Mar 18 18:55:25 2014 +0100 @@ -8852,7 +8852,7 @@ <translation>Drucken abgebrochen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6197"/> + <location filename="../QScintilla/Editor.py" line="6198"/> <source>File changed</source> <translation>Datei geändert</translation> </message> @@ -8917,57 +8917,57 @@ <translation>Zurück zum letzten gesichert Zustand</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Macro Name</source> <translation>Makro Name</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Select a macro name:</source> <translation>Wähle einen Makro Namen:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Macro files (*.macro)</source> <translation>Makrodateien (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5950"/> + <location filename="../QScintilla/Editor.py" line="5951"/> <source>Load macro file</source> <translation>Lade Makrodatei</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source>Error loading macro</source> <translation>Fehler beim Makro Laden</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Save macro file</source> <translation>Makrodatei schreiben</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source>Save macro</source> <translation>Makro speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source>Error saving macro</source> <translation>Fehler beim Makro speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Start Macro Recording</source> <translation>Makroaufzeichnung starten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Macro Recording</source> <translation>Makroaufzeichnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Enter name of the macro:</source> <translation>Gib einen Namen für das Makro ein:</translation> </message> @@ -9027,32 +9027,32 @@ <translation>Haltepunkt bearbeiten...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4882"/> + <location filename="../QScintilla/Editor.py" line="4883"/> <source>Enable breakpoint</source> <translation>Haltepunkt aktivieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4885"/> + <location filename="../QScintilla/Editor.py" line="4886"/> <source>Disable breakpoint</source> <translation>Haltepunkt deaktivieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Please select a coverage file</source> <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Profile Data</source> <translation>Profildaten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Please select a profile file</source> <translation>Bitte wählen Sie eine Datei mit Profildaten</translation> </message> @@ -9097,7 +9097,7 @@ <translation>Autom. Speicherung aktiv</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> @@ -9107,12 +9107,12 @@ <translation>Zeige Syntaxfehlermeldung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>Syntax Error</source> <translation>Syntaxfehler</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>No syntax error message available.</source> <translation>Keine Syntaxfehlermeldung verfügbar.</translation> </message> @@ -9142,17 +9142,17 @@ <translation>Vorige nichtabgedeckte Zeile</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>Show Code Coverage Annotations</source> <translation>Zeilen ohne Abdeckung Markieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5327"/> + <location filename="../QScintilla/Editor.py" line="5328"/> <source>All lines have been covered.</source> <translation>Alle Zeilen sind abgedeckt.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>There is no coverage file available.</source> <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation> </message> @@ -9162,22 +9162,22 @@ <translation><p>Die Datei <b>{0}</b> enthält ungesicherte Änderungen.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5964"/> + <location filename="../QScintilla/Editor.py" line="5965"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Die Makrodatei <b>{0}</b> kann nicht gelesen werden.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Die Makrodatei <b>{0}</b> ist zerstört.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Die Makrodatei <b>{0}</b> kann nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> @@ -9217,82 +9217,82 @@ <translation>Keine Sprache</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6355"/> + <location filename="../QScintilla/Editor.py" line="6356"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6516"/> + <location filename="../QScintilla/Editor.py" line="6517"/> <source>Resources</source> <translation>Ressourcen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6518"/> + <location filename="../QScintilla/Editor.py" line="6519"/> <source>Add file...</source> <translation>Datei hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6520"/> + <location filename="../QScintilla/Editor.py" line="6521"/> <source>Add files...</source> <translation>Dateien hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6522"/> + <location filename="../QScintilla/Editor.py" line="6523"/> <source>Add aliased file...</source> <translation>Aliased-Datei hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6525"/> + <location filename="../QScintilla/Editor.py" line="6526"/> <source>Add localized resource...</source> <translation>Lokalisierte Ressource hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6548"/> + <location filename="../QScintilla/Editor.py" line="6549"/> <source>Add file resource</source> <translation>Dateiressource hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6564"/> + <location filename="../QScintilla/Editor.py" line="6565"/> <source>Add file resources</source> <translation>Dateiressourcen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Add aliased file resource</source> <translation>Aliased-Dateiressourcen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Alias for file <b>{0}</b>:</source> <translation>Alias für Datei <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Package Diagram</source> <translation>Package-Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Include class attributes?</source> <translation>Klassenattribute anzeigen?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6529"/> + <location filename="../QScintilla/Editor.py" line="6530"/> <source>Add resource frame</source> <translation>Ressourcenrahmen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Macro recording is already active. Start new?</source> <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation> </message> @@ -9347,12 +9347,12 @@ <translation>Kein Exportformat angegeben. Abbruch...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Imports Diagram</source> <translation>Imports Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Include imports from external modules?</source> <translation>Imports externer Module anzeigen?</translation> </message> @@ -9432,7 +9432,7 @@ <translation>Wähle den anzuwendenden Pygments Lexer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Check spelling...</source> <translation>Rechtschreibprüfung...</translation> </message> @@ -9442,12 +9442,12 @@ <translation>Rechtschreibprüfung für Auswahl...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6981"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add to dictionary</source> <translation>Zum Wörterbuch hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6983"/> + <location filename="../QScintilla/Editor.py" line="6984"/> <source>Ignore All</source> <translation>Alle ignorieren</translation> </message> @@ -9467,7 +9467,7 @@ <translation><p>Die Datei <b>{0}</b> konnte nicht gesichert werden.<br/>Grund: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6187"/> + <location filename="../QScintilla/Editor.py" line="6188"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation><p>Die Datei <b>{0}</b> wurde geändert, während sie in eric5 geöffnet war. Neu einlesen?</p></translation> </message> @@ -9497,22 +9497,22 @@ <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Makrodatei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5862"/> <source>Warning: {0}</source> <translation>Warnung: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5868"/> + <location filename="../QScintilla/Editor.py" line="5869"/> <source>Error: {0}</source> <translation>Fehler: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6193"/> + <location filename="../QScintilla/Editor.py" line="6194"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Warnung:</b> Vorgenommenen Änderungen gehen beim neu einlesen verloren.</translation> </message> @@ -9557,27 +9557,27 @@ <translation>Vorherige Änderung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>Sort Lines</source> <translation>Zeilen sortieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>The selection contains illegal data for a numerical sort.</source> <translation>Die Auswahl enthält für eine numerische Sortierung ungültige Daten.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>Warning</source> <translation>Warnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>No warning messages available.</source> <translation>Keine Warnmeldungen verfügbar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5858"/> + <location filename="../QScintilla/Editor.py" line="5859"/> <source>Style: {0}</source> <translation>Stil: {0}</translation> </message> @@ -25202,202 +25202,202 @@ <translation>Drücken, um die Informationsanzeige zu erneuern</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="332"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/> <source><tr><td><b>Parent</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Vorgänger</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="337"/> <source><tr><td><b>Tags</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Marken</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="340"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/> <source><tr><td><b>Commit Message</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Änderungsbeschreibung</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="346"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/> <source>empty repository</source> <translation>leeres Repository</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="348"/> - <source>no revision checked out</source> - <translation>keine Revision ausgecheckt</translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/> + <source>no revision checked out</source> + <translation>keine Revision ausgecheckt</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="350"/> <source><tr><td><b>Remarks</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Anmerkungen</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/> <source><tr><td><b>Branch</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Zweig</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="361"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/> <source><tr><td><b>Bookmarks</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Lesezeichen</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="369"/> <source>{0} modified</source> <translation>{0} modifiziert</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="370"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/> <source>{0} added</source> <translation>{0} hinzugefügt</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="372"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/> <source>{0} removed</source> <translation>{0} entfernt</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="374"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="375"/> <source>{0} renamed</source> <translation>{0} umbenannt</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="376"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="377"/> <source>{0} copied</source> <translation>{0} kopiert</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="378"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="379"/> <source>{0} deleted</source> <translation>{0} gelöscht</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="380"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="381"/> <source>{0} unknown</source> <translation>{0} unbekannt</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="382"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="383"/> <source>{0} ignored</source> <translation>{0} ignoriert</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="384"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="385"/> <source>{0} unresolved</source> <translation>{0} nicht aufgelöst</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="387"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="388"/> <source>{0} subrepos</source> <translation>{0} Subrepositories</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="390"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="391"/> <source>Merge needed</source> <translation>Zusammenführung notwendig</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="392"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="393"/> <source>New Branch</source> <translation>Neuer Zweig</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="395"/> <source>Head is closed</source> <translation>Kopf ist geschlossen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="396"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="397"/> <source>No commit required</source> <translation>Kein Einpflegen erforderlich</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="398"/> - <source>New Branch Head</source> - <translation>Neuer Zweigkopf</translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="399"/> + <source>New Branch Head</source> + <translation>Neuer Zweigkopf</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="400"/> <source><tr><td><b>Commit Status</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Änderungsstatus</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="404"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="405"/> <source>current</source> <translation>aktuell</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="419"/> - <source>unknown status</source> - <translation>unbekannter Status</translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="420"/> + <source>unknown status</source> + <translation>unbekannter Status</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="421"/> <source><tr><td><b>Update Status</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Aktualisierungsstatus</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="425"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="426"/> <source>synched</source> <translation>synchron</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="429"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="430"/> <source>1 or more incoming</source> <translation>1 oder mehr eingehende</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="431"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="432"/> <source>{0} outgoing</source> <translation>{0} ausgehende</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="440"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="441"/> <source><tr><td><b>Remote Status</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Entfernter Status</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="445"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="446"/> <source>empty queue</source> <translation>leere Patchschlange</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="449"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="450"/> <source>{0} applied</source> <translation>{0} angewendet</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="452"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="453"/> <source>{0} unapplied</source> <translation>{0} nicht angewendet</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="455"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="456"/> <source><tr><td><b>Queues Status</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Patchschlangenstatus</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="469"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="470"/> <source><p>No status information available.</p></source> <translation><p>Es sind keine Statusinformationen vorhanden.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="328"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/> <source><tr><td><b>Parent #{0}</b></td><td>{1}</td></tr></source> <translation><tr><td><b>Vorgänger #{0}</b></td><td>{1}</td></tr></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="406"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="407"/> <source>%n new changeset(s)<br/>Update required</source> <translation> <numerusform>1 neuer Änderungssatz<br/>Aktualisierung erforderlich</numerusform> @@ -25405,7 +25405,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="410"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="411"/> <source>%n new changeset(s)</source> <translation> <numerusform>1 neuer Änderungssatz</numerusform> @@ -25413,7 +25413,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="412"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="413"/> <source>%n branch head(s)</source> <translation> <numerusform>1 Zweigkopf</numerusform> @@ -25421,13 +25421,13 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="414"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="415"/> <source>{0}<br/>{1}<br/>Merge required</source> <comment>0 is changesets, 1 is branch heads</comment> <translation>{0}<br/>{1}<br/>Zusammenführung erforderlich</translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="434"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="435"/> <source>%n incoming bookmark(s)</source> <translation> <numerusform>1 eingehendes Lesezeichen</numerusform> @@ -25435,7 +25435,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="437"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="438"/> <source>%n outgoing bookmark(s)</source> <translation> <numerusform>1 ausgehendes Lesezeichen</numerusform> @@ -25443,12 +25443,12 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="460"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="461"/> <source>No files to upload</source> <translation>Keine Dateien hochzuladen</translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="462"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="463"/> <source>%n file(s) to upload</source> <translation> <numerusform>%n Datei hochzuladen</numerusform> @@ -25456,7 +25456,7 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="464"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="465"/> <source><tr><td><b>Large Files</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Binärriesen</b></td><td>{0}</td></tr></translation> </message> @@ -42985,187 +42985,187 @@ <translation><b>Patches zusammenfügen</b><p>Dies führt nicht angewandte Patches mit dem aktuellen Patch zusammen.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="348"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="361"/> <source>Push Next Patch</source> <translation>Nächsten Patch pushen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="240"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="253"/> <source>Push the next patch onto the stack</source> <translation>Schiebt den nächsten Patch auf den Stack</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="243"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="256"/> <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches.</p></source> <translation><b>Nächsten Patch pushen</b><p>Dies schiebt den nächsten Patch auf den Stapel angewandter Patches.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="364"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="377"/> <source>Push All Patches</source> <translation>Alle Patches pushen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="255"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="268"/> <source>Push all patches onto the stack</source> <translation>Schiebt alle Patches auf den Stack</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="258"/> - <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> - <translation><b>Alle Patches pushen</b><p>Dies schiebt alle Patches auf den Stapel angewandter Patches.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="380"/> - <source>Push Patches</source> - <translation>Patches pushen</translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="271"/> + <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> + <translation><b>Alle Patches pushen</b><p>Dies schiebt alle Patches auf den Stapel angewandter Patches.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="393"/> + <source>Push Patches</source> + <translation>Patches pushen</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="284"/> <source>Push patches onto the stack</source> <translation>Schiebt Patches auf den Stack</translation> </message> <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="410"/> + <source>Pop Current Patch</source> + <translation>Aktuellen Patch popen</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="300"/> + <source>Pop the current patch off the stack</source> + <translation>Holt den aktuellen Patch vom Stapel</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="303"/> + <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> + <translation><b>Aktuellen Patch popen</b><p>Dies holt den aktuellen Patch vom Stapel angewandter Patches.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="427"/> + <source>Pop All Patches</source> + <translation>Alle Patches popen</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="315"/> + <source>Pop all patches off the stack</source> + <translation>Holt allen Patches vom Stapel</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="318"/> + <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> + <translation><b>Alle Patches popen</b><p>Dies holt alle Patches vom Stapel angewandter Patches.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="443"/> + <source>Pop Patches</source> + <translation>Patches popen</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="331"/> + <source>Pop patches off the stack</source> + <translation>Holt Patches vom Stapel</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="334"/> + <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack.</p></source> + <translation><b>Patches popen</b><p>Dies holt Patches vom Stapel angewandter Patches bis ein benannter Patch zuoberst liegt.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="460"/> + <source>Go to Patch</source> + <translation>Zu Patch wechseln</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="346"/> + <source>Push or pop patches until named patch is at top of stack</source> + <translation>Schiebt Patches auf den Stapel oder holt sie herunter, bis ein benannter Patch zuoberst liegt</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="349"/> + <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack.</p></source> + <translation><b>Zu Patch wechseln</b><p>Dies schiebt Patches auf den Stapel oder holt sie herunter, bis ein benannter Patch zuoberst liegt.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="365"/> + <source>Push the next patch onto the stack on top of local changes</source> + <translation>Schiebt den nächsten Patch auf den Stack unabhängig von lokalen Änderungen</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="368"/> + <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches on top of local changes.</p></source> + <translation><b>Nächsten Patch pushen</b><p>Dies schiebt den nächsten Patch auf den Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="381"/> + <source>Push all patches onto the stack on top of local changes</source> + <translation>Schiebt alle Patches auf den Stack unabhängig von lokalen Änderungen</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> + <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches on top of local changes.</p></source> + <translation><b>Alle Patches pushen</b><p>Dies schiebt alle Patches auf den Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> + </message> + <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="397"/> - <source>Pop Current Patch</source> - <translation>Aktuellen Patch popen</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="287"/> - <source>Pop the current patch off the stack</source> - <translation>Holt den aktuellen Patch vom Stapel</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="290"/> - <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> - <translation><b>Aktuellen Patch popen</b><p>Dies holt den aktuellen Patch vom Stapel angewandter Patches.</p></translation> + <source>Push patches onto the stack on top of local changes</source> + <translation>Schiebt Patches auf den Stack unabhängig von lokalen Änderungen</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="400"/> + <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack on top of local changes.</p></source> + <translation><b>Patches pushen</b><p>Dies schiebt alle Patches auf den Stapel angewandter Patches bis ein benannter Patch zuoberst liegt unabhängig von lokalen Änderungen.</p></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="414"/> - <source>Pop All Patches</source> - <translation>Alle Patches popen</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="302"/> - <source>Pop all patches off the stack</source> - <translation>Holt allen Patches vom Stapel</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="305"/> - <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> - <translation><b>Alle Patches popen</b><p>Dies holt alle Patches vom Stapel angewandter Patches.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="430"/> - <source>Pop Patches</source> - <translation>Patches popen</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="318"/> - <source>Pop patches off the stack</source> - <translation>Holt Patches vom Stapel</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="321"/> - <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack.</p></source> - <translation><b>Patches popen</b><p>Dies holt Patches vom Stapel angewandter Patches bis ein benannter Patch zuoberst liegt.</p></translation> + <source>Pop the current patch off the stack forgetting local changes</source> + <translation>Holt den aktuellen Patch vom Stapel unabhängig von lokalen Änderungen</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="417"/> + <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches forgetting local changes.</p></source> + <translation><b>Aktuellen Patch popen</b><p>Dies holt den aktuellen Patch vom Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="431"/> + <source>Pop all patches off the stack forgetting local changes</source> + <translation>Holt allen Patches vom Stapel unabhängig von lokalen Änderungen</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="434"/> + <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches forgetting local changes.</p></source> + <translation><b>Alle Patches popen</b><p>Dies holt alle Patches vom Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="447"/> - <source>Go to Patch</source> - <translation>Zu Patch wechseln</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="333"/> - <source>Push or pop patches until named patch is at top of stack</source> - <translation>Schiebt Patches auf den Stapel oder holt sie herunter, bis ein benannter Patch zuoberst liegt</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="336"/> - <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack.</p></source> - <translation><b>Zu Patch wechseln</b><p>Dies schiebt Patches auf den Stapel oder holt sie herunter, bis ein benannter Patch zuoberst liegt.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="352"/> - <source>Push the next patch onto the stack on top of local changes</source> - <translation>Schiebt den nächsten Patch auf den Stack unabhängig von lokalen Änderungen</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="355"/> - <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches on top of local changes.</p></source> - <translation><b>Nächsten Patch pushen</b><p>Dies schiebt den nächsten Patch auf den Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="368"/> - <source>Push all patches onto the stack on top of local changes</source> - <translation>Schiebt alle Patches auf den Stack unabhängig von lokalen Änderungen</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="371"/> - <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches on top of local changes.</p></source> - <translation><b>Alle Patches pushen</b><p>Dies schiebt alle Patches auf den Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> - <source>Push patches onto the stack on top of local changes</source> - <translation>Schiebt Patches auf den Stack unabhängig von lokalen Änderungen</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="387"/> - <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack on top of local changes.</p></source> - <translation><b>Patches pushen</b><p>Dies schiebt alle Patches auf den Stapel angewandter Patches bis ein benannter Patch zuoberst liegt unabhängig von lokalen Änderungen.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="401"/> - <source>Pop the current patch off the stack forgetting local changes</source> - <translation>Holt den aktuellen Patch vom Stapel unabhängig von lokalen Änderungen</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="404"/> - <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches forgetting local changes.</p></source> - <translation><b>Aktuellen Patch popen</b><p>Dies holt den aktuellen Patch vom Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="418"/> - <source>Pop all patches off the stack forgetting local changes</source> - <translation>Holt allen Patches vom Stapel unabhängig von lokalen Änderungen</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="421"/> - <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches forgetting local changes.</p></source> - <translation><b>Alle Patches popen</b><p>Dies holt alle Patches vom Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="434"/> <source>Pop patches off the stack forgetting local changes</source> <translation>Holt Patches vom Stapel unabhängig von lokalen Änderungen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="437"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="450"/> <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack forgetting local changes.</p></source> <translation><b>Patches popen</b><p>Dies holt Patches vom Stapel angewandter Patches bis ein benannter Patch zuoberst liegt unabhängig von lokalen Änderungen.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="451"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="464"/> <source>Push or pop patches until named patch is at top of stack overwriting any local changes</source> <translation>Schiebt Patches auf den Stapel oder holt sie herunter, bis ein benannter Patch zuoberst liegt unabhängig von lokalen Änderungen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="455"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack overwriting any local changes.</p></source> <translation><b>Zu Patch wechseln</b><p>Dies schiebt Patches auf den Stapel oder holt sie herunter bis ein benannter Patch zuoberst liegt unabhängig von lokalen Änderungen.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="763"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="777"/> <source>Queues</source> <translation>Patchschlangen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="680"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="693"/> <source>Push/Pop</source> <translation>Push/Pop</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="692"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="705"/> <source>Push/Pop (force)</source> <translation>Push/Pop (force)</translation> </message> @@ -43175,262 +43175,262 @@ <translation><b>Patches auflisten</b><p>Dies listet alle angewandten und nicht angewandten Patches auf.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="274"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="287"/> <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack.</p></source> <translation><b>Patches pushen</b><p>Dies schiebt Patches auf den Stapel angewandter Patches bis ein benannter Patch zuoberst liegt.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="481"/> <source>Define Guards</source> <translation>Guards definieren</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="481"/> <source>Define Guards...</source> <translation>Guards definieren...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="472"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="485"/> <source>Define guards for the current or a named patch</source> <translation>Guards für den aktuellen oder benannten Patch definieren</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="475"/> - <source><b>Define Guards</b><p>This opens a dialog to define guards for the current or a named patch.</p></source> - <translation><b>Guards definieren</b><p>Dies öffnet einen Dialog zur Definition von Guards für den aktuellen oder einen benannten Patch.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="484"/> - <source>Drop All Guards</source> - <translation>Alle Guards löschen</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="484"/> - <source>Drop All Guards...</source> - <translation>Alle Guards löschen...</translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="488"/> + <source><b>Define Guards</b><p>This opens a dialog to define guards for the current or a named patch.</p></source> + <translation><b>Guards definieren</b><p>Dies öffnet einen Dialog zur Definition von Guards für den aktuellen oder einen benannten Patch.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="497"/> + <source>Drop All Guards</source> + <translation>Alle Guards löschen</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="497"/> + <source>Drop All Guards...</source> + <translation>Alle Guards löschen...</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="501"/> <source>Drop all guards of the current or a named patch</source> <translation>Alle Guards des aktuellen oder eines benannten Patches löschen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="491"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="504"/> <source><b>Drop All Guards</b><p>This drops all guards of the current or a named patch.</p></source> <translation><b>Alle Guards löschen</b><p>Dies löscht alle Guards des aktuellen oder eines benannten Patches.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="499"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="512"/> <source>List Guards</source> <translation>Guards anzeigen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="499"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="512"/> <source>List Guards...</source> <translation>Guards anzeigen...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="503"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="516"/> <source>List guards of the current or a named patch</source> <translation>Zeigt Guards des aktuellen oder eines benannten Patches an</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="506"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="519"/> <source><b>List Guards</b><p>This lists the guards of the current or a named patch.</p></source> <translation><b>Guards anzeigen</b><p>Dies zeigt Guards des aktuellen oder eines benannten Patches an.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="514"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="527"/> <source>List All Guards</source> <translation>Alle Guards anzeigen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="514"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="527"/> <source>List All Guards...</source> <translation>Alle Guards anzeigen...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="518"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="531"/> <source>List all guards of all patches</source> <translation>Zeigt alle Guards aller Patches an</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="521"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="534"/> <source><b>List All Guards</b><p>This lists all guards of all patches.</p></source> <translation><b>Alle Guards anzeigen</b><p>Dies zeigt alle Guards aller Patches an.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="529"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="542"/> <source>Set Active Guards</source> <translation>Aktive Guards setzen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="529"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="542"/> <source>Set Active Guards...</source> <translation>Aktive Guards setzen...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="533"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="546"/> <source>Set the list of active guards</source> <translation>Setzt die Liste aktiver Guards</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="536"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="549"/> <source><b>Set Active Guards</b><p>This opens a dialog to set the active guards.</p></source> <translation><b>Aktive Guards setzen</b><p>Dies öffnet einen Dialog, um die Liste aktiver Guards zu setzen.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="544"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="557"/> <source>Deactivate Guards</source> <translation>Guards deaktivieren</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="544"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="557"/> <source>Deactivate Guards...</source> <translation>Guards deaktivieren...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="548"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="561"/> <source>Deactivate all active guards</source> <translation>Alle Guards deaktivieren</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="551"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="564"/> <source><b>Deactivate Guards</b><p>This deactivates all active guards.</p></source> <translation><b>Guards deaktivieren</b><p>Dies deaktiviert alle Guards.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="559"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="572"/> <source>Identify Active Guards</source> <translation>Aktive Guards anzeigen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="559"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="572"/> <source>Identify Active Guards...</source> <translation>Aktive Guards anzeigen...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="563"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="576"/> <source>Show a list of active guards</source> <translation>Zeigt eine Liste aktiver Guards</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="566"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="579"/> <source><b>Identify Active Guards</b><p>This opens a dialog showing a list of active guards.</p></source> <translation><b>Aktive Guards anzeigen</b><p>Dies öffnet einen Dialog zur Anzeige einer Liste aktiver Guards.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="704"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="717"/> <source>Guards</source> <translation>Guards</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="578"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="591"/> <source>Create Queue</source> <translation>Patchschlange anlegen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="582"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="595"/> <source>Create a new patch queue</source> <translation>Erzeugt eine neue Patchschlange</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="585"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="598"/> <source><b>Create Queue</b><p>This creates a new patch queue.</p></source> <translation><b>Patchschlange anlegen</b><p>Dies erzeugt eine neue Patchschlange.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="593"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="606"/> <source>Rename Queue</source> <translation>Patchschlange umbenennen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="597"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="610"/> <source>Rename the active patch queue</source> <translation>Benennt die aktive Patchschlange um</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="600"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="613"/> <source><b>Rename Queue</b><p>This renames the active patch queue.</p></source> <translation><b>Patchschlange umbenennen</b><p>Dies benennt die aktive Patchschlange um.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="608"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="621"/> <source>Delete Queue</source> <translation>Patchschlange löschen</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="612"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="625"/> <source>Delete the reference to a patch queue</source> <translation>Löscht die Referenz auf eine Patchschlange</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="615"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="628"/> <source><b>Delete Queue</b><p>This deletes the reference to a patch queue.</p></source> <translation><b>Patchschlange löschen</b><p>Dies löscht die Referenz auf eine Patchschlange.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="623"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="636"/> <source>Purge Queue</source> <translation>Patchschlange säubern</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="627"/> - <source>Delete the reference to a patch queue and remove the patch directory</source> - <translation>Löscht die Referenz auf eine Patchschlange und entfernt das Patchverzeichnis</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="631"/> - <source><b>Purge Queue</b><p>This deletes the reference to a patch queue and removes the patch directory.</p></source> - <translation><b>Patchschlange säubern</b><p>Dies löscht die Referenz auf eine Patchschlange und entfernt das Patchverzeichnis.</p></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="640"/> - <source>Activate Queue</source> - <translation>Patchschlange aktivieren</translation> + <source>Delete the reference to a patch queue and remove the patch directory</source> + <translation>Löscht die Referenz auf eine Patchschlange und entfernt das Patchverzeichnis</translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="644"/> + <source><b>Purge Queue</b><p>This deletes the reference to a patch queue and removes the patch directory.</p></source> + <translation><b>Patchschlange säubern</b><p>Dies löscht die Referenz auf eine Patchschlange und entfernt das Patchverzeichnis.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="653"/> + <source>Activate Queue</source> + <translation>Patchschlange aktivieren</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="657"/> <source>Set the active queue</source> <translation>Setzt die aktive Patchschlange</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="647"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="660"/> <source><b>Activate Queue</b><p>This sets the active queue.</p></source> <translation><b>Patchschlange aktivieren</b><p>Dies setzt die aktive Patchschlange.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="655"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="668"/> <source>List Queues</source> <translation>Patchschlangen auflisten</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="655"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="668"/> <source>List Queues...</source> <translation>Patchschlangen auflisten...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="659"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="672"/> <source>List the available queues</source> <translation>Listet die verfügbaren Patchschlangen auf</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="662"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="675"/> <source><b>List Queues</b><p>This opens a dialog showing all available queues.</p></source> <translation><b>Patchschlangen auflisten</b><p>Dies öffnet einen Dialog zur Anzeige aller verfügbaren Patchschlangen.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="717"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="730"/> <source>Queue Management</source> <translation>Patchschlangenverwaltung</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="819"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="833"/> <source>The project should be reread. Do this now?</source> <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="819"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="833"/> <source>Changing Applied Patches</source> <translation>Angewandte Patches ändern</translation> </message> @@ -43489,6 +43489,26 @@ <source><b>Show Status</b><p>This shows the status of the queue repository.</p></source> <translation><b>Status anzeigen</b><p>Dies zeigt den Status des Patchschlangenrepository an.</p></translation> </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="225"/> + <source>Show Summary</source> + <translation>Übersichtsinformationen anzeigen</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="225"/> + <source>Show summary...</source> + <translation>Übersichtsinformationen anzeigen...</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="229"/> + <source>Show summary information of the queue repository</source> + <translation>Zeige Übersichtsinformationen des Patchschlangenrepository an</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="232"/> + <source><b>Show summary</b><p>This shows some summary information of the queue repository.</p></source> + <translation><b>Übersichtsinformationen anzeigen</b><p>Dies zeigt Übersichtsinformationen des Patchschlangenrepository an.</p></translation> + </message> </context> <context> <name>Rebase</name>
--- a/i18n/eric5_en.ts Tue Mar 18 18:51:09 2014 +0100 +++ b/i18n/eric5_en.ts Tue Mar 18 18:55:25 2014 +0100 @@ -7074,9 +7074,6 @@ </message> </context> <context> - <name>DownloadDialog</name> -</context> -<context> <name>DownloadItem</name> <message> <location filename="../Helpviewer/Download/DownloadItem.ui" line="26"/> @@ -8717,7 +8714,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Check spelling...</source> <translation type="unfinished"></translation> </message> @@ -8957,7 +8954,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4882"/> + <location filename="../QScintilla/Editor.py" line="4883"/> <source>Enable breakpoint</source> <translation type="unfinished"></translation> </message> @@ -9142,262 +9139,262 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4885"/> + <location filename="../QScintilla/Editor.py" line="4886"/> <source>Disable breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>Show Code Coverage Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5327"/> + <location filename="../QScintilla/Editor.py" line="5328"/> <source>All lines have been covered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>There is no coverage file available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Please select a profile file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>Syntax Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>No syntax error message available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Macro Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Select a macro name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5950"/> + <location filename="../QScintilla/Editor.py" line="5951"/> <source>Load macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Macro files (*.macro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source>Error loading macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5964"/> + <location filename="../QScintilla/Editor.py" line="5965"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Save macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source>Save macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source>Error saving macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Start Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Macro recording is already active. Start new?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Enter name of the macro:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6187"/> + <location filename="../QScintilla/Editor.py" line="6188"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6197"/> + <location filename="../QScintilla/Editor.py" line="6198"/> <source>File changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6355"/> + <location filename="../QScintilla/Editor.py" line="6356"/> <source>{0} (ro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6516"/> + <location filename="../QScintilla/Editor.py" line="6517"/> <source>Resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6518"/> + <location filename="../QScintilla/Editor.py" line="6519"/> <source>Add file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6520"/> + <location filename="../QScintilla/Editor.py" line="6521"/> <source>Add files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6522"/> + <location filename="../QScintilla/Editor.py" line="6523"/> <source>Add aliased file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6525"/> + <location filename="../QScintilla/Editor.py" line="6526"/> <source>Add localized resource...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6529"/> + <location filename="../QScintilla/Editor.py" line="6530"/> <source>Add resource frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6548"/> + <location filename="../QScintilla/Editor.py" line="6549"/> <source>Add file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6564"/> + <location filename="../QScintilla/Editor.py" line="6565"/> <source>Add file resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Add aliased file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Package Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Include class attributes?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Imports Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Include imports from external modules?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Include module names?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6981"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add to dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6983"/> + <location filename="../QScintilla/Editor.py" line="6984"/> <source>Ignore All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5862"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5868"/> + <location filename="../QScintilla/Editor.py" line="5869"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6193"/> + <location filename="../QScintilla/Editor.py" line="6194"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished"></translation> </message> @@ -9442,27 +9439,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>Warning</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>No warning messages available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5858"/> + <location filename="../QScintilla/Editor.py" line="5859"/> <source>Style: {0}</source> <translation type="unfinished"></translation> </message> @@ -25013,202 +25010,202 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>Process Generation Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="332"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/> <source><tr><td><b>Parent</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="337"/> <source><tr><td><b>Tags</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="340"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/> <source><tr><td><b>Commit Message</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="346"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/> <source>empty repository</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="348"/> - <source>no revision checked out</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/> + <source>no revision checked out</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="350"/> <source><tr><td><b>Remarks</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/> <source><tr><td><b>Branch</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="361"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/> <source><tr><td><b>Bookmarks</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="369"/> <source>{0} modified</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="370"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/> <source>{0} added</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="372"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/> <source>{0} removed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="374"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="375"/> <source>{0} renamed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="376"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="377"/> <source>{0} copied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="378"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="379"/> <source>{0} deleted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="380"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="381"/> <source>{0} unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="382"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="383"/> <source>{0} ignored</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="384"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="385"/> <source>{0} unresolved</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="387"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="388"/> <source>{0} subrepos</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="390"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="391"/> <source>Merge needed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="392"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="393"/> <source>New Branch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="395"/> <source>Head is closed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="396"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="397"/> <source>No commit required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="398"/> - <source>New Branch Head</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="399"/> + <source>New Branch Head</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="400"/> <source><tr><td><b>Commit Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="404"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="405"/> <source>current</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="419"/> - <source>unknown status</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="420"/> + <source>unknown status</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="421"/> <source><tr><td><b>Update Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="425"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="426"/> <source>synched</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="429"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="430"/> <source>1 or more incoming</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="431"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="432"/> <source>{0} outgoing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="440"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="441"/> <source><tr><td><b>Remote Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="445"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="446"/> <source>empty queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="449"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="450"/> <source>{0} applied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="452"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="453"/> <source>{0} unapplied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="455"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="456"/> <source><tr><td><b>Queues Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="469"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="470"/> <source><p>No status information available.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="328"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/> <source><tr><td><b>Parent #{0}</b></td><td>{1}</td></tr></source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="406"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="407"/> <source>%n new changeset(s)<br/>Update required</source> <translation> <numerusform>one new changeset<br/>Update required</numerusform> @@ -25216,7 +25213,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="410"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="411"/> <source>%n new changeset(s)</source> <translation> <numerusform>one new changesets</numerusform> @@ -25224,7 +25221,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="412"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="413"/> <source>%n branch head(s)</source> <translation> <numerusform>one branch head</numerusform> @@ -25232,13 +25229,13 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="414"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="415"/> <source>{0}<br/>{1}<br/>Merge required</source> <comment>0 is changesets, 1 is branch heads</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="434"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="435"/> <source>%n incoming bookmark(s)</source> <translation> <numerusform>one incoming bookmark</numerusform> @@ -25246,7 +25243,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="437"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="438"/> <source>%n outgoing bookmark(s)</source> <translation> <numerusform>one outgoing bookmark</numerusform> @@ -25254,12 +25251,12 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="460"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="461"/> <source>No files to upload</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="462"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="463"/> <source>%n file(s) to upload</source> <translation> <numerusform>%n file to upload</numerusform> @@ -25267,7 +25264,7 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="464"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="465"/> <source><tr><td><b>Large Files</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> @@ -42587,187 +42584,187 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="348"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="361"/> <source>Push Next Patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="240"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="253"/> <source>Push the next patch onto the stack</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="243"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="256"/> <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="364"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="377"/> <source>Push All Patches</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="255"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="268"/> <source>Push all patches onto the stack</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="258"/> - <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="380"/> - <source>Push Patches</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="271"/> + <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="393"/> + <source>Push Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="284"/> <source>Push patches onto the stack</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="410"/> + <source>Pop Current Patch</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="300"/> + <source>Pop the current patch off the stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="303"/> + <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="427"/> + <source>Pop All Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="315"/> + <source>Pop all patches off the stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="318"/> + <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="443"/> + <source>Pop Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="331"/> + <source>Pop patches off the stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="334"/> + <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="460"/> + <source>Go to Patch</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="346"/> + <source>Push or pop patches until named patch is at top of stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="349"/> + <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="365"/> + <source>Push the next patch onto the stack on top of local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="368"/> + <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches on top of local changes.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="381"/> + <source>Push all patches onto the stack on top of local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> + <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches on top of local changes.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="397"/> - <source>Pop Current Patch</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="287"/> - <source>Pop the current patch off the stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="290"/> - <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> + <source>Push patches onto the stack on top of local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="400"/> + <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack on top of local changes.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="414"/> - <source>Pop All Patches</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="302"/> - <source>Pop all patches off the stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="305"/> - <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="430"/> - <source>Pop Patches</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="318"/> - <source>Pop patches off the stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="321"/> - <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack.</p></source> + <source>Pop the current patch off the stack forgetting local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="417"/> + <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches forgetting local changes.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="431"/> + <source>Pop all patches off the stack forgetting local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="434"/> + <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches forgetting local changes.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="447"/> - <source>Go to Patch</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="333"/> - <source>Push or pop patches until named patch is at top of stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="336"/> - <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="352"/> - <source>Push the next patch onto the stack on top of local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="355"/> - <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches on top of local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="368"/> - <source>Push all patches onto the stack on top of local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="371"/> - <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches on top of local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> - <source>Push patches onto the stack on top of local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="387"/> - <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack on top of local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="401"/> - <source>Pop the current patch off the stack forgetting local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="404"/> - <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches forgetting local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="418"/> - <source>Pop all patches off the stack forgetting local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="421"/> - <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches forgetting local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="434"/> <source>Pop patches off the stack forgetting local changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="437"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="450"/> <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack forgetting local changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="451"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="464"/> <source>Push or pop patches until named patch is at top of stack overwriting any local changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="455"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack overwriting any local changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="763"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="777"/> <source>Queues</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="680"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="693"/> <source>Push/Pop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="692"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="705"/> <source>Push/Pop (force)</source> <translation type="unfinished"></translation> </message> @@ -42777,262 +42774,262 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="274"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="287"/> <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="481"/> <source>Define Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="481"/> <source>Define Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="472"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="485"/> <source>Define guards for the current or a named patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="475"/> - <source><b>Define Guards</b><p>This opens a dialog to define guards for the current or a named patch.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="484"/> - <source>Drop All Guards</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="484"/> - <source>Drop All Guards...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="488"/> + <source><b>Define Guards</b><p>This opens a dialog to define guards for the current or a named patch.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="497"/> + <source>Drop All Guards</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="497"/> + <source>Drop All Guards...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="501"/> <source>Drop all guards of the current or a named patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="491"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="504"/> <source><b>Drop All Guards</b><p>This drops all guards of the current or a named patch.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="499"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="512"/> <source>List Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="499"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="512"/> <source>List Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="503"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="516"/> <source>List guards of the current or a named patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="506"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="519"/> <source><b>List Guards</b><p>This lists the guards of the current or a named patch.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="514"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="527"/> <source>List All Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="514"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="527"/> <source>List All Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="518"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="531"/> <source>List all guards of all patches</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="521"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="534"/> <source><b>List All Guards</b><p>This lists all guards of all patches.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="529"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="542"/> <source>Set Active Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="529"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="542"/> <source>Set Active Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="533"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="546"/> <source>Set the list of active guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="536"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="549"/> <source><b>Set Active Guards</b><p>This opens a dialog to set the active guards.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="544"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="557"/> <source>Deactivate Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="544"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="557"/> <source>Deactivate Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="548"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="561"/> <source>Deactivate all active guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="551"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="564"/> <source><b>Deactivate Guards</b><p>This deactivates all active guards.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="559"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="572"/> <source>Identify Active Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="559"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="572"/> <source>Identify Active Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="563"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="576"/> <source>Show a list of active guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="566"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="579"/> <source><b>Identify Active Guards</b><p>This opens a dialog showing a list of active guards.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="704"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="717"/> <source>Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="578"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="591"/> <source>Create Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="582"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="595"/> <source>Create a new patch queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="585"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="598"/> <source><b>Create Queue</b><p>This creates a new patch queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="593"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="606"/> <source>Rename Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="597"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="610"/> <source>Rename the active patch queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="600"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="613"/> <source><b>Rename Queue</b><p>This renames the active patch queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="608"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="621"/> <source>Delete Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="612"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="625"/> <source>Delete the reference to a patch queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="615"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="628"/> <source><b>Delete Queue</b><p>This deletes the reference to a patch queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="623"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="636"/> <source>Purge Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="627"/> - <source>Delete the reference to a patch queue and remove the patch directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="631"/> - <source><b>Purge Queue</b><p>This deletes the reference to a patch queue and removes the patch directory.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="640"/> - <source>Activate Queue</source> + <source>Delete the reference to a patch queue and remove the patch directory</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="644"/> + <source><b>Purge Queue</b><p>This deletes the reference to a patch queue and removes the patch directory.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="653"/> + <source>Activate Queue</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="657"/> <source>Set the active queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="647"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="660"/> <source><b>Activate Queue</b><p>This sets the active queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="655"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="668"/> <source>List Queues</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="655"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="668"/> <source>List Queues...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="659"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="672"/> <source>List the available queues</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="662"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="675"/> <source><b>List Queues</b><p>This opens a dialog showing all available queues.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="717"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="730"/> <source>Queue Management</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="819"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="833"/> <source>The project should be reread. Do this now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="819"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="833"/> <source>Changing Applied Patches</source> <translation type="unfinished"></translation> </message> @@ -43091,6 +43088,26 @@ <source><b>Show Status</b><p>This shows the status of the queue repository.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="225"/> + <source>Show Summary</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="225"/> + <source>Show summary...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="229"/> + <source>Show summary information of the queue repository</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="232"/> + <source><b>Show summary</b><p>This shows some summary information of the queue repository.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Rebase</name>
--- a/i18n/eric5_es.ts Tue Mar 18 18:51:09 2014 +0100 +++ b/i18n/eric5_es.ts Tue Mar 18 18:55:25 2014 +0100 @@ -8970,7 +8970,7 @@ <translation>Editar punto de interrupción...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4882"/> + <location filename="../QScintilla/Editor.py" line="4883"/> <source>Enable breakpoint</source> <translation>Activar punto de interrupción</translation> </message> @@ -9080,197 +9080,197 @@ <translation>Autocompletar no está disponible porque no hay origen de datos para autocompletar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4885"/> + <location filename="../QScintilla/Editor.py" line="4886"/> <source>Disable breakpoint</source> <translation>Deshabilitar punto de interrupción</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Code Coverage</source> <translation>Cobertura de codigo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Please select a coverage file</source> <translation>Por favor seleccione un archivo de cobertura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>Show Code Coverage Annotations</source> <translation>Mostrar Anotaciones de Cobertura de Código</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5327"/> + <location filename="../QScintilla/Editor.py" line="5328"/> <source>All lines have been covered.</source> <translation>Todas las líneas han sido cubiertas.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>There is no coverage file available.</source> <translation>No hay archivo de cobertura disponible.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Profile Data</source> <translation>Datos de profiling</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Please select a profile file</source> <translation>Por favor seleccione un archivo de profiling</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>Syntax Error</source> <translation>Error de sintaxis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>No syntax error message available.</source> <translation>No hay mensajes de error de sintaxis disponibles.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Macro Name</source> <translation>Nombre de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Select a macro name:</source> <translation>Seleccione un nombre de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5950"/> + <location filename="../QScintilla/Editor.py" line="5951"/> <source>Load macro file</source> <translation>Cargar archivo de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Macro files (*.macro)</source> <translation>Archivos de Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source>Error loading macro</source> <translation>Error al cargar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Save macro file</source> <translation>Guardar archivo de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source>Save macro</source> <translation>Guardar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source>Error saving macro</source> <translation>Error al guardar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Start Macro Recording</source> <translation>Comenzar grabación de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Macro recording is already active. Start new?</source> <translation>Grabación de macro ya está activada. ¿Comenzar una nueva?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Macro Recording</source> <translation>Grabando macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Enter name of the macro:</source> <translation>Introduzca el nombre de la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6197"/> + <location filename="../QScintilla/Editor.py" line="6198"/> <source>File changed</source> <translation>Archivo modificado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source>Drop Error</source> <translation>Error al soltar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6516"/> + <location filename="../QScintilla/Editor.py" line="6517"/> <source>Resources</source> <translation>Recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6518"/> + <location filename="../QScintilla/Editor.py" line="6519"/> <source>Add file...</source> <translation>Añadir archivo...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6520"/> + <location filename="../QScintilla/Editor.py" line="6521"/> <source>Add files...</source> <translation>Añadir archivos...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6522"/> + <location filename="../QScintilla/Editor.py" line="6523"/> <source>Add aliased file...</source> <translation>Añadir archivo con un alias...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6525"/> + <location filename="../QScintilla/Editor.py" line="6526"/> <source>Add localized resource...</source> <translation>Añadir recursos localizados...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6529"/> + <location filename="../QScintilla/Editor.py" line="6530"/> <source>Add resource frame</source> <translation>Añadir ventana de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6548"/> + <location filename="../QScintilla/Editor.py" line="6549"/> <source>Add file resource</source> <translation>Añadir archivo de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6564"/> + <location filename="../QScintilla/Editor.py" line="6565"/> <source>Add file resources</source> <translation>Añadir archivo de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Add aliased file resource</source> <translation>Añadir archivo de recursos con un alias</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Package Diagram</source> <translation>Digrama de paquetes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Include class attributes?</source> <translation>¿Incluir atributos de clase?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Imports Diagram</source> <translation>Diagrama de imports</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Include imports from external modules?</source> <translation>¿Incluir los imports de módulos externos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Application Diagram</source> <translation>Diagrama de aplicación</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Include module names?</source> <translation>¿Incluir nombres de módulos?</translation> </message> @@ -9345,7 +9345,7 @@ <translation>Seleccionar el Analizador Léxico de Pygments.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Check spelling...</source> <translation>Corrección ortográfica...</translation> </message> @@ -9355,12 +9355,12 @@ <translation>Corrección ortográfica de la selección...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6981"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add to dictionary</source> <translation>Añadir al diccionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6983"/> + <location filename="../QScintilla/Editor.py" line="6984"/> <source>Ignore All</source> <translation>Ignorar Todo</translation> </message> @@ -9400,37 +9400,37 @@ <translation><p>El archivo <b>{0}</b> no puede ser guardado.<br>Causa: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5964"/> + <location filename="../QScintilla/Editor.py" line="5965"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de macro <b>{0}</b> no se puede leer.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>El archivo de macro <b>{0}</b> está dañado</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de macro <b>{0}</b> no se puede escribir.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6187"/> + <location filename="../QScintilla/Editor.py" line="6188"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation><p>El archivo <b>{0}</b> ha cambiado mientras estaba abierto en eric5. ¿Desea volver a cargarlo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6355"/> + <location filename="../QScintilla/Editor.py" line="6356"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> no es un archivo.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Alias for file <b>{0}</b>:</source> <translation>Alias para el archivo <b>{0}</b>:</translation> </message> @@ -9460,22 +9460,22 @@ <translation><p>El archivo <b>{0}</b> ya existe. ¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>El archivo de macro <b>{0}</b> ya existe. ¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5862"/> <source>Warning: {0}</source> <translation>Advertencia: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5868"/> + <location filename="../QScintilla/Editor.py" line="5869"/> <source>Error: {0}</source> <translation>Error: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6193"/> + <location filename="../QScintilla/Editor.py" line="6194"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Advertencia:</b> Perderá los cambios si lo reabre.</translation> </message> @@ -9520,27 +9520,27 @@ <translation>Cambio anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>Sort Lines</source> <translation>Ordenar Líneas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>The selection contains illegal data for a numerical sort.</source> <translation>La selección contiene datos ilegales para una ordenación numérica.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>Warning</source> <translation>Advertencia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>No warning messages available.</source> <translation>No hay mensajes de advertencia disponibles.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5858"/> + <location filename="../QScintilla/Editor.py" line="5859"/> <source>Style: {0}</source> <translation>Estilo: {0}</translation> </message> @@ -25160,202 +25160,202 @@ <translation>Pulsar para actualizar la visualización del sumario</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>Process Generation Error</source> <translation>Error de Generación de Proceso</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="332"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/> <source><tr><td><b>Parent</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Paren</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="337"/> <source><tr><td><b>Tags</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Etiquetas</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="340"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/> <source><tr><td><b>Commit Message</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Mensaje de Commit</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="346"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/> <source>empty repository</source> <translation>repositorio vacío</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="348"/> - <source>no revision checked out</source> - <translation>revisión sin check-out</translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/> + <source>no revision checked out</source> + <translation>revisión sin check-out</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="350"/> <source><tr><td><b>Remarks</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Observaciones</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/> <source><tr><td><b>Branch</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Branch</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="361"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/> <source><tr><td><b>Bookmarks</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Marcadores</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="369"/> <source>{0} modified</source> <translation>{0} modificado</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="370"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/> <source>{0} added</source> <translation>{0} añadido</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="372"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/> <source>{0} removed</source> <translation>{0} eliminado</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="374"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="375"/> <source>{0} renamed</source> <translation>{0} renombrado</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="376"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="377"/> <source>{0} copied</source> <translation>{0} copiado</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="378"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="379"/> <source>{0} deleted</source> <translation>{0} borrado</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="380"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="381"/> <source>{0} unknown</source> <translation>{0} desconocido</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="382"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="383"/> <source>{0} ignored</source> <translation>{0} ignorado</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="384"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="385"/> <source>{0} unresolved</source> <translation>{0} sin resolver</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="387"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="388"/> <source>{0} subrepos</source> <translation>{0} subrepos</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="390"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="391"/> <source>Merge needed</source> <translation>Es necesario un merge</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="392"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="393"/> <source>New Branch</source> <translation>Nueva Branch</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="395"/> <source>Head is closed</source> <translation>Head está cerrada</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="396"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="397"/> <source>No commit required</source> <translation>No es necesario hacer commit</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="398"/> - <source>New Branch Head</source> - <translation>Nueva Branch Head</translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="399"/> + <source>New Branch Head</source> + <translation>Nueva Branch Head</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="400"/> <source><tr><td><b>Commit Status</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Estado del Commit</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="404"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="405"/> <source>current</source> <translation>actual</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="419"/> - <source>unknown status</source> - <translation>estado desconocido</translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="420"/> + <source>unknown status</source> + <translation>estado desconocido</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="421"/> <source><tr><td><b>Update Status</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Estado del Update</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="425"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="426"/> <source>synched</source> <translation>sincronizado</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="429"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="430"/> <source>1 or more incoming</source> <translation>1 o más entrando</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="431"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="432"/> <source>{0} outgoing</source> <translation>{0} saliendo</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="440"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="441"/> <source><tr><td><b>Remote Status</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Estado Remoto</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="445"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="446"/> <source>empty queue</source> <translation>cola vacía</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="449"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="450"/> <source>{0} applied</source> <translation>{0} aplicado</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="452"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="453"/> <source>{0} unapplied</source> <translation>{0} sin aplicar</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="455"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="456"/> <source><tr><td><b>Queues Status</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Estado de las Colas</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="469"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="470"/> <source><p>No status information available.</p></source> <translation><p>No hay información de estado disponible.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="328"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/> <source><tr><td><b>Parent #{0}</b></td><td>{1}</td></tr></source> <translation><tr><td><b>Padre #{0}</b></td><td>{1}</td></tr></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="406"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="407"/> <source>%n new changeset(s)<br/>Update required</source> <translation> <numerusform>%n nuevo changeset<br/>Necesario un Update</numerusform> @@ -25363,7 +25363,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="410"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="411"/> <source>%n new changeset(s)</source> <translation> <numerusform>%n nuevo changeset</numerusform> @@ -25371,7 +25371,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="412"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="413"/> <source>%n branch head(s)</source> <translation> <numerusform>%n branch head</numerusform> @@ -25379,13 +25379,13 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="414"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="415"/> <source>{0}<br/>{1}<br/>Merge required</source> <comment>0 is changesets, 1 is branch heads</comment> <translation>{0}<br/>{1}<br/>Necesario un Merge</translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="434"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="435"/> <source>%n incoming bookmark(s)</source> <translation> <numerusform>%n marcador entrante</numerusform> @@ -25393,7 +25393,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="437"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="438"/> <source>%n outgoing bookmark(s)</source> <translation> <numerusform>%n marcador saliente</numerusform> @@ -25401,12 +25401,12 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="460"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="461"/> <source>No files to upload</source> <translation>Sin archivos para subir</translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="462"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="463"/> <source>%n file(s) to upload</source> <translation> <numerusform>%n archivo para subir</numerusform> @@ -25414,7 +25414,7 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="464"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="465"/> <source><tr><td><b>Large Files</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Archivos Grandes</b></td><td>{0}</td></tr></translation> </message> @@ -42905,187 +42905,187 @@ <translation><b>Fold Patches</b><p>Hace fold de patches sin aplicar al patch actual.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="348"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="361"/> <source>Push Next Patch</source> <translation>Hacer Push del Siguiente Patch</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="240"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="253"/> <source>Push the next patch onto the stack</source> <translation>Hacer push del siguiente patch a la pila</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="243"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="256"/> <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches.</p></source> <translation><b>Hacer Push del Siguiente Patch</b><p>Hace push del siguiente patch a la pila de patches aplicados.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="364"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="377"/> <source>Push All Patches</source> <translation>Hacer Push de Todos los Patches</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="255"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="268"/> <source>Push all patches onto the stack</source> <translation>Hacer push de todos los patches a la pila</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="258"/> - <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> - <translation><b>Hacer Push de Todos los Patches</b><p>Hace push de todos los patches a la pila de patches aplicados.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="380"/> - <source>Push Patches</source> - <translation>Hacer Push de Patches</translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="271"/> + <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> + <translation><b>Hacer Push de Todos los Patches</b><p>Hace push de todos los patches a la pila de patches aplicados.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="393"/> + <source>Push Patches</source> + <translation>Hacer Push de Patches</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="284"/> <source>Push patches onto the stack</source> <translation>Hacer push de patches a la pila</translation> </message> <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="410"/> + <source>Pop Current Patch</source> + <translation>Hacer Pop del Patch Actual</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="300"/> + <source>Pop the current patch off the stack</source> + <translation>Hacer pop del patch actual fuera de la pila</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="303"/> + <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> + <translation><b>Hacer Pop del Patch Actual</b><p>Hace pop del patch actual fuera de la pila de patches aplicados.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="427"/> + <source>Pop All Patches</source> + <translation>Hacer Pop de Todos los Patches</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="315"/> + <source>Pop all patches off the stack</source> + <translation>Hacer pop de todos los patches fuera de la pila</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="318"/> + <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> + <translation><b>Hacer Pop de Todos los Patch</b><p>Hace pop de todos los patches fuera de la pila de patches aplicados.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="443"/> + <source>Pop Patches</source> + <translation>Hacer Pop de Patches</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="331"/> + <source>Pop patches off the stack</source> + <translation>Hacer pop de patches fuera de la pila</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="334"/> + <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack.</p></source> + <translation><b>Hacer Pop de Patches</b><p>Hace pop de patches aplicados fuera de la pila hasta que un patch con nombre está arriba de la pila.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="460"/> + <source>Go to Patch</source> + <translation>Ir al Patch</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="346"/> + <source>Push or pop patches until named patch is at top of stack</source> + <translation>Hacer push o pop de patches hasta que un patch con nombre está arriba de la pila</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="349"/> + <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack.</p></source> + <translation><b>Ir al Patch</b><p>Hace push o pop de patches hasta que un patch con nombre está arriba de la pila.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="365"/> + <source>Push the next patch onto the stack on top of local changes</source> + <translation>Hacer push del siguiente patch a la pila encima de los cambios locales</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="368"/> + <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches on top of local changes.</p></source> + <translation><b>Push del Siguiente Patch</b><p>Hace push del siguiente patch a la pila de patches aplicados encima de los cambios locales.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="381"/> + <source>Push all patches onto the stack on top of local changes</source> + <translation>Hacer push de todos los patches a la pila encima de los cambios locales</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> + <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches on top of local changes.</p></source> + <translation><b>Push de Todos los Patches</b><p>Hace push de todos los patches a la pila de patches aplicados encima de los cambios locales.</p></translation> + </message> + <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="397"/> - <source>Pop Current Patch</source> - <translation>Hacer Pop del Patch Actual</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="287"/> - <source>Pop the current patch off the stack</source> - <translation>Hacer pop del patch actual fuera de la pila</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="290"/> - <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> - <translation><b>Hacer Pop del Patch Actual</b><p>Hace pop del patch actual fuera de la pila de patches aplicados.</p></translation> + <source>Push patches onto the stack on top of local changes</source> + <translation>Hacer push de patches a la pila encima de los cambios locales</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="400"/> + <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack on top of local changes.</p></source> + <translation><b>Hacer Push de Patches</b><p>Hace push de patches aplicados a la pila hasta que un patch con nombre está arriba de la pila encima de los cambios locales.</p></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="414"/> - <source>Pop All Patches</source> - <translation>Hacer Pop de Todos los Patches</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="302"/> - <source>Pop all patches off the stack</source> - <translation>Hacer pop de todos los patches fuera de la pila</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="305"/> - <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> - <translation><b>Hacer Pop de Todos los Patch</b><p>Hace pop de todos los patches fuera de la pila de patches aplicados.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="430"/> - <source>Pop Patches</source> - <translation>Hacer Pop de Patches</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="318"/> - <source>Pop patches off the stack</source> - <translation>Hacer pop de patches fuera de la pila</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="321"/> - <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack.</p></source> - <translation><b>Hacer Pop de Patches</b><p>Hace pop de patches aplicados fuera de la pila hasta que un patch con nombre está arriba de la pila.</p></translation> + <source>Pop the current patch off the stack forgetting local changes</source> + <translation>Hacer pop del patch actual fuera de la pila desechando los cambios locales</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="417"/> + <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches forgetting local changes.</p></source> + <translation><b>Pop del Patch Actual</b><p>Hace pop del patch actual fuera de la pila de patches aplicados desechando los cambios locales.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="431"/> + <source>Pop all patches off the stack forgetting local changes</source> + <translation>Hacer pop de todos los patches fuera de la pila desechando los cambios locales</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="434"/> + <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches forgetting local changes.</p></source> + <translation><b>Pop de Todos los Patches</b><p>Hace pop de todos los patches fuera de la pila de patches aplicados desechando los cambios locales.</p></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="447"/> - <source>Go to Patch</source> - <translation>Ir al Patch</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="333"/> - <source>Push or pop patches until named patch is at top of stack</source> - <translation>Hacer push o pop de patches hasta que un patch con nombre está arriba de la pila</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="336"/> - <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack.</p></source> - <translation><b>Ir al Patch</b><p>Hace push o pop de patches hasta que un patch con nombre está arriba de la pila.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="352"/> - <source>Push the next patch onto the stack on top of local changes</source> - <translation>Hacer push del siguiente patch a la pila encima de los cambios locales</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="355"/> - <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches on top of local changes.</p></source> - <translation><b>Push del Siguiente Patch</b><p>Hace push del siguiente patch a la pila de patches aplicados encima de los cambios locales.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="368"/> - <source>Push all patches onto the stack on top of local changes</source> - <translation>Hacer push de todos los patches a la pila encima de los cambios locales</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="371"/> - <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches on top of local changes.</p></source> - <translation><b>Push de Todos los Patches</b><p>Hace push de todos los patches a la pila de patches aplicados encima de los cambios locales.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> - <source>Push patches onto the stack on top of local changes</source> - <translation>Hacer push de patches a la pila encima de los cambios locales</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="387"/> - <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack on top of local changes.</p></source> - <translation><b>Hacer Push de Patches</b><p>Hace push de patches aplicados a la pila hasta que un patch con nombre está arriba de la pila encima de los cambios locales.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="401"/> - <source>Pop the current patch off the stack forgetting local changes</source> - <translation>Hacer pop del patch actual fuera de la pila desechando los cambios locales</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="404"/> - <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches forgetting local changes.</p></source> - <translation><b>Pop del Patch Actual</b><p>Hace pop del patch actual fuera de la pila de patches aplicados desechando los cambios locales.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="418"/> - <source>Pop all patches off the stack forgetting local changes</source> - <translation>Hacer pop de todos los patches fuera de la pila desechando los cambios locales</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="421"/> - <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches forgetting local changes.</p></source> - <translation><b>Pop de Todos los Patches</b><p>Hace pop de todos los patches fuera de la pila de patches aplicados desechando los cambios locales.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="434"/> <source>Pop patches off the stack forgetting local changes</source> <translation>Hacer pop de patches fuera de la pila desechando los cambios locales</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="437"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="450"/> <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack forgetting local changes.</p></source> <translation><b>Pop de Patches</b><p>Hace pop de patches fuera de la pila de patches aplicados hasta que un patch con nombre está arriba de la pila, desechando los cambios locales.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="451"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="464"/> <source>Push or pop patches until named patch is at top of stack overwriting any local changes</source> <translation>Hacer push o pop de patches hasta que un patch con nombre está arriba de la pila, sobreescribiendo cualquier cambio local</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="455"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack overwriting any local changes.</p></source> <translation><b>Ir a Patch</b><p>Hace push o pop de patches hasta que un patch con nombre está arriba de la pila, sobreescribiendo cualquier cambio local.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="763"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="777"/> <source>Queues</source> <translation>Colas</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="680"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="693"/> <source>Push/Pop</source> <translation>Push/Pop</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="692"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="705"/> <source>Push/Pop (force)</source> <translation>Push/Pop (forzar)</translation> </message> @@ -43095,262 +43095,262 @@ <translation><b>Listar Patches</b><p>Lista todos los patches aplicados y sin aplicar.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="274"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="287"/> <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack.</p></source> <translation><b>Push de Patches</b><p>Hace push de patches a la pila de patches aplicados hasta que un patch con nombre está arriba de la pila.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="481"/> <source>Define Guards</source> <translation>Definir Guards</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="481"/> <source>Define Guards...</source> <translation>Definir Guards...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="472"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="485"/> <source>Define guards for the current or a named patch</source> <translation>Definir guards para el patch actual o un patch con nombre</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="475"/> - <source><b>Define Guards</b><p>This opens a dialog to define guards for the current or a named patch.</p></source> - <translation><b>Definir Guards</b><p>Abre un diálogo para definir guards para el patch actual o para un patch con nombre.</p></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="484"/> - <source>Drop All Guards</source> - <translation>Abandonar Todos los Guards</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="484"/> - <source>Drop All Guards...</source> - <translation>Abandonar Todos los Guards...</translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="488"/> + <source><b>Define Guards</b><p>This opens a dialog to define guards for the current or a named patch.</p></source> + <translation><b>Definir Guards</b><p>Abre un diálogo para definir guards para el patch actual o para un patch con nombre.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="497"/> + <source>Drop All Guards</source> + <translation>Abandonar Todos los Guards</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="497"/> + <source>Drop All Guards...</source> + <translation>Abandonar Todos los Guards...</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="501"/> <source>Drop all guards of the current or a named patch</source> <translation>Abandonar todos los guards para el patch actual o un patch con nombre</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="491"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="504"/> <source><b>Drop All Guards</b><p>This drops all guards of the current or a named patch.</p></source> <translation><b>Abandonar Todos los Guarsd</b><p>Abandona todos los guards del patch actual o de un patch con nombre.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="499"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="512"/> <source>List Guards</source> <translation>Listar Guards</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="499"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="512"/> <source>List Guards...</source> <translation>Listar Guards...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="503"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="516"/> <source>List guards of the current or a named patch</source> <translation>Listar guards para el patch actual o un patch con nombre</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="506"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="519"/> <source><b>List Guards</b><p>This lists the guards of the current or a named patch.</p></source> <translation><b>Listar Guards</b><p>Lista los guards para el patch actual o para un patch con nombre.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="514"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="527"/> <source>List All Guards</source> <translation>Listar Todos los Guards</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="514"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="527"/> <source>List All Guards...</source> <translation>Listar Todos los Guards...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="518"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="531"/> <source>List all guards of all patches</source> <translation>Listar todos los guards de todos los patches</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="521"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="534"/> <source><b>List All Guards</b><p>This lists all guards of all patches.</p></source> <translation><b>Listar Todos los Guards</b><p>Lista todos los guards de todos los patches.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="529"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="542"/> <source>Set Active Guards</source> <translation>Establecer Guards Activos</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="529"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="542"/> <source>Set Active Guards...</source> <translation>Establecer Guards Activos...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="533"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="546"/> <source>Set the list of active guards</source> <translation>Establecer la lista de los guards activos</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="536"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="549"/> <source><b>Set Active Guards</b><p>This opens a dialog to set the active guards.</p></source> <translation><b>Establecer Guards Activos</b><p>Abre un diálogo para establecer los guards activos.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="544"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="557"/> <source>Deactivate Guards</source> <translation>Desactivar Guards</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="544"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="557"/> <source>Deactivate Guards...</source> <translation>Desactivar Guards...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="548"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="561"/> <source>Deactivate all active guards</source> <translation>Desactivar todos los guards activos</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="551"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="564"/> <source><b>Deactivate Guards</b><p>This deactivates all active guards.</p></source> <translation><b>Desactivar Guards</b><p>Desactiva todos los guards activos.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="559"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="572"/> <source>Identify Active Guards</source> <translation>Identificar Guards activos</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="559"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="572"/> <source>Identify Active Guards...</source> <translation>Identificar Guards activos...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="563"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="576"/> <source>Show a list of active guards</source> <translation>Mostrar una lista de los guards activos</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="566"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="579"/> <source><b>Identify Active Guards</b><p>This opens a dialog showing a list of active guards.</p></source> <translation><b>Identificar Guards Activos</b><p>Abre un diálogo que muestra una lista de los guards activos.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="704"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="717"/> <source>Guards</source> <translation>Guards</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="578"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="591"/> <source>Create Queue</source> <translation>Crear Cola</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="582"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="595"/> <source>Create a new patch queue</source> <translation>Crear una nueva cola de patch</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="585"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="598"/> <source><b>Create Queue</b><p>This creates a new patch queue.</p></source> <translation><b>Crear Cola</b><p>Crea una nueva cola de patch.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="593"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="606"/> <source>Rename Queue</source> <translation>Renombrar Cola</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="597"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="610"/> <source>Rename the active patch queue</source> <translation>Renombrar la cola de patch activa</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="600"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="613"/> <source><b>Rename Queue</b><p>This renames the active patch queue.</p></source> <translation><b>Renombrar Cola</b><p>Renombra la cola de patch activa.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="608"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="621"/> <source>Delete Queue</source> <translation>Borrar Cola</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="612"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="625"/> <source>Delete the reference to a patch queue</source> <translation>Borra la referencia a una cola de patch</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="615"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="628"/> <source><b>Delete Queue</b><p>This deletes the reference to a patch queue.</p></source> <translation><b>Borrar Cola</b><p>Borra la referencia a una cola de patch.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="623"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="636"/> <source>Purge Queue</source> <translation>Purgar Cola</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="627"/> - <source>Delete the reference to a patch queue and remove the patch directory</source> - <translation>Borra la referencia a una cola de patch y elimina el directorio de patch</translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="631"/> - <source><b>Purge Queue</b><p>This deletes the reference to a patch queue and removes the patch directory.</p></source> - <translation><b>Purgar Cola</b><p>Borra la referencia a una cola de patch y elimina el directorio de patch.</p></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="640"/> - <source>Activate Queue</source> - <translation>Activar Cola</translation> + <source>Delete the reference to a patch queue and remove the patch directory</source> + <translation>Borra la referencia a una cola de patch y elimina el directorio de patch</translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="644"/> + <source><b>Purge Queue</b><p>This deletes the reference to a patch queue and removes the patch directory.</p></source> + <translation><b>Purgar Cola</b><p>Borra la referencia a una cola de patch y elimina el directorio de patch.</p></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="653"/> + <source>Activate Queue</source> + <translation>Activar Cola</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="657"/> <source>Set the active queue</source> <translation>Establece la cola activa</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="647"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="660"/> <source><b>Activate Queue</b><p>This sets the active queue.</p></source> <translation><b>Activar Cola</b><p>Establece la cola activa.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="655"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="668"/> <source>List Queues</source> <translation>Listar Colas</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="655"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="668"/> <source>List Queues...</source> <translation>Listar Colas...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="659"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="672"/> <source>List the available queues</source> <translation>Listar las colas disponibles</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="662"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="675"/> <source><b>List Queues</b><p>This opens a dialog showing all available queues.</p></source> <translation><b>Listar Colas</b><p>Abre un diálogo que muestra todas las colas disponibles.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="717"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="730"/> <source>Queue Management</source> <translation>Gestión de Colas</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="819"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="833"/> <source>The project should be reread. Do this now?</source> <translation>El proyecto debería ser cargado de nuevo. ¿Desea hacerlo ahora?</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="819"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="833"/> <source>Changing Applied Patches</source> <translation>Cambiando los Patches Aplicados</translation> </message> @@ -43409,6 +43409,26 @@ <source><b>Show Status</b><p>This shows the status of the queue repository.</p></source> <translation><b>Mostrar Estado</b><p>Muestra el estado de la cola de repositorio.</p></translation> </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="225"/> + <source>Show Summary</source> + <translation type="unfinished">Mostrar Sumario</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="225"/> + <source>Show summary...</source> + <translation type="unfinished">Mostrar Sumario...</translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="229"/> + <source>Show summary information of the queue repository</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="232"/> + <source><b>Show summary</b><p>This shows some summary information of the queue repository.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Rebase</name>
--- a/i18n/eric5_fr.ts Tue Mar 18 18:51:09 2014 +0100 +++ b/i18n/eric5_fr.ts Tue Mar 18 18:55:25 2014 +0100 @@ -9884,7 +9884,7 @@ <translation>Éditer le point d'arrêt...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4882"/> + <location filename="../QScintilla/Editor.py" line="4883"/> <source>Enable breakpoint</source> <translation>Activer le point d'arrêt</translation> </message> @@ -9969,82 +9969,82 @@ <translation>L'autocompletion n'est pas disponible car aucune source d'autocomplétion n'est définie.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4885"/> + <location filename="../QScintilla/Editor.py" line="4886"/> <source>Disable breakpoint</source> <translation>Désactiver le point d'arrêt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Code Coverage</source> <translation>Code Coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Please select a coverage file</source> <translation>Sélectionner un fichier coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Profile Data</source> <translation>Profiler de données</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Please select a profile file</source> <translation>Sélectionner un fichier profile</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Macro Name</source> <translation>Nom de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Select a macro name:</source> <translation>Sélectionner un nom de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Macro files (*.macro)</source> <translation>Fichier Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5950"/> + <location filename="../QScintilla/Editor.py" line="5951"/> <source>Load macro file</source> <translation>Charger un fichier macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source>Error loading macro</source> <translation>Erreur lors du chargement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Save macro file</source> <translation>Enregistrer le fichier macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source>Save macro</source> <translation>Enregistrer la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source>Error saving macro</source> <translation>Erreur lors de l'enregistrement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Start Macro Recording</source> <translation>Démarrer l'enregistrement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Macro Recording</source> <translation>Enregistrement de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Enter name of the macro:</source> <translation>Entrer le nom de la macro:</translation> </message> @@ -10054,7 +10054,7 @@ <translation type="obsolete"><br><b>Warning:</b> Toutes les modifications seront écrasées en réouvrant le fichier.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6197"/> + <location filename="../QScintilla/Editor.py" line="6198"/> <source>File changed</source> <translation>Fichier modifié</translation> </message> @@ -10094,7 +10094,7 @@ <translation type="obsolete">Prière de sélectionner un rapport Cyclops à supprimer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> @@ -10104,12 +10104,12 @@ <translation>Afficher le message d'erreur de syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>Syntax Error</source> <translation>Erreur de syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>No syntax error message available.</source> <translation>Aucun message d'erreur de syntaxe..</translation> </message> @@ -10139,17 +10139,17 @@ <translation>Ligne non executée précédente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>Show Code Coverage Annotations</source> <translation>Afficher les annotations de Code Coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5327"/> + <location filename="../QScintilla/Editor.py" line="5328"/> <source>All lines have been covered.</source> <translation>Toutes les lignes ont été executées.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>There is no coverage file available.</source> <translation>Impossible de trouver le fichier de coverage.</translation> </message> @@ -10249,42 +10249,42 @@ <translation type="obsolete">%1 (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6516"/> + <location filename="../QScintilla/Editor.py" line="6517"/> <source>Resources</source> <translation>Ressources</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6518"/> + <location filename="../QScintilla/Editor.py" line="6519"/> <source>Add file...</source> <translation>Ajouter un fichier...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6520"/> + <location filename="../QScintilla/Editor.py" line="6521"/> <source>Add files...</source> <translation>Ajouter des fichiers...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6522"/> + <location filename="../QScintilla/Editor.py" line="6523"/> <source>Add aliased file...</source> <translation>Ajouter un fichier alias...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6525"/> + <location filename="../QScintilla/Editor.py" line="6526"/> <source>Add localized resource...</source> <translation>Ajouter une ressource localisée...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6548"/> + <location filename="../QScintilla/Editor.py" line="6549"/> <source>Add file resource</source> <translation>Ajoute un fichier ressource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6564"/> + <location filename="../QScintilla/Editor.py" line="6565"/> <source>Add file resources</source> <translation>Ajoute des fichiers ressources</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Add aliased file resource</source> <translation>Ajoute un alias de fichier ressource</translation> </message> @@ -10294,32 +10294,32 @@ <translation type="obsolete">Alias pour le fichier <b>%1</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Package Diagram</source> <translation>Diagramme de package</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Include class attributes?</source> <translation>Inclure les attributs de classes ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Application Diagram</source> <translation>Diagramme de l'application</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Include module names?</source> <translation>Inclure les noms de modules ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6529"/> + <location filename="../QScintilla/Editor.py" line="6530"/> <source>Add resource frame</source> <translation>Ajouter un cadre ressource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Macro recording is already active. Start new?</source> <translation>L'enregistrement de macro est déjà actif. En démarrer une nouvelle ?</translation> </message> @@ -10374,12 +10374,12 @@ <translation>Aucun format d'exportation indiqué. Abandon...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Imports Diagram</source> <translation>Diagramme des modules</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Include imports from external modules?</source> <translation>Inclure l'importation de modules externes?</translation> </message> @@ -10459,7 +10459,7 @@ <translation>Sélectionne l'analyseur Pygments à appliquer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Check spelling...</source> <translation>Correction orthographique...</translation> </message> @@ -10469,12 +10469,12 @@ <translation>Correction orthographique de la sélection...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6981"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add to dictionary</source> <translation>Ajouter au dictionnaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6983"/> + <location filename="../QScintilla/Editor.py" line="6984"/> <source>Ignore All</source> <translation>Tout ignorer</translation> </message> @@ -10514,37 +10514,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5964"/> + <location filename="../QScintilla/Editor.py" line="5965"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6187"/> + <location filename="../QScintilla/Editor.py" line="6188"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6355"/> + <location filename="../QScintilla/Editor.py" line="6356"/> <source>{0} (ro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished"></translation> </message> @@ -10574,22 +10574,22 @@ <translation type="unfinished"><p>Le fichier <b>{0}</b>existe déjà. Écraser ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5862"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5868"/> + <location filename="../QScintilla/Editor.py" line="5869"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6193"/> + <location filename="../QScintilla/Editor.py" line="6194"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished"></translation> </message> @@ -10634,27 +10634,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>Warning</source> <translation type="unfinished">Warning</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>No warning messages available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5858"/> + <location filename="../QScintilla/Editor.py" line="5859"/> <source>Style: {0}</source> <translation type="unfinished"></translation> </message> @@ -27160,202 +27160,202 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>Process Generation Error</source> <translation type="unfinished">Erreur du processus</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation type="unfinished">Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="332"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/> <source><tr><td><b>Parent</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="337"/> <source><tr><td><b>Tags</b></td><td>{0}</td></tr></source> <translation type="unfinished"><tr><td><b>Étiquettes</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="340"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/> <source><tr><td><b>Commit Message</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="346"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/> <source>empty repository</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="348"/> - <source>no revision checked out</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/> + <source>no revision checked out</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="350"/> <source><tr><td><b>Remarks</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/> <source><tr><td><b>Branch</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="361"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/> <source><tr><td><b>Bookmarks</b></td><td>{0}</td></tr></source> <translation type="unfinished"><tr><td><b>Signets</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="369"/> <source>{0} modified</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="370"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/> <source>{0} added</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="372"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/> <source>{0} removed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="374"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="375"/> <source>{0} renamed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="376"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="377"/> <source>{0} copied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="378"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="379"/> <source>{0} deleted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="380"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="381"/> <source>{0} unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="382"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="383"/> <source>{0} ignored</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="384"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="385"/> <source>{0} unresolved</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="387"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="388"/> <source>{0} subrepos</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="390"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="391"/> <source>Merge needed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="392"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="393"/> <source>New Branch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="395"/> <source>Head is closed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="396"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="397"/> <source>No commit required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="398"/> - <source>New Branch Head</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="399"/> + <source>New Branch Head</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="400"/> <source><tr><td><b>Commit Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="404"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="405"/> <source>current</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="419"/> - <source>unknown status</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="420"/> + <source>unknown status</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="421"/> <source><tr><td><b>Update Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="425"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="426"/> <source>synched</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="429"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="430"/> <source>1 or more incoming</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="431"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="432"/> <source>{0} outgoing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="440"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="441"/> <source><tr><td><b>Remote Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="445"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="446"/> <source>empty queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="449"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="450"/> <source>{0} applied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="452"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="453"/> <source>{0} unapplied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="455"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="456"/> <source><tr><td><b>Queues Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="469"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="470"/> <source><p>No status information available.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="328"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/> <source><tr><td><b>Parent #{0}</b></td><td>{1}</td></tr></source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="406"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="407"/> <source>%n new changeset(s)<br/>Update required</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27363,7 +27363,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="410"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="411"/> <source>%n new changeset(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27371,7 +27371,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="412"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="413"/> <source>%n branch head(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27379,13 +27379,13 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="414"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="415"/> <source>{0}<br/>{1}<br/>Merge required</source> <comment>0 is changesets, 1 is branch heads</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="434"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="435"/> <source>%n incoming bookmark(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27393,7 +27393,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="437"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="438"/> <source>%n outgoing bookmark(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27401,12 +27401,12 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="460"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="461"/> <source>No files to upload</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="462"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="463"/> <source>%n file(s) to upload</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27414,7 +27414,7 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="464"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="465"/> <source><tr><td><b>Large Files</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> @@ -47194,187 +47194,187 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="348"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="361"/> <source>Push Next Patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="240"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="253"/> <source>Push the next patch onto the stack</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="243"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="256"/> <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="364"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="377"/> <source>Push All Patches</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="255"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="268"/> <source>Push all patches onto the stack</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="258"/> - <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="380"/> - <source>Push Patches</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="271"/> + <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="393"/> + <source>Push Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="284"/> <source>Push patches onto the stack</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="410"/> + <source>Pop Current Patch</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="300"/> + <source>Pop the current patch off the stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="303"/> + <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="427"/> + <source>Pop All Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="315"/> + <source>Pop all patches off the stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="318"/> + <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="443"/> + <source>Pop Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="331"/> + <source>Pop patches off the stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="334"/> + <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="460"/> + <source>Go to Patch</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="346"/> + <source>Push or pop patches until named patch is at top of stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="349"/> + <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="365"/> + <source>Push the next patch onto the stack on top of local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="368"/> + <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches on top of local changes.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="381"/> + <source>Push all patches onto the stack on top of local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> + <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches on top of local changes.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="397"/> - <source>Pop Current Patch</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="287"/> - <source>Pop the current patch off the stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="290"/> - <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> + <source>Push patches onto the stack on top of local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="400"/> + <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack on top of local changes.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="414"/> - <source>Pop All Patches</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="302"/> - <source>Pop all patches off the stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="305"/> - <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="430"/> - <source>Pop Patches</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="318"/> - <source>Pop patches off the stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="321"/> - <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack.</p></source> + <source>Pop the current patch off the stack forgetting local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="417"/> + <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches forgetting local changes.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="431"/> + <source>Pop all patches off the stack forgetting local changes</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="434"/> + <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches forgetting local changes.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="447"/> - <source>Go to Patch</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="333"/> - <source>Push or pop patches until named patch is at top of stack</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="336"/> - <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="352"/> - <source>Push the next patch onto the stack on top of local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="355"/> - <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches on top of local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="368"/> - <source>Push all patches onto the stack on top of local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="371"/> - <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches on top of local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> - <source>Push patches onto the stack on top of local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="387"/> - <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack on top of local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="401"/> - <source>Pop the current patch off the stack forgetting local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="404"/> - <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches forgetting local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="418"/> - <source>Pop all patches off the stack forgetting local changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="421"/> - <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches forgetting local changes.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="434"/> <source>Pop patches off the stack forgetting local changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="437"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="450"/> <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack forgetting local changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="451"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="464"/> <source>Push or pop patches until named patch is at top of stack overwriting any local changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="455"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack overwriting any local changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="763"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="777"/> <source>Queues</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="680"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="693"/> <source>Push/Pop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="692"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="705"/> <source>Push/Pop (force)</source> <translation type="unfinished"></translation> </message> @@ -47384,262 +47384,262 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="274"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="287"/> <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="481"/> <source>Define Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="481"/> <source>Define Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="472"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="485"/> <source>Define guards for the current or a named patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="475"/> - <source><b>Define Guards</b><p>This opens a dialog to define guards for the current or a named patch.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="484"/> - <source>Drop All Guards</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="484"/> - <source>Drop All Guards...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="488"/> + <source><b>Define Guards</b><p>This opens a dialog to define guards for the current or a named patch.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="497"/> + <source>Drop All Guards</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="497"/> + <source>Drop All Guards...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="501"/> <source>Drop all guards of the current or a named patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="491"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="504"/> <source><b>Drop All Guards</b><p>This drops all guards of the current or a named patch.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="499"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="512"/> <source>List Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="499"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="512"/> <source>List Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="503"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="516"/> <source>List guards of the current or a named patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="506"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="519"/> <source><b>List Guards</b><p>This lists the guards of the current or a named patch.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="514"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="527"/> <source>List All Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="514"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="527"/> <source>List All Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="518"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="531"/> <source>List all guards of all patches</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="521"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="534"/> <source><b>List All Guards</b><p>This lists all guards of all patches.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="529"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="542"/> <source>Set Active Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="529"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="542"/> <source>Set Active Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="533"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="546"/> <source>Set the list of active guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="536"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="549"/> <source><b>Set Active Guards</b><p>This opens a dialog to set the active guards.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="544"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="557"/> <source>Deactivate Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="544"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="557"/> <source>Deactivate Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="548"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="561"/> <source>Deactivate all active guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="551"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="564"/> <source><b>Deactivate Guards</b><p>This deactivates all active guards.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="559"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="572"/> <source>Identify Active Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="559"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="572"/> <source>Identify Active Guards...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="563"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="576"/> <source>Show a list of active guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="566"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="579"/> <source><b>Identify Active Guards</b><p>This opens a dialog showing a list of active guards.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="704"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="717"/> <source>Guards</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="578"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="591"/> <source>Create Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="582"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="595"/> <source>Create a new patch queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="585"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="598"/> <source><b>Create Queue</b><p>This creates a new patch queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="593"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="606"/> <source>Rename Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="597"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="610"/> <source>Rename the active patch queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="600"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="613"/> <source><b>Rename Queue</b><p>This renames the active patch queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="608"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="621"/> <source>Delete Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="612"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="625"/> <source>Delete the reference to a patch queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="615"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="628"/> <source><b>Delete Queue</b><p>This deletes the reference to a patch queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="623"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="636"/> <source>Purge Queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="627"/> - <source>Delete the reference to a patch queue and remove the patch directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="631"/> - <source><b>Purge Queue</b><p>This deletes the reference to a patch queue and removes the patch directory.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="640"/> - <source>Activate Queue</source> + <source>Delete the reference to a patch queue and remove the patch directory</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="644"/> + <source><b>Purge Queue</b><p>This deletes the reference to a patch queue and removes the patch directory.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="653"/> + <source>Activate Queue</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="657"/> <source>Set the active queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="647"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="660"/> <source><b>Activate Queue</b><p>This sets the active queue.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="655"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="668"/> <source>List Queues</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="655"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="668"/> <source>List Queues...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="659"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="672"/> <source>List the available queues</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="662"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="675"/> <source><b>List Queues</b><p>This opens a dialog showing all available queues.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="717"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="730"/> <source>Queue Management</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="819"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="833"/> <source>The project should be reread. Do this now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="819"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="833"/> <source>Changing Applied Patches</source> <translation type="unfinished"></translation> </message> @@ -47698,6 +47698,26 @@ <source><b>Show Status</b><p>This shows the status of the queue repository.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="225"/> + <source>Show Summary</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="225"/> + <source>Show summary...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="229"/> + <source>Show summary information of the queue repository</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="232"/> + <source><b>Show summary</b><p>This shows some summary information of the queue repository.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Rebase</name>
--- a/i18n/eric5_it.ts Tue Mar 18 18:51:09 2014 +0100 +++ b/i18n/eric5_it.ts Tue Mar 18 18:55:25 2014 +0100 @@ -9341,7 +9341,7 @@ <translation>Modifica Breakpoint...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4882"/> + <location filename="../QScintilla/Editor.py" line="4883"/> <source>Enable breakpoint</source> <translation>Abilita breakpoint</translation> </message> @@ -9426,87 +9426,87 @@ <translation>L'autocomplentamento non è disponibile perchè non ci sono fonti impostate.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4885"/> + <location filename="../QScintilla/Editor.py" line="4886"/> <source>Disable breakpoint</source> <translation>Disabilita breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Code Coverage</source> <translation>Analisi codice</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5270"/> + <location filename="../QScintilla/Editor.py" line="5271"/> <source>Please select a coverage file</source> <translation>Per favore seleziona un file per l'analisi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Profile Data</source> <translation>Profilazione dati</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5449"/> + <location filename="../QScintilla/Editor.py" line="5450"/> <source>Please select a profile file</source> <translation>Per favore seleziona un file per la profilazione</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Macro Name</source> <translation>Nome Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5922"/> + <location filename="../QScintilla/Editor.py" line="5923"/> <source>Select a macro name:</source> <translation>Seleziona un nome per la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Macro files (*.macro)</source> <translation>File Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5950"/> + <location filename="../QScintilla/Editor.py" line="5951"/> <source>Load macro file</source> <translation>Carica un file di macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source>Error loading macro</source> <translation>Errore nel caricamento della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5993"/> + <location filename="../QScintilla/Editor.py" line="5994"/> <source>Save macro file</source> <translation>Salva un file di macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source>Save macro</source> <translation>Salva macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source>Error saving macro</source> <translation>Errore nel salvataggio della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Start Macro Recording</source> <translation>Avvia registrazione della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Macro Recording</source> <translation>Registrazione Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6065"/> + <location filename="../QScintilla/Editor.py" line="6066"/> <source>Enter name of the macro:</source> <translation>Inserisci un nome per la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6197"/> + <location filename="../QScintilla/Editor.py" line="6198"/> <source>File changed</source> <translation>File modificato</translation> </message> @@ -9526,7 +9526,7 @@ <translation>Elimina errori di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source>Drop Error</source> <translation>Errore Drop</translation> </message> @@ -9536,12 +9536,12 @@ <translation>Mostra i messaggi degli errori di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>Syntax Error</source> <translation>Errore di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5609"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>No syntax error message available.</source> <translation>Nessun messaggio degli errori di sintassi disponibile.</translation> </message> @@ -9571,17 +9571,17 @@ <translation>File non analizzato precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>Show Code Coverage Annotations</source> <translation>Mostra le annotazioni dell'analisi del codice</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5327"/> + <location filename="../QScintilla/Editor.py" line="5328"/> <source>All lines have been covered.</source> <translation>Tutte le linee sono state analizzate.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5334"/> + <location filename="../QScintilla/Editor.py" line="5335"/> <source>There is no coverage file available.</source> <translation>Non ci sono file di analisi disponibili.</translation> </message> @@ -9621,72 +9621,72 @@ <translation>Nessun linguaggio</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6516"/> + <location filename="../QScintilla/Editor.py" line="6517"/> <source>Resources</source> <translation>Risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6518"/> + <location filename="../QScintilla/Editor.py" line="6519"/> <source>Add file...</source> <translation>Aggiungi file...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6520"/> + <location filename="../QScintilla/Editor.py" line="6521"/> <source>Add files...</source> <translation>Aggiungi files...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6522"/> + <location filename="../QScintilla/Editor.py" line="6523"/> <source>Add aliased file...</source> <translation>Aggiungi file sinonimo...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6525"/> + <location filename="../QScintilla/Editor.py" line="6526"/> <source>Add localized resource...</source> <translation>Aggiungi una risorsa localizzata...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6548"/> + <location filename="../QScintilla/Editor.py" line="6549"/> <source>Add file resource</source> <translation>Aggiungi un file risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6564"/> + <location filename="../QScintilla/Editor.py" line="6565"/> <source>Add file resources</source> <translation>Aggiundi dei file risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Add aliased file resource</source> <translation>Aggiungi file sinonimo delle risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Package Diagram</source> <translation>Diagrammi del package</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6656"/> + <location filename="../QScintilla/Editor.py" line="6657"/> <source>Include class attributes?</source> <translation>Includi gli attributi della classe ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Application Diagram</source> <translation>Diagrammi dell'applicazione</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6690"/> + <location filename="../QScintilla/Editor.py" line="6691"/> <source>Include module names?</source> <translation>Includi i nomi dei moduli ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6529"/> + <location filename="../QScintilla/Editor.py" line="6530"/> <source>Add resource frame</source> <translation>Aggiungi riquadro delle risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6039"/> + <location filename="../QScintilla/Editor.py" line="6040"/> <source>Macro recording is already active. Start new?</source> <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation> </message> @@ -9736,12 +9736,12 @@ <translation>Nessun formato di export impostato. Annullamento...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Imports Diagram</source> <translation>Importa diagrammi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6676"/> + <location filename="../QScintilla/Editor.py" line="6677"/> <source>Include imports from external modules?</source> <translation>Includi gli import dai moduli esterni ?</translation> </message> @@ -9816,7 +9816,7 @@ <translation>Selezione l'analizzatore lessicale di Pygments da applicare.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Check spelling...</source> <translation>Controllo sillabazione...</translation> </message> @@ -9826,12 +9826,12 @@ <translation>Controllo sillabazione della selezione...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6981"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add to dictionary</source> <translation>Aggiungi al dizionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6983"/> + <location filename="../QScintilla/Editor.py" line="6984"/> <source>Ignore All</source> <translation>Ignora tutto</translation> </message> @@ -9871,37 +9871,37 @@ <translation><p>Il file <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5964"/> + <location filename="../QScintilla/Editor.py" line="5965"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Il file macro <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5973"/> + <location filename="../QScintilla/Editor.py" line="5974"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Il file macro <b>{0}</b> è danneggiato.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6026"/> + <location filename="../QScintilla/Editor.py" line="6027"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Il file macro <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6187"/> + <location filename="../QScintilla/Editor.py" line="6188"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation><p>Il file <b>{0}</b> è stato modificato mentre era aperto in eric5. Rileggerlo ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6355"/> + <location filename="../QScintilla/Editor.py" line="6356"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6495"/> + <location filename="../QScintilla/Editor.py" line="6496"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> non è un file.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6592"/> + <location filename="../QScintilla/Editor.py" line="6593"/> <source>Alias for file <b>{0}</b>:</source> <translation>Alias per il file <b>{0}</b>:</translation> </message> @@ -9941,22 +9941,22 @@ <translation><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6010"/> + <location filename="../QScintilla/Editor.py" line="6011"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Il file delle macro <b>{0}</b> esiste già.Sovrascriverlo ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5862"/> <source>Warning: {0}</source> <translation>Attenzione: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5868"/> + <location filename="../QScintilla/Editor.py" line="5869"/> <source>Error: {0}</source> <translation>Errore: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6193"/> + <location filename="../QScintilla/Editor.py" line="6194"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Attenzione:</b> con la riapertura le modifiche andranno perse.</translation> </message> @@ -10001,27 +10001,27 @@ <translation>Modifica precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>Sort Lines</source> <translation>Righe ordinate</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7394"/> + <location filename="../QScintilla/Editor.py" line="7395"/> <source>The selection contains illegal data for a numerical sort.</source> <translation>La selezione contiene dati non validi per un ordinamento numerico.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>Warning</source> <translation>Attenzione</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5797"/> + <location filename="../QScintilla/Editor.py" line="5798"/> <source>No warning messages available.</source> <translation>Nessun messaggio di attenzione disponibile.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5858"/> + <location filename="../QScintilla/Editor.py" line="5859"/> <source>Style: {0}</source> <translation>Stile: {0}</translation> </message> @@ -26190,202 +26190,202 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>Process Generation Error</source> <translation>Errore Generazione Processo</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="106"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="107"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Il processo {0} non può essere avviato. Assicurarsi che sia nel path.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="332"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/> <source><tr><td><b>Parent</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="337"/> <source><tr><td><b>Tags</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Tags</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="340"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/> <source><tr><td><b>Commit Message</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="346"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/> <source>empty repository</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="348"/> - <source>no revision checked out</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/> + <source>no revision checked out</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="350"/> <source><tr><td><b>Remarks</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/> <source><tr><td><b>Branch</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="361"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/> <source><tr><td><b>Bookmarks</b></td><td>{0}</td></tr></source> <translation type="unfinished"><tr><td><b>Segnalibri</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="369"/> <source>{0} modified</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="370"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/> <source>{0} added</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="372"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/> <source>{0} removed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="374"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="375"/> <source>{0} renamed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="376"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="377"/> <source>{0} copied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="378"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="379"/> <source>{0} deleted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="380"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="381"/> <source>{0} unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="382"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="383"/> <source>{0} ignored</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="384"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="385"/> <source>{0} unresolved</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="387"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="388"/> <source>{0} subrepos</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="390"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="391"/> <source>Merge needed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="392"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="393"/> <source>New Branch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="395"/> <source>Head is closed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="396"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="397"/> <source>No commit required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="398"/> - <source>New Branch Head</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="399"/> + <source>New Branch Head</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="400"/> <source><tr><td><b>Commit Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="404"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="405"/> <source>current</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="419"/> - <source>unknown status</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="420"/> + <source>unknown status</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="421"/> <source><tr><td><b>Update Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="425"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="426"/> <source>synched</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="429"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="430"/> <source>1 or more incoming</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="431"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="432"/> <source>{0} outgoing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="440"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="441"/> <source><tr><td><b>Remote Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="445"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="446"/> <source>empty queue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="449"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="450"/> <source>{0} applied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="452"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="453"/> <source>{0} unapplied</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="455"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="456"/> <source><tr><td><b>Queues Status</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="469"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="470"/> <source><p>No status information available.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="328"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/> <source><tr><td><b>Parent #{0}</b></td><td>{1}</td></tr></source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="406"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="407"/> <source>%n new changeset(s)<br/>Update required</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26393,7 +26393,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="410"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="411"/> <source>%n new changeset(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26401,7 +26401,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="412"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="413"/> <source>%n branch head(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26409,13 +26409,13 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="414"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="415"/> <source>{0}<br/>{1}<br/>Merge required</source> <comment>0 is changesets, 1 is branch heads</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="434"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="435"/> <source>%n incoming bookmark(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26423,7 +26423,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="437"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="438"/> <source>%n outgoing bookmark(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26431,12 +26431,12 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="460"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="461"/> <source>No files to upload</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="462"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="463"/> <source>%n file(s) to upload</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26444,7 +26444,7 @@ </translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="464"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="465"/> <source><tr><td><b>Large Files</b></td><td>{0}</td></tr></source> <translation type="unfinished"></translation> </message> @@ -45342,447 +45342,447 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="348"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="361"/> <source>Push Next Patch</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="240"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="253"/> <source>Push the next patch onto the stack</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="243"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="256"/> <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="364"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="377"/> <source>Push All Patches</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="255"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="268"/> <source>Push all patches onto the stack</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="258"/> - <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="380"/> - <source>Push Patches</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="271"/> + <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="393"/> + <source>Push Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="284"/> <source>Push patches onto the stack</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="274"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="287"/> <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="410"/> + <source>Pop Current Patch</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="300"/> + <source>Pop the current patch off the stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="303"/> + <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="427"/> + <source>Pop All Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="315"/> + <source>Pop all patches off the stack</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="318"/> + <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="443"/> + <source>Pop Patches</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="331"/> + <source>Pop patches off the stack</source> + <translation type="unfinished"></translation> + </message> + <message>