Sun, 07 Jan 2018 17:18:07 +0100
Added a context menu entry to "Execute Selection In Console".
--- a/APIs/Python3/eric6.api Sat Jan 06 18:59:24 2018 +0100 +++ b/APIs/Python3/eric6.api Sun Jan 07 17:18:07 2018 +0100 @@ -8935,6 +8935,7 @@ eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.UserSeparator?7 eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat._encodeString?5(string) eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.byteAt?4(pos) +eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.canPaste?4() eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.charAt?4(pos) eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.clearAllIndicators?4(indicator) eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.clearAlternateKeys?4()
--- a/Documentation/Help/source.qhp Sat Jan 06 18:59:24 2018 +0100 +++ b/Documentation/Help/source.qhp Sun Jan 07 17:18:07 2018 +0100 @@ -5185,6 +5185,7 @@ <keyword name="Editor.__encodingsMenuTriggered" id="Editor.__encodingsMenuTriggered" ref="eric6.QScintilla.Editor.html#Editor.__encodingsMenuTriggered" /> <keyword name="Editor.__eolChanged" id="Editor.__eolChanged" ref="eric6.QScintilla.Editor.html#Editor.__eolChanged" /> <keyword name="Editor.__eolMenuTriggered" id="Editor.__eolMenuTriggered" ref="eric6.QScintilla.Editor.html#Editor.__eolMenuTriggered" /> + <keyword name="Editor.__executeSelection" id="Editor.__executeSelection" ref="eric6.QScintilla.Editor.html#Editor.__executeSelection" /> <keyword name="Editor.__exportMenuTriggered" id="Editor.__exportMenuTriggered" ref="eric6.QScintilla.Editor.html#Editor.__exportMenuTriggered" /> <keyword name="Editor.__getCharacter" id="Editor.__getCharacter" ref="eric6.QScintilla.Editor.html#Editor.__getCharacter" /> <keyword name="Editor.__getCodeCoverageFile" id="Editor.__getCodeCoverageFile" ref="eric6.QScintilla.Editor.html#Editor.__getCodeCoverageFile" /> @@ -13259,6 +13260,7 @@ <keyword name="QsciScintillaCompat.__setFoldMarker" id="QsciScintillaCompat.__setFoldMarker" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.__setFoldMarker" /> <keyword name="QsciScintillaCompat._encodeString" id="QsciScintillaCompat._encodeString" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat._encodeString" /> <keyword name="QsciScintillaCompat.byteAt" id="QsciScintillaCompat.byteAt" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.byteAt" /> + <keyword name="QsciScintillaCompat.canPaste" id="QsciScintillaCompat.canPaste" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.canPaste" /> <keyword name="QsciScintillaCompat.charAt" id="QsciScintillaCompat.charAt" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.charAt" /> <keyword name="QsciScintillaCompat.clearAllIndicators" id="QsciScintillaCompat.clearAllIndicators" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.clearAllIndicators" /> <keyword name="QsciScintillaCompat.clearAlternateKeys" id="QsciScintillaCompat.clearAlternateKeys" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.clearAlternateKeys" />
--- a/Documentation/Source/eric6.QScintilla.Editor.html Sat Jan 06 18:59:24 2018 +0100 +++ b/Documentation/Source/eric6.QScintilla.Editor.html Sun Jan 07 17:18:07 2018 +0100 @@ -294,6 +294,9 @@ <td><a href="#Editor.__eolMenuTriggered">__eolMenuTriggered</a></td> <td>Private method to handle the selection of an eol type.</td> </tr><tr> +<td><a href="#Editor.__executeSelection">__executeSelection</a></td> +<td>Private slot to execute the selected text in the shell window.</td> +</tr><tr> <td><a href="#Editor.__exportMenuTriggered">__exportMenuTriggered</a></td> <td>Private method to handle the selection of an export format.</td> </tr><tr> @@ -1700,7 +1703,12 @@ <dd> reference to the action that was triggered (QAction) </dd> -</dl><a NAME="Editor.__exportMenuTriggered" ID="Editor.__exportMenuTriggered"></a> +</dl><a NAME="Editor.__executeSelection" ID="Editor.__executeSelection"></a> +<h4>Editor.__executeSelection</h4> +<b>__executeSelection</b>(<i></i>) +<p> + Private slot to execute the selected text in the shell window. +</p><a NAME="Editor.__exportMenuTriggered" ID="Editor.__exportMenuTriggered"></a> <h4>Editor.__exportMenuTriggered</h4> <b>__exportMenuTriggered</b>(<i>act</i>) <p>
--- a/Documentation/Source/eric6.QScintilla.QsciScintillaCompat.html Sat Jan 06 18:59:24 2018 +0100 +++ b/Documentation/Source/eric6.QScintilla.QsciScintillaCompat.html Sun Jan 07 17:18:07 2018 +0100 @@ -91,6 +91,9 @@ <td><a href="#QsciScintillaCompat.byteAt">byteAt</a></td> <td>Public method to get the raw character (bytes) at a position in the text.</td> </tr><tr> +<td><a href="#QsciScintillaCompat.canPaste">canPaste</a></td> +<td>Public method to test, if the paste action is available (i.e.</td> +</tr><tr> <td><a href="#QsciScintillaCompat.charAt">charAt</a></td> <td>Public method to get the character at a position in the text observing multibyte characters.</td> </tr><tr> @@ -492,6 +495,22 @@ raw character at the requested position or empty bytes, if the position is negative or past the end of the document (bytes) </dd> +</dl><a NAME="QsciScintillaCompat.canPaste" ID="QsciScintillaCompat.canPaste"></a> +<h4>QsciScintillaCompat.canPaste</h4> +<b>canPaste</b>(<i></i>) +<p> + Public method to test, if the paste action is available (i.e. if the + clipboard contains some text). +</p><dl> +<dt>Returns:</dt> +<dd> +flag indicating the availability of 'paste' +</dd> +</dl><dl> +<dt>Return Type:</dt> +<dd> +bool +</dd> </dl><a NAME="QsciScintillaCompat.charAt" ID="QsciScintillaCompat.charAt"></a> <h4>QsciScintillaCompat.charAt</h4> <b>charAt</b>(<i>pos</i>)
--- a/QScintilla/Editor.py Sat Jan 06 18:59:24 2018 +0100 +++ b/QScintilla/Editor.py Sun Jan 07 17:18:07 2018 +0100 @@ -718,10 +718,13 @@ self.menuActs["Copy"] = self.menu.addAction( UI.PixmapCache.getIcon("editCopy.png"), self.tr('Copy'), self.copy) - self.menu.addAction( + self.menuActs["Paste"] = self.menu.addAction( UI.PixmapCache.getIcon("editPaste.png"), self.tr('Paste'), self.paste) if not self.miniMenu: + self.menuActs["ExecuteSelection"] = self.menu.addAction( + self.tr("Execute Selection In Console"), + self.__executeSelection) self.menu.addSeparator() self.menu.addAction( UI.PixmapCache.getIcon("editIndent.png"), @@ -747,7 +750,9 @@ self.menu.addAction(self.tr('Select all'), self.__selectAll) self.menu.addAction( self.tr('Deselect all'), self.__deselectAll) - self.menu.addSeparator() + else: + self.menuActs["ExecuteSelection"] = None + self.menu.addSeparator() self.menuActs["SpellCheck"] = self.menu.addAction( UI.PixmapCache.getIcon("spellchecking.png"), self.tr('Check spelling...'), self.checkSpelling) @@ -5139,9 +5144,12 @@ self.menuActs["Undo"].setEnabled(self.isUndoAvailable()) self.menuActs["Redo"].setEnabled(self.isRedoAvailable()) self.menuActs["Revert"].setEnabled(self.isModified()) - if not self.miniMenu: - self.menuActs["Cut"].setEnabled(self.hasSelectedText()) - self.menuActs["Copy"].setEnabled(self.hasSelectedText()) + self.menuActs["Cut"].setEnabled(self.hasSelectedText()) + self.menuActs["Copy"].setEnabled(self.hasSelectedText()) + if self.menuActs["ExecuteSelection"] is not None: + self.menuActs["ExecuteSelection"].setEnabled( + self.hasSelectedText()) + self.menuActs["Paste"].setEnabled(self.canPaste()) if not self.isResourcesFile: if self.fileName and self.isPyFile(): self.menuActs["Show"].setEnabled(True) @@ -7149,7 +7157,7 @@ self.completer.setEnabled(False) ####################################################################### - ## Autocompleting templates + ## Auto-completing templates ####################################################################### def editorCommand(self, cmd): @@ -7970,3 +7978,10 @@ keys.append(key) for key in keys: del self.__mouseClickHandlers[key] + + def __executeSelection(self): + """ + Private slot to execute the selected text in the shell window. + """ + txt = self.selectedText() + e5App().getObject("Shell").executeLines(txt)
--- a/QScintilla/QsciScintillaCompat.py Sat Jan 06 18:59:24 2018 +0100 +++ b/QScintilla/QsciScintillaCompat.py Sun Jan 07 17:18:07 2018 +0100 @@ -744,6 +744,16 @@ except AttributeError: pass + def canPaste(self): + """ + Public method to test, if the paste action is available (i.e. if the + clipboard contains some text). + + @return flag indicating the availability of 'paste' + @rtype bool + """ + return self.SendScintilla(QsciScintilla.SCI_CANPASTE) + ########################################################################### ## methods to perform searches in target range ###########################################################################
--- a/changelog Sat Jan 06 18:59:24 2018 +0100 +++ b/changelog Sun Jan 07 17:18:07 2018 +0100 @@ -7,6 +7,8 @@ the editors (**Note**: The new session file format is not backward compatible and cannot be read by eric releases prior to 18.02) -- added basic support for Cython +- Editor + -- added a context menu entry to "Execute Selection In Console" Version 18.01: - bug fixes
--- a/i18n/eric6_cs.ts Sat Jan 06 18:59:24 2018 +0100 +++ b/i18n/eric6_cs.ts Sun Jan 07 17:18:07 2018 +0100 @@ -10195,7 +10195,7 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source>Open File</source> <translation>Otevřít soubor</translation> </message> @@ -10230,62 +10230,62 @@ <translation>Vložit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="732"/> + <location filename="../QScintilla/Editor.py" line="735"/> <source>Indent</source> <translation>Odsadit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="735"/> - <source>Unindent</source> - <translation>Zrušit odsazení</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="738"/> - <source>Comment</source> - <translation>Vytvořit komentář</translation> + <source>Unindent</source> + <translation>Zrušit odsazení</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="741"/> - <source>Uncomment</source> - <translation>Zrušit komentář</translation> + <source>Comment</source> + <translation>Vytvořit komentář</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="744"/> - <source>Stream Comment</source> - <translation>Proudový komentář</translation> + <source>Uncomment</source> + <translation>Zrušit komentář</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="747"/> + <source>Stream Comment</source> + <translation>Proudový komentář</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="750"/> <source>Box Comment</source> <translation>Obdélníkový komentář</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="751"/> - <source>Select to brace</source> - <translation>Vybrat až po závorku</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="753"/> - <source>Select all</source> - <translation>Vybrat vše</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="754"/> + <source>Select to brace</source> + <translation>Vybrat až po závorku</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="756"/> + <source>Select all</source> + <translation>Vybrat vše</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="757"/> <source>Deselect all</source> <translation>Zrušit celý výběr</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="768"/> + <location filename="../QScintilla/Editor.py" line="773"/> <source>Shorten empty lines</source> <translation>Zkrátit prázdné řádky</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="775"/> - <source>Use Monospaced Font</source> - <translation>Použít neporoporcionální font</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="780"/> + <source>Use Monospaced Font</source> + <translation>Použít neporoporcionální font</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="785"/> <source>Autosave enabled</source> <translation>Zapnout autosave</translation> </message> @@ -10295,22 +10295,22 @@ <translation type="obsolete">Zapnout autodoplňování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="823"/> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Close</source> <translation>Zavřít</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="829"/> + <location filename="../QScintilla/Editor.py" line="834"/> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="832"/> + <location filename="../QScintilla/Editor.py" line="837"/> <source>Save As...</source> <translation>Uložit jako...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="848"/> + <location filename="../QScintilla/Editor.py" line="853"/> <source>Print</source> <translation>Tisk</translation> </message> @@ -10320,447 +10320,447 @@ <translation type="obsolete">Autodoplňování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="877"/> + <location filename="../QScintilla/Editor.py" line="882"/> <source>Complete from Document</source> <translation type="unfinished">z dokumentu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879"/> + <location filename="../QScintilla/Editor.py" line="884"/> <source>Complete from APIs</source> <translation type="unfinished">z API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="881"/> + <location filename="../QScintilla/Editor.py" line="886"/> <source>Complete from Document and APIs</source> <translation type="unfinished">z dokumentu a API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="895"/> + <location filename="../QScintilla/Editor.py" line="900"/> <source>Check</source> <translation>Zkontrolovat</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="915"/> - <source>Show</source> - <translation>Zobrazit</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="917"/> - <source>Code metrics...</source> - <translation>Metrika kódu...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="918"/> - <source>Code coverage...</source> - <translation>Pokrytí kódu...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="920"/> - <source>Show code coverage annotations</source> - <translation>Zobrazit poznámky pokrytí kódu</translation> + <source>Show</source> + <translation>Zobrazit</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="922"/> + <source>Code metrics...</source> + <translation>Metrika kódu...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="923"/> + <source>Code coverage...</source> + <translation>Pokrytí kódu...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="925"/> + <source>Show code coverage annotations</source> + <translation>Zobrazit poznámky pokrytí kódu</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="928"/> <source>Hide code coverage annotations</source> <translation>Skrýt poznámky pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="926"/> + <location filename="../QScintilla/Editor.py" line="931"/> <source>Profile data...</source> <translation>Profilovat data...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939"/> + <location filename="../QScintilla/Editor.py" line="944"/> <source>Diagrams</source> <translation>Diagramy</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="941"/> + <location filename="../QScintilla/Editor.py" line="946"/> <source>Class Diagram...</source> <translation>Diagram třídy...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="943"/> + <location filename="../QScintilla/Editor.py" line="948"/> <source>Package Diagram...</source> <translation>Diagram balíčku...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="945"/> + <location filename="../QScintilla/Editor.py" line="950"/> <source>Imports Diagram...</source> <translation>Diagram importů...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="947"/> + <location filename="../QScintilla/Editor.py" line="952"/> <source>Application Diagram...</source> <translation>Diagram aplikace...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="965"/> + <location filename="../QScintilla/Editor.py" line="970"/> <source>Languages</source> <translation>Jazyky</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="968"/> + <location filename="../QScintilla/Editor.py" line="973"/> <source>No Language</source> <translation>Žádný jazyk</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214"/> + <location filename="../QScintilla/Editor.py" line="1219"/> <source>Toggle bookmark</source> <translation>Přepnout záložku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1216"/> + <location filename="../QScintilla/Editor.py" line="1221"/> <source>Next bookmark</source> <translation>Následující záložka</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1218"/> - <source>Previous bookmark</source> - <translation>Předchozí záložka</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1220"/> - <source>Clear all bookmarks</source> - <translation>Zrušit všechny záložky</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1223"/> - <source>Goto syntax error</source> - <translation>Jít na chybu syntaxe</translation> + <source>Previous bookmark</source> + <translation>Předchozí záložka</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1225"/> + <source>Clear all bookmarks</source> + <translation>Zrušit všechny záložky</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1228"/> + <source>Goto syntax error</source> + <translation>Jít na chybu syntaxe</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1230"/> <source>Show syntax error message</source> <translation>Zobrazit hlášení syntaktické chyby</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1227"/> + <location filename="../QScintilla/Editor.py" line="1232"/> <source>Clear syntax error</source> <translation>Zrušit chybu syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1240"/> - <source>Toggle breakpoint</source> - <translation>Přepnout breakpoint</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1242"/> - <source>Toggle temporary breakpoint</source> - <translation>Přepnout dočasný breakpoint</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1245"/> - <source>Edit breakpoint...</source> - <translation>Editovat breakpoint...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5326"/> - <source>Enable breakpoint</source> - <translation>Aktivovat breakpoint</translation> + <source>Toggle breakpoint</source> + <translation>Přepnout breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1247"/> + <source>Toggle temporary breakpoint</source> + <translation>Přepnout dočasný breakpoint</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1250"/> + <source>Edit breakpoint...</source> + <translation>Editovat breakpoint...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5334"/> + <source>Enable breakpoint</source> + <translation>Aktivovat breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1255"/> <source>Next breakpoint</source> <translation>Následující breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1252"/> - <source>Previous breakpoint</source> - <translation>Předchozí breakpoint</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1254"/> - <source>Clear all breakpoints</source> - <translation>Zrušit všechny breakpointy</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1257"/> + <source>Previous breakpoint</source> + <translation>Předchozí breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1259"/> + <source>Clear all breakpoints</source> + <translation>Zrušit všechny breakpointy</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>Next uncovered line</source> <translation>Následující odkrytá řádka</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1260"/> - <source>Previous uncovered line</source> - <translation>Předchozí odkrytá řádka</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1263"/> - <source>Next task</source> - <translation>Následující úloha</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1265"/> + <source>Previous uncovered line</source> + <translation>Předchozí odkrytá řádka</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1268"/> + <source>Next task</source> + <translation>Následující úloha</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1270"/> <source>Previous task</source> <translation>Předchozí úloha</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1277"/> + <location filename="../QScintilla/Editor.py" line="1282"/> <source>LMB toggles bookmarks</source> <translation>LMB přepínač záložek</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1281"/> + <location filename="../QScintilla/Editor.py" line="1286"/> <source>LMB toggles breakpoints</source> <translation>LMB přepínač breakpointů</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>Modification of Read Only file</source> <translation>Modifikace souboru otevřeného jen pro čtení</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Pokoušíte se změnit soubor, který je otevřen jen pro čtení. Prosím, uložte jej nejdříve do jiného souboru.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2515"/> + <location filename="../QScintilla/Editor.py" line="2520"/> <source>Printing...</source> <translation>Tisk...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2532"/> - <source>Printing completed</source> - <translation>Tisk je hotov</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2534"/> - <source>Error while printing</source> - <translation>Chyba během tisku</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2537"/> + <source>Printing completed</source> + <translation>Tisk je hotov</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2539"/> + <source>Error while printing</source> + <translation>Chyba během tisku</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2542"/> <source>Printing aborted</source> <translation>Tisk byl zrušen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source>Save File</source> <translation>Uložit soubor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source>File Modified</source> <translation>Soubor je modifikován</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion</source> <translation>Autodoplňování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Autodoplňování není dostupné protože zdrojová část autodoplňování nebyla nalezena.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5329"/> + <location filename="../QScintilla/Editor.py" line="5337"/> <source>Disable breakpoint</source> <translation>Deaktivovat breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <source>Code Coverage</source> <translation>Pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <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="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>Show Code Coverage Annotations</source> <translation>Zobrazit poznámky pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5762"/> + <location filename="../QScintilla/Editor.py" line="5770"/> <source>All lines have been covered.</source> <translation>Všechny řádky byly pokryty.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>There is no coverage file available.</source> <translation>Soubor s pokrytím není dostupný.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Profile Data</source> <translation>Profilovat data</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>Syntax Error</source> <translation>Chyba syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>No syntax error message available.</source> <translation>Hlášení syntaktické chyby není dostupné.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Macro Name</source> <translation>Název makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Select a macro name:</source> <translation>Vyberte název makra:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387"/> + <location filename="../QScintilla/Editor.py" line="6395"/> <source>Load macro file</source> <translation>Načíst soubor makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Macro files (*.macro)</source> <translation>Macro soubory (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <source>Error loading macro</source> <translation>Chyba při načítání makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Save macro file</source> <translation>Uložit soubor s makrem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <source>Save macro</source> <translation>Uložit makro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <source>Error saving macro</source> <translation>Chyba při ukládání makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <source>Start Macro Recording</source> <translation>Spustit záznam makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <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="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Macro Recording</source> <translation>Záznam makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Enter name of the macro:</source> <translation>Vložte název makra:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6640"/> + <location filename="../QScintilla/Editor.py" line="6648"/> <source>File changed</source> <translation>Soubor změněn</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6965"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Resources</source> <translation>Zdroje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6967"/> + <location filename="../QScintilla/Editor.py" line="6975"/> <source>Add file...</source> <translation>Přidat soubor...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6969"/> + <location filename="../QScintilla/Editor.py" line="6977"/> <source>Add files...</source> <translation>Přidat soubory...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6971"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Add aliased file...</source> <translation>Přidat zástupce souboru...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6974"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add localized resource...</source> <translation>Přidat lokalizované resource...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6986"/> <source>Add resource frame</source> <translation>Přidat resource frame</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6997"/> + <location filename="../QScintilla/Editor.py" line="7005"/> <source>Add file resource</source> <translation>Přidat soubor resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7013"/> + <location filename="../QScintilla/Editor.py" line="7021"/> <source>Add file resources</source> <translation>Přidat soubory resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Add aliased file resource</source> <translation>Přidat zástupce souboru resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Package Diagram</source> <translation>Diagram balíčku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Include class attributes?</source> <translation>Včetně atributů třídy?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Application Diagram</source> <translation>Diagram aplikace</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088"/> + <location filename="../QScintilla/Editor.py" line="1093"/> <source>Export as</source> <translation>Exportovat jako</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>Export source</source> <translation>Export zdroj</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>No export format given. Aborting...</source> <translation>Nebyl zadán forám exportu. Zrušeno....</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Imports Diagram</source> <translation>Importovat diagram</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Include imports from external modules?</source> <translation>Zahrnout importy z externích modulů?</translation> </message> @@ -10770,12 +10770,12 @@ <translation type="obsolete">dynamický</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="799"/> + <location filename="../QScintilla/Editor.py" line="804"/> <source>Calltip</source> <translation>Rychlé tipy</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="845"/> + <location filename="../QScintilla/Editor.py" line="850"/> <source>Print Preview</source> <translation>Náhled tisku</translation> </message> @@ -10785,77 +10785,77 @@ <translation><b>Okno editoru zdrojového kódu</b><p>V tomto okně se zobrazuje a edituje soubor se zdrojovým kódem. Můžete otevřít oken podle libosti. Jméno souboru se zobrazuje v titlebaru okna.</p><p>Kliknutím do prostoru mezi čísly řádku a značkami skládání nastavíte breakpoint. Přes kontextové menu je pak lze editovat.</p><p>Záložka se vkládá kliknutím na stejné místo se stisknutou klávesou Shift.</p><p>Tyto akce mohou být navráceny zpět i opětovným kliknutím nebo přes kontextové menu.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Typing aids enabled</source> <translation>Pomůcky při psaní zapnuty</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052"/> + <location filename="../QScintilla/Editor.py" line="1057"/> <source>End-of-Line Type</source> <translation>Typ Konec-řádku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1056"/> + <location filename="../QScintilla/Editor.py" line="1061"/> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1063"/> + <location filename="../QScintilla/Editor.py" line="1068"/> <source>Windows</source> <translation></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1070"/> + <location filename="../QScintilla/Editor.py" line="1075"/> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1011"/> + <location filename="../QScintilla/Editor.py" line="1016"/> <source>Encodings</source> <translation>Kódování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="991"/> + <location filename="../QScintilla/Editor.py" line="996"/> <source>Guessed</source> <translation>Odhadem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1332"/> + <location filename="../QScintilla/Editor.py" line="1337"/> <source>Alternatives</source> <translation>Alternativy</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Pygments Lexer</source> <translation></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Select the Pygments lexer to apply.</source> <translation>Použít Pygments lexer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7417"/> + <location filename="../QScintilla/Editor.py" line="7425"/> <source>Check spelling...</source> <translation>Zatrhnout kontrolu...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="760"/> + <location filename="../QScintilla/Editor.py" line="765"/> <source>Check spelling of selection...</source> <translation>Zatrhnout výběr kontroly...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7420"/> + <location filename="../QScintilla/Editor.py" line="7428"/> <source>Add to dictionary</source> <translation>Přidat do slovníku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7422"/> + <location filename="../QScintilla/Editor.py" line="7430"/> <source>Ignore All</source> <translation>Ignorovat vše</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="764"/> + <location filename="../QScintilla/Editor.py" line="769"/> <source>Remove from dictionary</source> <translation>Odebrat ze slovníku</translation> </message> @@ -10865,235 +10865,240 @@ <translation><p>Velikost souboru <b>{0}</b> je <b>{1} KB</b>. Opravdu jej chcete načíst?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1309"/> + <location filename="../QScintilla/Editor.py" line="1314"/> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>Pro formát exportu <b>{0}</b> není exportér dostupný. Zrušeno.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1328"/> + <location filename="../QScintilla/Editor.py" line="1333"/> <source>Alternatives ({0})</source> <translation>Alternativy ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Soubor <b>{0}</b> obsahuje neuložené změny.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nemůže být přejmenován.<br />Důvod: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3054"/> + <location filename="../QScintilla/Editor.py" line="3059"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nemůže být přejmenován.<br />Důvod: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6401"/> + <location filename="../QScintilla/Editor.py" line="6409"/> <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="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <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> <message> - <location filename="../QScintilla/Editor.py" line="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <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="6804"/> + <location filename="../QScintilla/Editor.py" line="6812"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <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="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Alias for file <b>{0}</b>:</source> <translation>Zástupce pro soubor <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1230"/> - <source>Next warning</source> - <translation>Následující varování</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1233"/> - <source>Previous warning</source> - <translation>Předchozí varování</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1235"/> + <source>Next warning</source> + <translation>Následující varování</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1238"/> + <source>Previous warning</source> + <translation>Předchozí varování</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1240"/> <source>Show warning message</source> <translation>Zobrazit varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1237"/> + <location filename="../QScintilla/Editor.py" line="1242"/> <source>Clear warnings</source> <translation>Vyčistit varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <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="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <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="6298"/> + <location filename="../QScintilla/Editor.py" line="6306"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6305"/> + <location filename="../QScintilla/Editor.py" line="6313"/> <source>Error: {0}</source> <translation type="unfinished">Chyby: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6636"/> + <location filename="../QScintilla/Editor.py" line="6644"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Open 'rejection' file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="951"/> + <location filename="../QScintilla/Editor.py" line="956"/> <source>Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1268"/> + <location filename="../QScintilla/Editor.py" line="1273"/> <source>Next change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1271"/> + <location filename="../QScintilla/Editor.py" line="1276"/> <source>Previous change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>Warning</source> <translation type="unfinished">Varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>No warning messages available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6295"/> + <location filename="../QScintilla/Editor.py" line="6303"/> <source>Style: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="815"/> + <location filename="../QScintilla/Editor.py" line="820"/> <source>New Document View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="818"/> + <location filename="../QScintilla/Editor.py" line="823"/> <source>New Document View (with new split)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="905"/> + <location filename="../QScintilla/Editor.py" line="910"/> <source>Tools</source> <translation type="unfinished">Nástroje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1033"/> + <location filename="../QScintilla/Editor.py" line="1038"/> <source>Re-Open With Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6630"/> + <location filename="../QScintilla/Editor.py" line="6638"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric6. Reread it?</p></source> <translation type="unfinished"><p>Soubor <b>{0}</b> byl změněn po té co již byl načten do eric5. Znovu načíst?</p> {0}?} {6.?}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="791"/> + <location filename="../QScintilla/Editor.py" line="796"/> <source>Automatic Completion enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="871"/> + <location filename="../QScintilla/Editor.py" line="876"/> <source>Complete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>Call-Tips Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="835"/> + <location filename="../QScintilla/Editor.py" line="840"/> <source>Save Copy...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="874"/> + <location filename="../QScintilla/Editor.py" line="879"/> <source>Clear Completions Cache</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="801"/> + <location filename="../QScintilla/Editor.py" line="806"/> <source>Code Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1274"/> + <location filename="../QScintilla/Editor.py" line="1279"/> <source>Clear changes</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../QScintilla/Editor.py" line="731"/> + <source>Execute Selection In Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorAPIsPage</name>
--- a/i18n/eric6_de.ts Sat Jan 06 18:59:24 2018 +0100 +++ b/i18n/eric6_de.ts Sun Jan 07 17:18:07 2018 +0100 @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage=""> +<!DOCTYPE TS> +<TS version="2.1" language="de"> <context> <name>AboutDialog</name> <message> @@ -1972,8 +1973,8 @@ </message> <message> <location filename="../Helpviewer/Bookmarks/BookmarksMenu.py" line="145"/> - <source>Open in New &Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem &Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New &Tab Ctrl+LMB</source> + <translation>In neuem &Register öffnen Strg+LMK</translation> </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="163"/> @@ -1982,8 +1983,8 @@ </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="166"/> - <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New Tab Ctrl+LMB</source> + <translation>In neuem Register öffnen Strg+LMK</translation> </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="169"/> @@ -2071,8 +2072,8 @@ </message> <message> <location filename="../Helpviewer/Bookmarks/BookmarksToolBar.py" line="93"/> - <source>Open in New &Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem &Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New &Tab Ctrl+LMB</source> + <translation>In neuem &Register öffnen Strg+LMK</translation> </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="87"/> @@ -2081,8 +2082,8 @@ </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="90"/> - <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New Tab Ctrl+LMB</source> + <translation>In neuem Register öffnen Strg+LMK</translation> </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="93"/> @@ -9840,12 +9841,12 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source>Open File</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source>Save File</source> <translation>Datei sichern</translation> </message> @@ -9875,137 +9876,137 @@ <translation>Einfügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="732"/> + <location filename="../QScintilla/Editor.py" line="735"/> <source>Indent</source> <translation>Einrücken</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="735"/> - <source>Unindent</source> - <translation>Einrücken rückgängig</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="738"/> - <source>Comment</source> - <translation>Kommentar</translation> + <source>Unindent</source> + <translation>Einrücken rückgängig</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="741"/> + <source>Comment</source> + <translation>Kommentar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="744"/> <source>Uncomment</source> <translation>Kommentar entfernen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="823"/> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="829"/> + <location filename="../QScintilla/Editor.py" line="834"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="832"/> + <location filename="../QScintilla/Editor.py" line="837"/> <source>Save As...</source> <translation>Speichern unter...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="753"/> + <location filename="../QScintilla/Editor.py" line="756"/> <source>Select all</source> <translation>Alles auswählen</translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="757"/> + <source>Deselect all</source> + <translation>Auswahl aufheben</translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="754"/> - <source>Deselect all</source> - <translation>Auswahl aufheben</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="751"/> <source>Select to brace</source> <translation>Zur Klammer auswählen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="848"/> + <location filename="../QScintilla/Editor.py" line="853"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2515"/> + <location filename="../QScintilla/Editor.py" line="2520"/> <source>Printing...</source> <translation>Drucke...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2532"/> - <source>Printing completed</source> - <translation>Drucken beendet</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2534"/> - <source>Error while printing</source> - <translation>Fehler beim Drucken</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2537"/> + <source>Printing completed</source> + <translation>Drucken beendet</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2539"/> + <source>Error while printing</source> + <translation>Fehler beim Drucken</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2542"/> <source>Printing aborted</source> <translation>Drucken abgebrochen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6640"/> + <location filename="../QScintilla/Editor.py" line="6648"/> <source>File changed</source> <translation>Datei geändert</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="895"/> + <location filename="../QScintilla/Editor.py" line="900"/> <source>Check</source> <translation>Prüfen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source>File Modified</source> <translation>Datei geändert</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917"/> + <location filename="../QScintilla/Editor.py" line="922"/> <source>Code metrics...</source> <translation>Quelltextmetriken...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="918"/> + <location filename="../QScintilla/Editor.py" line="923"/> <source>Code coverage...</source> <translation>Quelltext Abdeckung...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="926"/> + <location filename="../QScintilla/Editor.py" line="931"/> <source>Profile data...</source> <translation>Profildaten...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="915"/> + <location filename="../QScintilla/Editor.py" line="920"/> <source>Show</source> <translation>Zeige</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="744"/> - <source>Stream Comment</source> - <translation>Stream Kommentar</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="747"/> + <source>Stream Comment</source> + <translation>Stream Kommentar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="750"/> <source>Box Comment</source> <translation>Box Kommentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>Modification of Read Only file</source> <translation>Änderungsversuch für eine schreibgeschützte Datei</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Sie versuchen, eine schreibgeschützte Datei zu ändern. Bitte speichern Sie sie zuerst in eine andere Datei.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="965"/> + <location filename="../QScintilla/Editor.py" line="970"/> <source>Languages</source> <translation>Sprachen</translation> </message> @@ -10015,262 +10016,262 @@ <translation>Zurück zum letzten gesichert Zustand</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Macro Name</source> <translation>Makro Name</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Select a macro name:</source> <translation>Wähle einen Makro Namen:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Macro files (*.macro)</source> <translation>Makrodateien (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387"/> + <location filename="../QScintilla/Editor.py" line="6395"/> <source>Load macro file</source> <translation>Lade Makrodatei</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <source>Error loading macro</source> <translation>Fehler beim Makro Laden</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Save macro file</source> <translation>Makrodatei schreiben</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <source>Save macro</source> <translation>Makro speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <source>Error saving macro</source> <translation>Fehler beim Makro speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <source>Start Macro Recording</source> <translation>Makroaufzeichnung starten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Macro Recording</source> <translation>Makroaufzeichnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Enter name of the macro:</source> <translation>Gib einen Namen für das Makro ein:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214"/> + <location filename="../QScintilla/Editor.py" line="1219"/> <source>Toggle bookmark</source> <translation>Lesezeichen setzen/löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1216"/> + <location filename="../QScintilla/Editor.py" line="1221"/> <source>Next bookmark</source> <translation>Nächstes Lesezeichen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1218"/> + <location filename="../QScintilla/Editor.py" line="1223"/> <source>Previous bookmark</source> <translation>Vorheriges Lesezeichen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220"/> + <location filename="../QScintilla/Editor.py" line="1225"/> <source>Clear all bookmarks</source> <translation>Alle Lesezeichen löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1240"/> - <source>Toggle breakpoint</source> - <translation>Haltepunkt setzen/löschen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1277"/> - <source>LMB toggles bookmarks</source> - <translation>LMK schaltet Lesezeichen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1281"/> - <source>LMB toggles breakpoints</source> - <translation>LMK schaltet Haltepunkte</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1250"/> - <source>Next breakpoint</source> - <translation>Nächster Haltepunkt</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1252"/> - <source>Previous breakpoint</source> - <translation>Vorheriger Haltepunkt</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1254"/> - <source>Clear all breakpoints</source> - <translation>Alle Haltepunkte löschen</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1245"/> + <source>Toggle breakpoint</source> + <translation>Haltepunkt setzen/löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1282"/> + <source>LMB toggles bookmarks</source> + <translation>LMK schaltet Lesezeichen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1286"/> + <source>LMB toggles breakpoints</source> + <translation>LMK schaltet Haltepunkte</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1255"/> + <source>Next breakpoint</source> + <translation>Nächster Haltepunkt</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1257"/> + <source>Previous breakpoint</source> + <translation>Vorheriger Haltepunkt</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1259"/> + <source>Clear all breakpoints</source> + <translation>Alle Haltepunkte löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1250"/> <source>Edit breakpoint...</source> <translation>Haltepunkt bearbeiten...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5326"/> + <location filename="../QScintilla/Editor.py" line="5334"/> <source>Enable breakpoint</source> <translation>Haltepunkt aktivieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5329"/> + <location filename="../QScintilla/Editor.py" line="5337"/> <source>Disable breakpoint</source> <translation>Haltepunkt deaktivieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <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="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Profile Data</source> <translation>Profildaten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Please select a profile file</source> <translation>Bitte wählen Sie eine Datei mit Profildaten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion</source> <translation>Automatische Vervollständigung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Die automatische Vervollständigung ist nicht verfügbar, da keine Quelle gesetzt ist.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="775"/> - <source>Use Monospaced Font</source> - <translation>Benutze Monospace Font</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="768"/> - <source>Shorten empty lines</source> - <translation>Leere Zeilen verkürzen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1223"/> - <source>Goto syntax error</source> - <translation>Zu Syntaxfehler gehen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1227"/> - <source>Clear syntax error</source> - <translation>Syntaxfehler löschen</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="780"/> + <source>Use Monospaced Font</source> + <translation>Benutze Monospace Font</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="773"/> + <source>Shorten empty lines</source> + <translation>Leere Zeilen verkürzen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1228"/> + <source>Goto syntax error</source> + <translation>Zu Syntaxfehler gehen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1232"/> + <source>Clear syntax error</source> + <translation>Syntaxfehler löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="785"/> <source>Autosave enabled</source> <translation>Autom. Speicherung aktiv</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1225"/> + <location filename="../QScintilla/Editor.py" line="1230"/> <source>Show syntax error message</source> <translation>Zeige Syntaxfehlermeldung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>Syntax Error</source> <translation>Syntaxfehler</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>No syntax error message available.</source> <translation>Keine Syntaxfehlermeldung verfügbar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1242"/> + <location filename="../QScintilla/Editor.py" line="1247"/> <source>Toggle temporary breakpoint</source> <translation>Temporären Haltepunkt setzen/löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="920"/> + <location filename="../QScintilla/Editor.py" line="925"/> <source>Show code coverage annotations</source> <translation>Markiere Zeilen ohne Abdeckung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="923"/> + <location filename="../QScintilla/Editor.py" line="928"/> <source>Hide code coverage annotations</source> <translation>Lösche Abdeckungsmarkierungen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>Next uncovered line</source> <translation>Nächste nichtabgedeckte Zeile</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1260"/> + <location filename="../QScintilla/Editor.py" line="1265"/> <source>Previous uncovered line</source> <translation>Vorige nichtabgedeckte Zeile</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>Show Code Coverage Annotations</source> <translation>Zeilen ohne Abdeckung Markieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5762"/> + <location filename="../QScintilla/Editor.py" line="5770"/> <source>All lines have been covered.</source> <translation>Alle Zeilen sind abgedeckt.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>There is no coverage file available.</source> <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Die Datei <b>{0}</b> enthält ungesicherte Änderungen.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6401"/> + <location filename="../QScintilla/Editor.py" line="6409"/> <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="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <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="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <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="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> @@ -10280,177 +10281,177 @@ <translation><p>Die Größe der Datei <b>{0}</b> ist <b>{1} KB<7B>. Soll sie wirklich geladen werden?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939"/> + <location filename="../QScintilla/Editor.py" line="944"/> <source>Diagrams</source> <translation>Diagramme</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="941"/> + <location filename="../QScintilla/Editor.py" line="946"/> <source>Class Diagram...</source> <translation>Klassendiagramm...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="943"/> + <location filename="../QScintilla/Editor.py" line="948"/> <source>Package Diagram...</source> <translation>Package Diagramm...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="945"/> + <location filename="../QScintilla/Editor.py" line="950"/> <source>Imports Diagram...</source> <translation>Imports-Diagramm...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="947"/> + <location filename="../QScintilla/Editor.py" line="952"/> <source>Application Diagram...</source> <translation>Applikations-Diagramm...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="968"/> + <location filename="../QScintilla/Editor.py" line="973"/> <source>No Language</source> <translation>Keine Sprache</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6804"/> + <location filename="../QScintilla/Editor.py" line="6812"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6965"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Resources</source> <translation>Ressourcen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6967"/> + <location filename="../QScintilla/Editor.py" line="6975"/> <source>Add file...</source> <translation>Datei hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6969"/> + <location filename="../QScintilla/Editor.py" line="6977"/> <source>Add files...</source> <translation>Dateien hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6971"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Add aliased file...</source> <translation>Aliased-Datei hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6974"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add localized resource...</source> <translation>Lokalisierte Ressource hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6997"/> + <location filename="../QScintilla/Editor.py" line="7005"/> <source>Add file resource</source> <translation>Dateiressource hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7013"/> + <location filename="../QScintilla/Editor.py" line="7021"/> <source>Add file resources</source> <translation>Dateiressourcen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Add aliased file resource</source> <translation>Aliased-Dateiressourcen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <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="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Package Diagram</source> <translation>Package-Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Include class attributes?</source> <translation>Klassenattribute anzeigen?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6986"/> <source>Add resource frame</source> <translation>Ressourcenrahmen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <source>Macro recording is already active. Start new?</source> <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1263"/> + <location filename="../QScintilla/Editor.py" line="1268"/> <source>Next task</source> <translation>Nächste Aufgabe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1265"/> + <location filename="../QScintilla/Editor.py" line="1270"/> <source>Previous task</source> <translation>Vorherige Aufgabe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="877"/> + <location filename="../QScintilla/Editor.py" line="882"/> <source>Complete from Document</source> <translation>Vervollständigung vom Dokument</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879"/> + <location filename="../QScintilla/Editor.py" line="884"/> <source>Complete from APIs</source> <translation>Vervollständigung von APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="881"/> + <location filename="../QScintilla/Editor.py" line="886"/> <source>Complete from Document and APIs</source> <translation>Vervollständigung vom Dokument und von APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088"/> + <location filename="../QScintilla/Editor.py" line="1093"/> <source>Export as</source> <translation>Exportieren als</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>Export source</source> <translation>Quelltext exportieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1309"/> + <location filename="../QScintilla/Editor.py" line="1314"/> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>Für das Exportformat <b>{0}</b> steht kein Exporter zur Verfügung. Abbruch...</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>No export format given. Aborting...</source> <translation>Kein Exportformat angegeben. Abbruch...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Imports Diagram</source> <translation>Imports Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Include imports from external modules?</source> <translation>Imports externer Module anzeigen?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="799"/> + <location filename="../QScintilla/Editor.py" line="804"/> <source>Calltip</source> <translation>Calltip</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="845"/> + <location filename="../QScintilla/Editor.py" line="850"/> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> @@ -10460,270 +10461,275 @@ <translation><b>Quelltexteditorfenster</b><p>Dieses Fenster wird zum Bearbeiten von Quelltexten benutzt. Sie können beliebig viele dieser Fenster öffnen. Der Name der Datei wird im Titel des Fensters dargestellt.</p><p>Um Haltepunkte zu setzen, klicken sie in den Raum zwischen den Zeilennummern und der Faltungsspalte. Über das Kontextmenü des Bereiches links des Editors können Haltepunkte bearbeitet werden.</p><p>Um Lesezeichen zu setzen, drücken Sie die Shift-Taste und klicken in den Raum zwischen den Zeilennummern und der Faltungsspalte.</p><p>Diese Aktionen können über das Kontextmenü umgedreht werden.</p><p>Ein Klick auf einen Syntaxfehler-Marker mit gedrückter Strg-Taste zeigt die zugehörige Fehlermeldung an.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Typing aids enabled</source> <translation>Eingabehilfen aktiv</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052"/> + <location filename="../QScintilla/Editor.py" line="1057"/> <source>End-of-Line Type</source> <translation>Zeilenendemarkierung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1056"/> + <location filename="../QScintilla/Editor.py" line="1061"/> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1063"/> + <location filename="../QScintilla/Editor.py" line="1068"/> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1070"/> + <location filename="../QScintilla/Editor.py" line="1075"/> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1011"/> + <location filename="../QScintilla/Editor.py" line="1016"/> <source>Encodings</source> <translation>Kodierungen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="991"/> + <location filename="../QScintilla/Editor.py" line="996"/> <source>Guessed</source> <translation>Ermittelt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1332"/> + <location filename="../QScintilla/Editor.py" line="1337"/> <source>Alternatives</source> <translation>Alternativen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1328"/> + <location filename="../QScintilla/Editor.py" line="1333"/> <source>Alternatives ({0})</source> <translation>Alternativen ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Pygments Lexer</source> <translation>Pygments Lexer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Select the Pygments lexer to apply.</source> <translation>Wähle den anzuwendenden Pygments Lexer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7417"/> + <location filename="../QScintilla/Editor.py" line="7425"/> <source>Check spelling...</source> <translation>Rechtschreibprüfung...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="760"/> + <location filename="../QScintilla/Editor.py" line="765"/> <source>Check spelling of selection...</source> <translation>Rechtschreibprüfung für Auswahl...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7420"/> + <location filename="../QScintilla/Editor.py" line="7428"/> <source>Add to dictionary</source> <translation>Zum Wörterbuch hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7422"/> + <location filename="../QScintilla/Editor.py" line="7430"/> <source>Ignore All</source> <translation>Alle ignorieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="764"/> + <location filename="../QScintilla/Editor.py" line="769"/> <source>Remove from dictionary</source> <translation>Aus dem Wörterbuch entfernen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geöffnet werden.<br />Ursache: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3054"/> + <location filename="../QScintilla/Editor.py" line="3059"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gesichert werden.<br/>Grund: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1230"/> - <source>Next warning</source> - <translation>Nächste Warnung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1233"/> - <source>Previous warning</source> - <translation>Vorherige Warnung</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1235"/> + <source>Next warning</source> + <translation>Nächste Warnung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1238"/> + <source>Previous warning</source> + <translation>Vorherige Warnung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1240"/> <source>Show warning message</source> <translation>Zeige Warnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1237"/> + <location filename="../QScintilla/Editor.py" line="1242"/> <source>Clear warnings</source> <translation>Warnungen löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <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="6298"/> + <location filename="../QScintilla/Editor.py" line="6306"/> <source>Warning: {0}</source> <translation>Warnung: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6305"/> + <location filename="../QScintilla/Editor.py" line="6313"/> <source>Error: {0}</source> <translation>Fehler: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6636"/> + <location filename="../QScintilla/Editor.py" line="6644"/> <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> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Open 'rejection' file</source> <translation>Öffne „Ablehnungs“-Datei</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="951"/> + <location filename="../QScintilla/Editor.py" line="956"/> <source>Load Diagram...</source> <translation>Diagramm laden...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1268"/> + <location filename="../QScintilla/Editor.py" line="1273"/> <source>Next change</source> <translation>Nächste Änderung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1271"/> + <location filename="../QScintilla/Editor.py" line="1276"/> <source>Previous change</source> <translation>Vorherige Änderung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <source>Sort Lines</source> <translation>Zeilen sortieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <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="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>Warning</source> <translation>Warnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>No warning messages available.</source> <translation>Keine Warnmeldungen verfügbar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6295"/> + <location filename="../QScintilla/Editor.py" line="6303"/> <source>Style: {0}</source> <translation>Stil: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="815"/> + <location filename="../QScintilla/Editor.py" line="820"/> <source>New Document View</source> <translation>Neue Dokumentenansicht</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="818"/> + <location filename="../QScintilla/Editor.py" line="823"/> <source>New Document View (with new split)</source> <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="905"/> + <location filename="../QScintilla/Editor.py" line="910"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1033"/> + <location filename="../QScintilla/Editor.py" line="1038"/> <source>Re-Open With Encoding</source> <translation>Öffnen mit Kodierung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6630"/> + <location filename="../QScintilla/Editor.py" line="6638"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric6. Reread it?</p></source> <translation><p>Die Datei <b>{0}</b> wurde geändert, während sie in eric6 geöffnet war. Neu einlesen?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="791"/> + <location filename="../QScintilla/Editor.py" line="796"/> <source>Automatic Completion enabled</source> <translation>Automatische Vervollständigung aktiv</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="871"/> + <location filename="../QScintilla/Editor.py" line="876"/> <source>Complete</source> <translation>Vervollständigen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>Auto-Completion Provider</source> <translation>Provider für automatische Vervollständigungen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>Der Provider für automatische Vervollständigungen namens '{0}' ist bereits registriert. Die Wiederholung wird ignoriert.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>Call-Tips Provider</source> <translation>Calltipps-Provider</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>Der Calltipps-Provider namens '{0}' ist bereits registriert. Die Wiederholung wird ignoriert.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>Register Mouse Click Handler</source> <translation>Maus Klick Handler registrieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation>Ein Maus Klick Handler für "{0}" wurde bereits durch "{1}" registriert. Die Anfrage durch "{2}" wird abgebrochen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="835"/> + <location filename="../QScintilla/Editor.py" line="840"/> <source>Save Copy...</source> <translation>Kopie speichern...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="874"/> + <location filename="../QScintilla/Editor.py" line="879"/> <source>Clear Completions Cache</source> <translation>Vervollständigungsspeicher löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="801"/> + <location filename="../QScintilla/Editor.py" line="806"/> <source>Code Info</source> <translation>Code Info</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1274"/> + <location filename="../QScintilla/Editor.py" line="1279"/> <source>Clear changes</source> <translation>Änderungsmarker löschen</translation> </message> + <message> + <location filename="../QScintilla/Editor.py" line="731"/> + <source>Execute Selection In Console</source> + <translation>Auswahl in Konsole ausführen</translation> + </message> </context> <context> <name>EditorAPIsPage</name> @@ -24718,8 +24724,8 @@ </message> <message> <location filename="../Helpviewer/HelpBrowserWV.py" line="1219"/> - <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>Link in neuem Fenster öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open Link in New Tab Ctrl+LMB</source> + <translation>Link in neuem Fenster öffnen Strg+LMK</translation> </message> <message> <location filename="../Helpviewer/HelpBrowserWV.py" line="1292"/> @@ -81937,8 +81943,8 @@ </message> <message> <location filename="../WebBrowser/WebBrowserView.py" line="618"/> - <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>Link in neuem Fenster öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open Link in New Tab Ctrl+LMB</source> + <translation>Link in neuem Fenster öffnen Strg+LMK</translation> </message> <message> <location filename="../WebBrowser/WebBrowserView.py" line="622"/>
--- a/i18n/eric6_empty.ts Sat Jan 06 18:59:24 2018 +0100 +++ b/i18n/eric6_empty.ts Sun Jan 07 17:18:07 2018 +0100 @@ -9731,7 +9731,7 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source>Open File</source> <translation type="unfinished"></translation> </message> @@ -9776,845 +9776,850 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="732"/> + <location filename="../QScintilla/Editor.py" line="735"/> <source>Indent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="735"/> - <source>Unindent</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="738"/> - <source>Comment</source> + <source>Unindent</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="741"/> - <source>Uncomment</source> + <source>Comment</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="744"/> - <source>Stream Comment</source> + <source>Uncomment</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="747"/> + <source>Stream Comment</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="750"/> <source>Box Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="751"/> - <source>Select to brace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="753"/> - <source>Select all</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="754"/> + <source>Select to brace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="756"/> + <source>Select all</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="757"/> <source>Deselect all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7417"/> + <location filename="../QScintilla/Editor.py" line="7425"/> <source>Check spelling...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="760"/> + <location filename="../QScintilla/Editor.py" line="765"/> <source>Check spelling of selection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="764"/> + <location filename="../QScintilla/Editor.py" line="769"/> <source>Remove from dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="768"/> + <location filename="../QScintilla/Editor.py" line="773"/> <source>Shorten empty lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="775"/> - <source>Use Monospaced Font</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="780"/> + <source>Use Monospaced Font</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="785"/> <source>Autosave enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Typing aids enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="791"/> + <location filename="../QScintilla/Editor.py" line="796"/> <source>Automatic Completion enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="799"/> + <location filename="../QScintilla/Editor.py" line="804"/> <source>Calltip</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="815"/> + <location filename="../QScintilla/Editor.py" line="820"/> <source>New Document View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="818"/> - <source>New Document View (with new split)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="823"/> + <source>New Document View (with new split)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="829"/> + <location filename="../QScintilla/Editor.py" line="834"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="832"/> + <location filename="../QScintilla/Editor.py" line="837"/> <source>Save As...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="835"/> + <location filename="../QScintilla/Editor.py" line="840"/> <source>Save Copy...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Open 'rejection' file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="845"/> + <location filename="../QScintilla/Editor.py" line="850"/> <source>Print Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="848"/> + <location filename="../QScintilla/Editor.py" line="853"/> <source>Print</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="871"/> + <location filename="../QScintilla/Editor.py" line="876"/> <source>Complete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="877"/> + <location filename="../QScintilla/Editor.py" line="882"/> <source>Complete from Document</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879"/> + <location filename="../QScintilla/Editor.py" line="884"/> <source>Complete from APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="881"/> + <location filename="../QScintilla/Editor.py" line="886"/> <source>Complete from Document and APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="895"/> + <location filename="../QScintilla/Editor.py" line="900"/> <source>Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="905"/> + <location filename="../QScintilla/Editor.py" line="910"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="915"/> - <source>Show</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="917"/> - <source>Code metrics...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="918"/> - <source>Code coverage...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="920"/> - <source>Show code coverage annotations</source> + <source>Show</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="922"/> + <source>Code metrics...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="923"/> + <source>Code coverage...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="925"/> + <source>Show code coverage annotations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="928"/> <source>Hide code coverage annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="926"/> + <location filename="../QScintilla/Editor.py" line="931"/> <source>Profile data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939"/> + <location filename="../QScintilla/Editor.py" line="944"/> <source>Diagrams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="941"/> + <location filename="../QScintilla/Editor.py" line="946"/> <source>Class Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="943"/> + <location filename="../QScintilla/Editor.py" line="948"/> <source>Package Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="945"/> + <location filename="../QScintilla/Editor.py" line="950"/> <source>Imports Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="947"/> + <location filename="../QScintilla/Editor.py" line="952"/> <source>Application Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="951"/> + <location filename="../QScintilla/Editor.py" line="956"/> <source>Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="965"/> + <location filename="../QScintilla/Editor.py" line="970"/> <source>Languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="968"/> + <location filename="../QScintilla/Editor.py" line="973"/> <source>No Language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="991"/> + <location filename="../QScintilla/Editor.py" line="996"/> <source>Guessed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1332"/> + <location filename="../QScintilla/Editor.py" line="1337"/> <source>Alternatives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1011"/> + <location filename="../QScintilla/Editor.py" line="1016"/> <source>Encodings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1033"/> + <location filename="../QScintilla/Editor.py" line="1038"/> <source>Re-Open With Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052"/> + <location filename="../QScintilla/Editor.py" line="1057"/> <source>End-of-Line Type</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1056"/> + <location filename="../QScintilla/Editor.py" line="1061"/> <source>Unix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1063"/> + <location filename="../QScintilla/Editor.py" line="1068"/> <source>Windows</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1070"/> + <location filename="../QScintilla/Editor.py" line="1075"/> <source>Macintosh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088"/> + <location filename="../QScintilla/Editor.py" line="1093"/> <source>Export as</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214"/> + <location filename="../QScintilla/Editor.py" line="1219"/> <source>Toggle bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1216"/> + <location filename="../QScintilla/Editor.py" line="1221"/> <source>Next bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1218"/> + <location filename="../QScintilla/Editor.py" line="1223"/> <source>Previous bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220"/> + <location filename="../QScintilla/Editor.py" line="1225"/> <source>Clear all bookmarks</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="1245"/> + <source>Toggle breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1247"/> + <source>Toggle temporary breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1250"/> + <source>Edit breakpoint...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5334"/> + <source>Enable breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1255"/> + <source>Next breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1257"/> + <source>Previous breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1259"/> + <source>Clear all breakpoints</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1228"/> + <source>Goto syntax error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1230"/> + <source>Show syntax error message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1232"/> + <source>Clear syntax error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1235"/> + <source>Next warning</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1238"/> + <source>Previous warning</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1240"/> - <source>Toggle breakpoint</source> + <source>Show warning message</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1242"/> - <source>Toggle temporary breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1245"/> - <source>Edit breakpoint...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5326"/> - <source>Enable breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1250"/> - <source>Next breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1252"/> - <source>Previous breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1254"/> - <source>Clear all breakpoints</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1223"/> - <source>Goto syntax error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1225"/> - <source>Show syntax error message</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1227"/> - <source>Clear syntax error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1230"/> - <source>Next warning</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1233"/> - <source>Previous warning</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1235"/> - <source>Show warning message</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1237"/> <source>Clear warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>Next uncovered line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1260"/> - <source>Previous uncovered line</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1263"/> - <source>Next task</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1265"/> - <source>Previous task</source> + <source>Previous uncovered line</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1268"/> + <source>Next task</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1270"/> + <source>Previous task</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1273"/> <source>Next change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1271"/> + <location filename="../QScintilla/Editor.py" line="1276"/> <source>Previous change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1277"/> + <location filename="../QScintilla/Editor.py" line="1282"/> <source>LMB toggles bookmarks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1281"/> + <location filename="../QScintilla/Editor.py" line="1286"/> <source>LMB toggles breakpoints</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>Export source</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1309"/> + <location filename="../QScintilla/Editor.py" line="1314"/> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>No export format given. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1328"/> + <location filename="../QScintilla/Editor.py" line="1333"/> <source>Alternatives ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Pygments Lexer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>Modification of Read Only file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2515"/> + <location filename="../QScintilla/Editor.py" line="2520"/> <source>Printing...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2532"/> - <source>Printing completed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2534"/> - <source>Error while printing</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2537"/> + <source>Printing completed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2539"/> + <source>Error while printing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2542"/> <source>Printing aborted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source>File Modified</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source>Save File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3054"/> + <location filename="../QScintilla/Editor.py" line="3059"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>Call-Tips Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5329"/> + <location filename="../QScintilla/Editor.py" line="5337"/> <source>Disable breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>Show Code Coverage Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5762"/> + <location filename="../QScintilla/Editor.py" line="5770"/> <source>All lines have been covered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>There is no coverage file available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Please select a profile file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>Syntax Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>No syntax error message available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>Warning</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>No warning messages available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6295"/> + <location filename="../QScintilla/Editor.py" line="6303"/> <source>Style: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6298"/> + <location filename="../QScintilla/Editor.py" line="6306"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6305"/> + <location filename="../QScintilla/Editor.py" line="6313"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Macro Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Select a macro name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387"/> + <location filename="../QScintilla/Editor.py" line="6395"/> <source>Load macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Macro files (*.macro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <source>Error loading macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6401"/> + <location filename="../QScintilla/Editor.py" line="6409"/> <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="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Save macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <source>Save macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <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="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <source>Error saving macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <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="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <source>Start Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <source>Macro recording is already active. Start new?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Enter name of the macro:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6630"/> + <location filename="../QScintilla/Editor.py" line="6638"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric6. Reread it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6636"/> + <location filename="../QScintilla/Editor.py" line="6644"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6640"/> + <location filename="../QScintilla/Editor.py" line="6648"/> <source>File changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6804"/> + <location filename="../QScintilla/Editor.py" line="6812"/> <source>{0} (ro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6965"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6967"/> + <location filename="../QScintilla/Editor.py" line="6975"/> <source>Add file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6969"/> + <location filename="../QScintilla/Editor.py" line="6977"/> <source>Add files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6971"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Add aliased file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6974"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add localized resource...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6986"/> <source>Add resource frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6997"/> + <location filename="../QScintilla/Editor.py" line="7005"/> <source>Add file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7013"/> + <location filename="../QScintilla/Editor.py" line="7021"/> <source>Add file resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Add aliased file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Package Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Include class attributes?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Imports Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Include imports from external modules?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Include module names?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7420"/> + <location filename="../QScintilla/Editor.py" line="7428"/> <source>Add to dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7422"/> + <location filename="../QScintilla/Editor.py" line="7430"/> <source>Ignore All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="874"/> + <location filename="../QScintilla/Editor.py" line="879"/> <source>Clear Completions Cache</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="801"/> + <location filename="../QScintilla/Editor.py" line="806"/> <source>Code Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1274"/> + <location filename="../QScintilla/Editor.py" line="1279"/> <source>Clear changes</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../QScintilla/Editor.py" line="731"/> + <source>Execute Selection In Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorAPIsPage</name>
--- a/i18n/eric6_en.ts Sat Jan 06 18:59:24 2018 +0100 +++ b/i18n/eric6_en.ts Sun Jan 07 17:18:07 2018 +0100 @@ -9745,7 +9745,7 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source>Open File</source> <translation type="unfinished"></translation> </message> @@ -9790,845 +9790,850 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="732"/> + <location filename="../QScintilla/Editor.py" line="735"/> <source>Indent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="735"/> - <source>Unindent</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="738"/> - <source>Comment</source> + <source>Unindent</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="741"/> - <source>Uncomment</source> + <source>Comment</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="744"/> - <source>Stream Comment</source> + <source>Uncomment</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="747"/> + <source>Stream Comment</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="750"/> <source>Box Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="751"/> - <source>Select to brace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="753"/> - <source>Select all</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="754"/> + <source>Select to brace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="756"/> + <source>Select all</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="757"/> <source>Deselect all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7417"/> + <location filename="../QScintilla/Editor.py" line="7425"/> <source>Check spelling...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="760"/> + <location filename="../QScintilla/Editor.py" line="765"/> <source>Check spelling of selection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="764"/> + <location filename="../QScintilla/Editor.py" line="769"/> <source>Remove from dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="768"/> + <location filename="../QScintilla/Editor.py" line="773"/> <source>Shorten empty lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="775"/> - <source>Use Monospaced Font</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="780"/> + <source>Use Monospaced Font</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="785"/> <source>Autosave enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Typing aids enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="823"/> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="829"/> + <location filename="../QScintilla/Editor.py" line="834"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="832"/> + <location filename="../QScintilla/Editor.py" line="837"/> <source>Save As...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="845"/> + <location filename="../QScintilla/Editor.py" line="850"/> <source>Print Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="848"/> + <location filename="../QScintilla/Editor.py" line="853"/> <source>Print</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="877"/> + <location filename="../QScintilla/Editor.py" line="882"/> <source>Complete from Document</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879"/> + <location filename="../QScintilla/Editor.py" line="884"/> <source>Complete from APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="881"/> + <location filename="../QScintilla/Editor.py" line="886"/> <source>Complete from Document and APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="799"/> + <location filename="../QScintilla/Editor.py" line="804"/> <source>Calltip</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="895"/> + <location filename="../QScintilla/Editor.py" line="900"/> <source>Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="915"/> - <source>Show</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="917"/> - <source>Code metrics...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="918"/> - <source>Code coverage...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="920"/> - <source>Show code coverage annotations</source> + <source>Show</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="922"/> + <source>Code metrics...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="923"/> + <source>Code coverage...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="925"/> + <source>Show code coverage annotations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="928"/> <source>Hide code coverage annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="926"/> + <location filename="../QScintilla/Editor.py" line="931"/> <source>Profile data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939"/> + <location filename="../QScintilla/Editor.py" line="944"/> <source>Diagrams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="941"/> + <location filename="../QScintilla/Editor.py" line="946"/> <source>Class Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="943"/> + <location filename="../QScintilla/Editor.py" line="948"/> <source>Package Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="945"/> + <location filename="../QScintilla/Editor.py" line="950"/> <source>Imports Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="947"/> + <location filename="../QScintilla/Editor.py" line="952"/> <source>Application Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="965"/> + <location filename="../QScintilla/Editor.py" line="970"/> <source>Languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="968"/> + <location filename="../QScintilla/Editor.py" line="973"/> <source>No Language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="991"/> + <location filename="../QScintilla/Editor.py" line="996"/> <source>Guessed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1332"/> + <location filename="../QScintilla/Editor.py" line="1337"/> <source>Alternatives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1011"/> + <location filename="../QScintilla/Editor.py" line="1016"/> <source>Encodings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052"/> + <location filename="../QScintilla/Editor.py" line="1057"/> <source>End-of-Line Type</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1056"/> + <location filename="../QScintilla/Editor.py" line="1061"/> <source>Unix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1063"/> + <location filename="../QScintilla/Editor.py" line="1068"/> <source>Windows</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1070"/> + <location filename="../QScintilla/Editor.py" line="1075"/> <source>Macintosh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088"/> + <location filename="../QScintilla/Editor.py" line="1093"/> <source>Export as</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214"/> + <location filename="../QScintilla/Editor.py" line="1219"/> <source>Toggle bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1216"/> + <location filename="../QScintilla/Editor.py" line="1221"/> <source>Next bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1218"/> + <location filename="../QScintilla/Editor.py" line="1223"/> <source>Previous bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220"/> + <location filename="../QScintilla/Editor.py" line="1225"/> <source>Clear all bookmarks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1240"/> - <source>Toggle breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1242"/> - <source>Toggle temporary breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1245"/> - <source>Edit breakpoint...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5326"/> - <source>Enable breakpoint</source> + <source>Toggle breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1247"/> + <source>Toggle temporary breakpoint</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1250"/> + <source>Edit breakpoint...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5334"/> + <source>Enable breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1255"/> <source>Next breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1252"/> + <location filename="../QScintilla/Editor.py" line="1257"/> <source>Previous breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1254"/> + <location filename="../QScintilla/Editor.py" line="1259"/> <source>Clear all breakpoints</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1223"/> + <location filename="../QScintilla/Editor.py" line="1228"/> <source>Goto syntax error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1225"/> - <source>Show syntax error message</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1227"/> - <source>Clear syntax error</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1230"/> - <source>Next warning</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1233"/> - <source>Previous warning</source> + <source>Show syntax error message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1232"/> + <source>Clear syntax error</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1235"/> + <source>Next warning</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1238"/> + <source>Previous warning</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1240"/> <source>Show warning message</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1237"/> + <location filename="../QScintilla/Editor.py" line="1242"/> <source>Clear warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>Next uncovered line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1260"/> - <source>Previous uncovered line</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1263"/> - <source>Next task</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1265"/> + <source>Previous uncovered line</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1268"/> + <source>Next task</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1270"/> <source>Previous task</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1277"/> + <location filename="../QScintilla/Editor.py" line="1282"/> <source>LMB toggles bookmarks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1281"/> + <location filename="../QScintilla/Editor.py" line="1286"/> <source>LMB toggles breakpoints</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>Export source</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1309"/> + <location filename="../QScintilla/Editor.py" line="1314"/> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>No export format given. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1328"/> + <location filename="../QScintilla/Editor.py" line="1333"/> <source>Alternatives ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Pygments Lexer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>Modification of Read Only file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2515"/> + <location filename="../QScintilla/Editor.py" line="2520"/> <source>Printing...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2532"/> - <source>Printing completed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2534"/> - <source>Error while printing</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2537"/> + <source>Printing completed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2539"/> + <source>Error while printing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2542"/> <source>Printing aborted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source>File Modified</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source>Save File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3054"/> + <location filename="../QScintilla/Editor.py" line="3059"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5329"/> + <location filename="../QScintilla/Editor.py" line="5337"/> <source>Disable breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>Show Code Coverage Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5762"/> + <location filename="../QScintilla/Editor.py" line="5770"/> <source>All lines have been covered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>There is no coverage file available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Please select a profile file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>Syntax Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>No syntax error message available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Macro Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Select a macro name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387"/> + <location filename="../QScintilla/Editor.py" line="6395"/> <source>Load macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Macro files (*.macro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <source>Error loading macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6401"/> + <location filename="../QScintilla/Editor.py" line="6409"/> <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="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Save macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <source>Save macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <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="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <source>Error saving macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <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="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <source>Start Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <source>Macro recording is already active. Start new?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Enter name of the macro:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6640"/> + <location filename="../QScintilla/Editor.py" line="6648"/> <source>File changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6804"/> + <location filename="../QScintilla/Editor.py" line="6812"/> <source>{0} (ro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6965"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6967"/> + <location filename="../QScintilla/Editor.py" line="6975"/> <source>Add file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6969"/> + <location filename="../QScintilla/Editor.py" line="6977"/> <source>Add files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6971"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Add aliased file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6974"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add localized resource...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6986"/> <source>Add resource frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6997"/> + <location filename="../QScintilla/Editor.py" line="7005"/> <source>Add file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7013"/> + <location filename="../QScintilla/Editor.py" line="7021"/> <source>Add file resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Add aliased file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Package Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Include class attributes?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Imports Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Include imports from external modules?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Include module names?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7420"/> + <location filename="../QScintilla/Editor.py" line="7428"/> <source>Add to dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7422"/> + <location filename="../QScintilla/Editor.py" line="7430"/> <source>Ignore All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6298"/> + <location filename="../QScintilla/Editor.py" line="6306"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6305"/> + <location filename="../QScintilla/Editor.py" line="6313"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6636"/> + <location filename="../QScintilla/Editor.py" line="6644"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Open 'rejection' file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="951"/> + <location filename="../QScintilla/Editor.py" line="956"/> <source>Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1268"/> + <location filename="../QScintilla/Editor.py" line="1273"/> <source>Next change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1271"/> + <location filename="../QScintilla/Editor.py" line="1276"/> <source>Previous change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>Warning</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>No warning messages available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6295"/> + <location filename="../QScintilla/Editor.py" line="6303"/> <source>Style: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="815"/> + <location filename="../QScintilla/Editor.py" line="820"/> <source>New Document View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="818"/> + <location filename="../QScintilla/Editor.py" line="823"/> <source>New Document View (with new split)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="905"/> + <location filename="../QScintilla/Editor.py" line="910"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1033"/> + <location filename="../QScintilla/Editor.py" line="1038"/> <source>Re-Open With Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6630"/> + <location filename="../QScintilla/Editor.py" line="6638"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric6. Reread it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="791"/> + <location filename="../QScintilla/Editor.py" line="796"/> <source>Automatic Completion enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="871"/> + <location filename="../QScintilla/Editor.py" line="876"/> <source>Complete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>Call-Tips Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="835"/> + <location filename="../QScintilla/Editor.py" line="840"/> <source>Save Copy...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="874"/> + <location filename="../QScintilla/Editor.py" line="879"/> <source>Clear Completions Cache</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="801"/> + <location filename="../QScintilla/Editor.py" line="806"/> <source>Code Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1274"/> + <location filename="../QScintilla/Editor.py" line="1279"/> <source>Clear changes</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../QScintilla/Editor.py" line="731"/> + <source>Execute Selection In Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorAPIsPage</name>
--- a/i18n/eric6_es.ts Sat Jan 06 18:59:24 2018 +0100 +++ b/i18n/eric6_es.ts Sun Jan 07 17:18:07 2018 +0100 @@ -9834,7 +9834,7 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source>Open File</source> <translation>Abrir archivo</translation> </message> @@ -9869,537 +9869,537 @@ <translation>Pegar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="732"/> + <location filename="../QScintilla/Editor.py" line="735"/> <source>Indent</source> <translation>Indentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="735"/> - <source>Unindent</source> - <translation>Desindentar</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="738"/> - <source>Comment</source> - <translation>Pasar a comentario</translation> + <source>Unindent</source> + <translation>Desindentar</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="741"/> - <source>Uncomment</source> - <translation>Sacar de comentario</translation> + <source>Comment</source> + <translation>Pasar a comentario</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="744"/> - <source>Stream Comment</source> - <translation>Bloque de comentario</translation> + <source>Uncomment</source> + <translation>Sacar de comentario</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="747"/> + <source>Stream Comment</source> + <translation>Bloque de comentario</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="750"/> <source>Box Comment</source> <translation>Caja de comentario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="751"/> - <source>Select to brace</source> - <translation>Seleccionar hasta la llave ( '{' o '}' )</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="753"/> - <source>Select all</source> - <translation>Seleccionar todo</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="754"/> + <source>Select to brace</source> + <translation>Seleccionar hasta la llave ( '{' o '}' )</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="756"/> + <source>Select all</source> + <translation>Seleccionar todo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="757"/> <source>Deselect all</source> <translation>Deseleccionar todo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="768"/> + <location filename="../QScintilla/Editor.py" line="773"/> <source>Shorten empty lines</source> <translation>Acortar las líneas vacías</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="775"/> - <source>Use Monospaced Font</source> - <translation>Usar fuente monoespaciada</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="780"/> + <source>Use Monospaced Font</source> + <translation>Usar fuente monoespaciada</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="785"/> <source>Autosave enabled</source> <translation>Autoguardar habilitado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="823"/> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Close</source> <translation>Cerrar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="829"/> + <location filename="../QScintilla/Editor.py" line="834"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="832"/> + <location filename="../QScintilla/Editor.py" line="837"/> <source>Save As...</source> <translation>Guardar como...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="848"/> + <location filename="../QScintilla/Editor.py" line="853"/> <source>Print</source> <translation>Imprimir</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="877"/> + <location filename="../QScintilla/Editor.py" line="882"/> <source>Complete from Document</source> <translation>Completar desde documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879"/> + <location filename="../QScintilla/Editor.py" line="884"/> <source>Complete from APIs</source> <translation>Completar desde APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="881"/> + <location filename="../QScintilla/Editor.py" line="886"/> <source>Complete from Document and APIs</source> <translation>Completar desde Documento y APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="895"/> + <location filename="../QScintilla/Editor.py" line="900"/> <source>Check</source> <translation>Verificar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="915"/> - <source>Show</source> - <translation>Mostrar</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="917"/> - <source>Code metrics...</source> - <translation>Métricas de código...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="918"/> - <source>Code coverage...</source> - <translation>Cobertura de código...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="920"/> - <source>Show code coverage annotations</source> - <translation>Mostrar anotaciones de cobertura de codigo</translation> + <source>Show</source> + <translation>Mostrar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="922"/> + <source>Code metrics...</source> + <translation>Métricas de código...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="923"/> + <source>Code coverage...</source> + <translation>Cobertura de código...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="925"/> + <source>Show code coverage annotations</source> + <translation>Mostrar anotaciones de cobertura de codigo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="928"/> <source>Hide code coverage annotations</source> <translation>Ocultar anotaciones de cobertura de codigo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="926"/> + <location filename="../QScintilla/Editor.py" line="931"/> <source>Profile data...</source> <translation>Datos de profiling...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939"/> + <location filename="../QScintilla/Editor.py" line="944"/> <source>Diagrams</source> <translation>Diagramas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="941"/> + <location filename="../QScintilla/Editor.py" line="946"/> <source>Class Diagram...</source> <translation>Diagrama de clases...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="943"/> + <location filename="../QScintilla/Editor.py" line="948"/> <source>Package Diagram...</source> <translation>Diagrama de paquetes...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="945"/> + <location filename="../QScintilla/Editor.py" line="950"/> <source>Imports Diagram...</source> <translation>Diagrama de imports...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="947"/> + <location filename="../QScintilla/Editor.py" line="952"/> <source>Application Diagram...</source> <translation>Diagrama de aplicación...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="965"/> + <location filename="../QScintilla/Editor.py" line="970"/> <source>Languages</source> <translation>Lenguajes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="968"/> + <location filename="../QScintilla/Editor.py" line="973"/> <source>No Language</source> <translation>Ningún Lenguaje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088"/> + <location filename="../QScintilla/Editor.py" line="1093"/> <source>Export as</source> <translation>Exportar como</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214"/> + <location filename="../QScintilla/Editor.py" line="1219"/> <source>Toggle bookmark</source> <translation>Alternar marcador</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1216"/> + <location filename="../QScintilla/Editor.py" line="1221"/> <source>Next bookmark</source> <translation>Nuevo marcador</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1218"/> - <source>Previous bookmark</source> - <translation>Marcador anterior</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1220"/> - <source>Clear all bookmarks</source> - <translation>Borrar todos los marcadores</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1223"/> - <source>Goto syntax error</source> - <translation>Ir al error de sintaxis</translation> + <source>Previous bookmark</source> + <translation>Marcador anterior</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1225"/> + <source>Clear all bookmarks</source> + <translation>Borrar todos los marcadores</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1228"/> + <source>Goto syntax error</source> + <translation>Ir al error de sintaxis</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1230"/> <source>Show syntax error message</source> <translation>Ver el mensaje de error de sintaxis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1227"/> + <location filename="../QScintilla/Editor.py" line="1232"/> <source>Clear syntax error</source> <translation>Borrar error de sintaxis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1240"/> - <source>Toggle breakpoint</source> - <translation>Alternar punto de interrupción</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1242"/> - <source>Toggle temporary breakpoint</source> - <translation>Alternar punto de interrupción temporal</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1245"/> - <source>Edit breakpoint...</source> - <translation>Editar punto de interrupción...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5326"/> - <source>Enable breakpoint</source> - <translation>Activar punto de interrupción</translation> + <source>Toggle breakpoint</source> + <translation>Alternar punto de interrupción</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1247"/> + <source>Toggle temporary breakpoint</source> + <translation>Alternar punto de interrupción temporal</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1250"/> + <source>Edit breakpoint...</source> + <translation>Editar punto de interrupción...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5334"/> + <source>Enable breakpoint</source> + <translation>Activar punto de interrupción</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1255"/> <source>Next breakpoint</source> <translation>Siguiente punto de interrupción</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1252"/> - <source>Previous breakpoint</source> - <translation>Punto de interrupción anterior</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1254"/> - <source>Clear all breakpoints</source> - <translation>Borrar todos los puntos de interrupción</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1257"/> + <source>Previous breakpoint</source> + <translation>Punto de interrupción anterior</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1259"/> + <source>Clear all breakpoints</source> + <translation>Borrar todos los puntos de interrupción</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>Next uncovered line</source> <translation>Siguiente línea sin cobertura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1260"/> - <source>Previous uncovered line</source> - <translation>Anterior línea sin cobertura</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1263"/> - <source>Next task</source> - <translation>Nueva tarea</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1265"/> + <source>Previous uncovered line</source> + <translation>Anterior línea sin cobertura</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1268"/> + <source>Next task</source> + <translation>Nueva tarea</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1270"/> <source>Previous task</source> <translation>Tarea anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1277"/> + <location filename="../QScintilla/Editor.py" line="1282"/> <source>LMB toggles bookmarks</source> <translation>LMB (botón izquierdo del ratón) alterna marcadores</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1281"/> + <location filename="../QScintilla/Editor.py" line="1286"/> <source>LMB toggles breakpoints</source> <translation>LMB (botón izquierdo del ratón) alterna puntos de interrupción</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>Export source</source> <translation>Exportar fuente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>No export format given. Aborting...</source> <translation>No se ha proporcionado un formato de exportación. Abortando...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>Modification of Read Only file</source> <translation>Modificación de un archivo de solo lectura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Usted está intentando modificar un archivo solo lectura. Por favor guarde en otro archivo primero.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2515"/> + <location filename="../QScintilla/Editor.py" line="2520"/> <source>Printing...</source> <translation>Imprimiendo...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2532"/> - <source>Printing completed</source> - <translation>Impresión completa</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2534"/> - <source>Error while printing</source> - <translation>Error al imprimir</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2537"/> + <source>Printing completed</source> + <translation>Impresión completa</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2539"/> + <source>Error while printing</source> + <translation>Error al imprimir</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2542"/> <source>Printing aborted</source> <translation>Impresión cancelada</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source>File Modified</source> <translation>Archivo modificado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source>Save File</source> <translation>Guardar archivo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion</source> <translation>Autocompletar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Autocompletar no está disponible porque no hay origen de datos para autocompletar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5329"/> + <location filename="../QScintilla/Editor.py" line="5337"/> <source>Disable breakpoint</source> <translation>Deshabilitar punto de interrupción</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <source>Code Coverage</source> <translation>Cobertura de codigo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <source>Please select a coverage file</source> <translation>Por favor seleccione un archivo de cobertura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>Show Code Coverage Annotations</source> <translation>Mostrar Anotaciones de Cobertura de Código</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5762"/> + <location filename="../QScintilla/Editor.py" line="5770"/> <source>All lines have been covered.</source> <translation>Todas las líneas han sido cubiertas.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>There is no coverage file available.</source> <translation>No hay archivo de cobertura disponible.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Profile Data</source> <translation>Datos de profiling</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Please select a profile file</source> <translation>Por favor seleccione un archivo de profiling</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>Syntax Error</source> <translation>Error de sintaxis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <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="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Macro Name</source> <translation>Nombre de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Select a macro name:</source> <translation>Seleccione un nombre de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387"/> + <location filename="../QScintilla/Editor.py" line="6395"/> <source>Load macro file</source> <translation>Cargar archivo de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Macro files (*.macro)</source> <translation>Archivos de Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <source>Error loading macro</source> <translation>Error al cargar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Save macro file</source> <translation>Guardar archivo de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <source>Save macro</source> <translation>Guardar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <source>Error saving macro</source> <translation>Error al guardar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <source>Start Macro Recording</source> <translation>Comenzar grabación de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <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="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Macro Recording</source> <translation>Grabando macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Enter name of the macro:</source> <translation>Introduzca el nombre de la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6640"/> + <location filename="../QScintilla/Editor.py" line="6648"/> <source>File changed</source> <translation>Archivo modificado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <source>Drop Error</source> <translation>Error al soltar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6965"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Resources</source> <translation>Recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6967"/> + <location filename="../QScintilla/Editor.py" line="6975"/> <source>Add file...</source> <translation>Añadir archivo...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6969"/> + <location filename="../QScintilla/Editor.py" line="6977"/> <source>Add files...</source> <translation>Añadir archivos...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6971"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Add aliased file...</source> <translation>Añadir archivo con un alias...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6974"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add localized resource...</source> <translation>Añadir recursos localizados...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6986"/> <source>Add resource frame</source> <translation>Añadir ventana de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6997"/> + <location filename="../QScintilla/Editor.py" line="7005"/> <source>Add file resource</source> <translation>Añadir archivo de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7013"/> + <location filename="../QScintilla/Editor.py" line="7021"/> <source>Add file resources</source> <translation>Añadir archivo de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Add aliased file resource</source> <translation>Añadir archivo de recursos con un alias</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Package Diagram</source> <translation>Digrama de paquetes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Include class attributes?</source> <translation>¿Incluir atributos de clase?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Imports Diagram</source> <translation>Diagrama de imports</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Include imports from external modules?</source> <translation>¿Incluir los imports de módulos externos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Application Diagram</source> <translation>Diagrama de aplicación</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Include module names?</source> <translation>¿Incluir nombres de módulos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="799"/> + <location filename="../QScintilla/Editor.py" line="804"/> <source>Calltip</source> <translation>Consejo de llamada</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="845"/> + <location filename="../QScintilla/Editor.py" line="850"/> <source>Print Preview</source> <translation>Presentación preliminar</translation> </message> @@ -10409,77 +10409,77 @@ <translation><b>Una Ventana de Edición de Códigos Fuente</b><p>Esta ventana se utiliza para mostrar y editar un archivo de código fuente. Puede abrir tantas como desee. El nombre del archivo se muestra en la barra de título de la ventana.</p><p>Para insertar puntos de interrupción basta con hacer un click en el espacio entre los números de línea y los marcadores de plegado. Pueden editarse con el menú de contexto de los márgenes.</p><p>Para insertar marcadores solo hay que hacer Shift-click en el espacio entre los números de línea y los marcadores de plegado.</p><p>Estas acciones se pueden revertir utilizando el menú de contexto.</p><p>Haciendo Ctrl-click en un marcador de error sintáctico se muestra información sobre el dicho error.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Typing aids enabled</source> <translation>Ayudas al tecleo habilitadas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052"/> + <location filename="../QScintilla/Editor.py" line="1057"/> <source>End-of-Line Type</source> <translation>Tipo de fin-de-línea</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1056"/> + <location filename="../QScintilla/Editor.py" line="1061"/> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1063"/> + <location filename="../QScintilla/Editor.py" line="1068"/> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1070"/> + <location filename="../QScintilla/Editor.py" line="1075"/> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1011"/> + <location filename="../QScintilla/Editor.py" line="1016"/> <source>Encodings</source> <translation>Codificaciones</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="991"/> + <location filename="../QScintilla/Editor.py" line="996"/> <source>Guessed</source> <translation>Suposición</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1332"/> + <location filename="../QScintilla/Editor.py" line="1337"/> <source>Alternatives</source> <translation>Alternativas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Pygments Lexer</source> <translation>Analizador Léxico de Pygments</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Select the Pygments lexer to apply.</source> <translation>Seleccionar el Analizador Léxico de Pygments.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7417"/> + <location filename="../QScintilla/Editor.py" line="7425"/> <source>Check spelling...</source> <translation>Corrección ortográfica...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="760"/> + <location filename="../QScintilla/Editor.py" line="765"/> <source>Check spelling of selection...</source> <translation>Corrección ortográfica de la selección...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7420"/> + <location filename="../QScintilla/Editor.py" line="7428"/> <source>Add to dictionary</source> <translation>Añadir al diccionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7422"/> + <location filename="../QScintilla/Editor.py" line="7430"/> <source>Ignore All</source> <translation>Ignorar Todo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="764"/> + <location filename="../QScintilla/Editor.py" line="769"/> <source>Remove from dictionary</source> <translation>Eliminar del diccionario</translation> </message> @@ -10489,235 +10489,240 @@ <translation><p>El tamaño del archivo <b>{0}</b> es <b>{1} KB</b>. ¿Desea cargarlo de todos modos?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1309"/> + <location filename="../QScintilla/Editor.py" line="1314"/> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>No hay un exportador disponible para el formato de exportación <b>{0}</b>. Abortando...</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1328"/> + <location filename="../QScintilla/Editor.py" line="1333"/> <source>Alternatives ({0})</source> <translation>Alternativas ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>El archivo <b>{0}</b> tiene cambios sin guardar.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>El archivo<b>{0}</b> no puede ser abierto.<br />Causa: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3054"/> + <location filename="../QScintilla/Editor.py" line="3059"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>El archivo <b>{0}</b> no puede ser guardado.<br>Causa: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6401"/> + <location filename="../QScintilla/Editor.py" line="6409"/> <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="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <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="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <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="6804"/> + <location filename="../QScintilla/Editor.py" line="6812"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <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="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Alias for file <b>{0}</b>:</source> <translation>Alias para el archivo <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1230"/> - <source>Next warning</source> - <translation>Siguiente advertencia</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1233"/> - <source>Previous warning</source> - <translation>Anterior advertencia</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1235"/> + <source>Next warning</source> + <translation>Siguiente advertencia</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1238"/> + <source>Previous warning</source> + <translation>Anterior advertencia</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1240"/> <source>Show warning message</source> <translation>Mostrar mensaje de advertencia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1237"/> + <location filename="../QScintilla/Editor.py" line="1242"/> <source>Clear warnings</source> <translation>Limpiar advertencias</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>El archivo <b>{0}</b> ya existe. ¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <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="6298"/> + <location filename="../QScintilla/Editor.py" line="6306"/> <source>Warning: {0}</source> <translation>Advertencia: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6305"/> + <location filename="../QScintilla/Editor.py" line="6313"/> <source>Error: {0}</source> <translation>Error: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6636"/> + <location filename="../QScintilla/Editor.py" line="6644"/> <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> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Open 'rejection' file</source> <translation>Abrir archivo 'de rechazo'</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="951"/> + <location filename="../QScintilla/Editor.py" line="956"/> <source>Load Diagram...</source> <translation>Cargar Diagrama...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1268"/> + <location filename="../QScintilla/Editor.py" line="1273"/> <source>Next change</source> <translation>Siguiente cambio</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1271"/> + <location filename="../QScintilla/Editor.py" line="1276"/> <source>Previous change</source> <translation>Cambio anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <source>Sort Lines</source> <translation>Ordenar Líneas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <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="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>Warning</source> <translation>Advertencia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>No warning messages available.</source> <translation>No hay mensajes de advertencia disponibles.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6295"/> + <location filename="../QScintilla/Editor.py" line="6303"/> <source>Style: {0}</source> <translation>Estilo: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="815"/> + <location filename="../QScintilla/Editor.py" line="820"/> <source>New Document View</source> <translation>Nueva Vista de Documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="818"/> + <location filename="../QScintilla/Editor.py" line="823"/> <source>New Document View (with new split)</source> <translation>Nueva Vista de Documento (con nueva división)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="905"/> + <location filename="../QScintilla/Editor.py" line="910"/> <source>Tools</source> <translation>Herramientas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1033"/> + <location filename="../QScintilla/Editor.py" line="1038"/> <source>Re-Open With Encoding</source> <translation>Reabrir Con Codificación</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6630"/> + <location filename="../QScintilla/Editor.py" line="6638"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric6. Reread it?</p></source> <translation><p>El archivo <b>{0}</b> ha cambiado mientras estaba abierto en eric6. ¿Desea volver a cargarlo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="791"/> + <location filename="../QScintilla/Editor.py" line="796"/> <source>Automatic Completion enabled</source> <translation>Autocompletar habilitado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="871"/> + <location filename="../QScintilla/Editor.py" line="876"/> <source>Complete</source> <translation>Completo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>Auto-Completion Provider</source> <translation>Proveedor de Autocompletado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>El proveedor de lista de completado'{0}' ya está registrado. Se ignora la solicitud duplicada.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>Call-Tips Provider</source> <translation>Proveedor de Call-Tips</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>El proveedor de call-tips'{0}' ya está registrado. Se ignora la solicitud duplicada.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>Register Mouse Click Handler</source> <translation>Registrar Manejador de Clicks de Ratón</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation>Un manejador de clicks de ratón para "{0}" ya está registrado por "{1}". Abortando solicitud por "{2}"...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="835"/> + <location filename="../QScintilla/Editor.py" line="840"/> <source>Save Copy...</source> <translation>Guardar Copia...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="874"/> + <location filename="../QScintilla/Editor.py" line="879"/> <source>Clear Completions Cache</source> <translation>Limpiar Caché de Completado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="801"/> + <location filename="../QScintilla/Editor.py" line="806"/> <source>Code Info</source> <translation>Info del Código</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1274"/> + <location filename="../QScintilla/Editor.py" line="1279"/> <source>Clear changes</source> <translation>Limpiar cambios</translation> </message> + <message> + <location filename="../QScintilla/Editor.py" line="731"/> + <source>Execute Selection In Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorAPIsPage</name>
--- a/i18n/eric6_fr.ts Sat Jan 06 18:59:24 2018 +0100 +++ b/i18n/eric6_fr.ts Sun Jan 07 17:18:07 2018 +0100 @@ -10171,62 +10171,62 @@ <translation>Coller</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="732"/> + <location filename="../QScintilla/Editor.py" line="735"/> <source>Indent</source> <translation>Indenter</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="735"/> - <source>Unindent</source> - <translation>Désindenter</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="738"/> - <source>Comment</source> - <translation>Commenter</translation> + <source>Unindent</source> + <translation>Désindenter</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="741"/> - <source>Uncomment</source> - <translation>Décommenter</translation> + <source>Comment</source> + <translation>Commenter</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="744"/> - <source>Stream Comment</source> - <translation>Commentaire type "Stream"</translation> + <source>Uncomment</source> + <translation>Décommenter</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="747"/> + <source>Stream Comment</source> + <translation>Commentaire type "Stream"</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="750"/> <source>Box Comment</source> <translation>Commentaire type "Bloc"</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="751"/> - <source>Select to brace</source> - <translation>Sélection parenthèses</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="753"/> - <source>Select all</source> - <translation>Tout sélectionner</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="754"/> + <source>Select to brace</source> + <translation>Sélection parenthèses</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="756"/> + <source>Select all</source> + <translation>Tout sélectionner</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="757"/> <source>Deselect all</source> <translation>Tout déselectionner</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="768"/> + <location filename="../QScintilla/Editor.py" line="773"/> <source>Shorten empty lines</source> <translation>Raccourcir les lignes vides</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="965"/> + <location filename="../QScintilla/Editor.py" line="970"/> <source>Languages</source> <translation>Langages</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="775"/> + <location filename="../QScintilla/Editor.py" line="780"/> <source>Use Monospaced Font</source> <translation>Utiliser une police monospacée</translation> </message> @@ -10236,422 +10236,422 @@ <translation type="obsolete">Autocomplétion activée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="895"/> + <location filename="../QScintilla/Editor.py" line="900"/> <source>Check</source> <translation>Vérification</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="915"/> + <location filename="../QScintilla/Editor.py" line="920"/> <source>Show</source> <translation>Afficher...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="823"/> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Close</source> <translation>Fermer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="829"/> + <location filename="../QScintilla/Editor.py" line="834"/> <source>Save</source> <translation>Enregistrer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="832"/> + <location filename="../QScintilla/Editor.py" line="837"/> <source>Save As...</source> <translation>Enregistrer sous...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="848"/> + <location filename="../QScintilla/Editor.py" line="853"/> <source>Print</source> <translation>Imprimer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917"/> + <location filename="../QScintilla/Editor.py" line="922"/> <source>Code metrics...</source> <translation>Statistiques du code...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="918"/> + <location filename="../QScintilla/Editor.py" line="923"/> <source>Code coverage...</source> <translation>Code coverage...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="926"/> + <location filename="../QScintilla/Editor.py" line="931"/> <source>Profile data...</source> <translation>Profiler les données...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214"/> + <location filename="../QScintilla/Editor.py" line="1219"/> <source>Toggle bookmark</source> <translation>Placer/supprimer un signet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1216"/> + <location filename="../QScintilla/Editor.py" line="1221"/> <source>Next bookmark</source> <translation>Signet suivant</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1218"/> + <location filename="../QScintilla/Editor.py" line="1223"/> <source>Previous bookmark</source> <translation>Signet précédent</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220"/> + <location filename="../QScintilla/Editor.py" line="1225"/> <source>Clear all bookmarks</source> <translation>Effacer tous les signets</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1240"/> - <source>Toggle breakpoint</source> - <translation>Placer/supprimer un point d'arrêt</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1245"/> - <source>Edit breakpoint...</source> - <translation>Éditer le point d'arrêt...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5326"/> - <source>Enable breakpoint</source> - <translation>Activer le point d'arrêt</translation> + <source>Toggle breakpoint</source> + <translation>Placer/supprimer un point d'arrêt</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1250"/> + <source>Edit breakpoint...</source> + <translation>Éditer le point d'arrêt...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5334"/> + <source>Enable breakpoint</source> + <translation>Activer le point d'arrêt</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1255"/> <source>Next breakpoint</source> <translation>Point d'arrêt suivant</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1252"/> + <location filename="../QScintilla/Editor.py" line="1257"/> <source>Previous breakpoint</source> <translation>Point d'arrêt précédent</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1254"/> + <location filename="../QScintilla/Editor.py" line="1259"/> <source>Clear all breakpoints</source> <translation>Effacer tous les points d'arrêts</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1277"/> + <location filename="../QScintilla/Editor.py" line="1282"/> <source>LMB toggles bookmarks</source> <translation>Le click principal place des signets</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1281"/> + <location filename="../QScintilla/Editor.py" line="1286"/> <source>LMB toggles breakpoints</source> <translation>Le click principal place les points d'arrêts</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>Modification of Read Only file</source> <translation>Modification de la lecture seule</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Le fichier est en lecture seule. Sauvez d'abord votre fichier sous un autre nom.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2515"/> + <location filename="../QScintilla/Editor.py" line="2520"/> <source>Printing...</source> <translation>Impression....</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2532"/> - <source>Printing completed</source> - <translation>Impression terminée</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2534"/> - <source>Error while printing</source> - <translation>Erreur durant l'impression</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2537"/> + <source>Printing completed</source> + <translation>Impression terminée</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2539"/> + <source>Error while printing</source> + <translation>Erreur durant l'impression</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2542"/> <source>Printing aborted</source> <translation>Impression abandonnée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source>Open File</source> <translation>Ouvrir Fichier</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source>Save File</source> <translation>Enregistrer Fichier</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source>File Modified</source> <translation>Fichier Modifié</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion</source> <translation>Autocompletion</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <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="5329"/> + <location filename="../QScintilla/Editor.py" line="5337"/> <source>Disable breakpoint</source> <translation>Désactiver le point d'arrêt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <source>Code Coverage</source> <translation>Code Coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <source>Please select a coverage file</source> <translation>Sélectionner un fichier coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Profile Data</source> <translation>Profiler de données</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Please select a profile file</source> <translation>Sélectionner un fichier profile</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Macro Name</source> <translation>Nom de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Select a macro name:</source> <translation>Sélectionner un nom de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Macro files (*.macro)</source> <translation>Fichier Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387"/> + <location filename="../QScintilla/Editor.py" line="6395"/> <source>Load macro file</source> <translation>Charger un fichier macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <source>Error loading macro</source> <translation>Erreur lors du chargement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Save macro file</source> <translation>Enregistrer le fichier macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <source>Save macro</source> <translation>Enregistrer la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <source>Error saving macro</source> <translation>Erreur lors de l'enregistrement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <source>Start Macro Recording</source> <translation>Démarrer l'enregistrement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Macro Recording</source> <translation>Enregistrement de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Enter name of the macro:</source> <translation>Entrer le nom de la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6640"/> + <location filename="../QScintilla/Editor.py" line="6648"/> <source>File changed</source> <translation>Fichier modifié</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="780"/> + <location filename="../QScintilla/Editor.py" line="785"/> <source>Autosave enabled</source> <translation>Sauvegarde automatique activée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1223"/> + <location filename="../QScintilla/Editor.py" line="1228"/> <source>Goto syntax error</source> <translation>Aller à l'erreur de syntaxe suivante</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1227"/> + <location filename="../QScintilla/Editor.py" line="1232"/> <source>Clear syntax error</source> <translation>Supprimer les flags d'erreurs de syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1225"/> + <location filename="../QScintilla/Editor.py" line="1230"/> <source>Show syntax error message</source> <translation>Afficher le message d'erreur de syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>Syntax Error</source> <translation>Erreur de syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>No syntax error message available.</source> <translation>Aucun message d'erreur de syntaxe..</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1242"/> + <location filename="../QScintilla/Editor.py" line="1247"/> <source>Toggle temporary breakpoint</source> <translation>Placer/Supprimer un point d'arret temporaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="920"/> + <location filename="../QScintilla/Editor.py" line="925"/> <source>Show code coverage annotations</source> <translation>Afficher les annotations de code coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="923"/> + <location filename="../QScintilla/Editor.py" line="928"/> <source>Hide code coverage annotations</source> <translation>Masquer les annotations de code coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>Next uncovered line</source> <translation>Ligne non executée suivante</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1260"/> + <location filename="../QScintilla/Editor.py" line="1265"/> <source>Previous uncovered line</source> <translation>Ligne non executée précédente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>Show Code Coverage Annotations</source> <translation>Afficher les annotations de Code Coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5762"/> + <location filename="../QScintilla/Editor.py" line="5770"/> <source>All lines have been covered.</source> <translation>Toutes les lignes ont été executées.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5769"/> + <location filename="../QScintilla/Editor.py" line="5777"/> <source>There is no coverage file available.</source> <translation>Impossible de trouver le fichier de coverage.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939"/> + <location filename="../QScintilla/Editor.py" line="944"/> <source>Diagrams</source> <translation>Diagrammes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="941"/> + <location filename="../QScintilla/Editor.py" line="946"/> <source>Class Diagram...</source> <translation>Diagramme des classes...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="943"/> + <location filename="../QScintilla/Editor.py" line="948"/> <source>Package Diagram...</source> <translation>Diagramme des packages...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="945"/> + <location filename="../QScintilla/Editor.py" line="950"/> <source>Imports Diagram...</source> <translation>Diagramme des modules...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="947"/> + <location filename="../QScintilla/Editor.py" line="952"/> <source>Application Diagram...</source> <translation>Diagramme de l'application...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="968"/> + <location filename="../QScintilla/Editor.py" line="973"/> <source>No Language</source> <translation>Pas de langage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6965"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Resources</source> <translation>Ressources</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6967"/> + <location filename="../QScintilla/Editor.py" line="6975"/> <source>Add file...</source> <translation>Ajouter un fichier...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6969"/> + <location filename="../QScintilla/Editor.py" line="6977"/> <source>Add files...</source> <translation>Ajouter des fichiers...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6971"/> + <location filename="../QScintilla/Editor.py" line="6979"/> <source>Add aliased file...</source> <translation>Ajouter un fichier alias...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6974"/> + <location filename="../QScintilla/Editor.py" line="6982"/> <source>Add localized resource...</source> <translation>Ajouter une ressource localisée...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6997"/> + <location filename="../QScintilla/Editor.py" line="7005"/> <source>Add file resource</source> <translation>Ajoute un fichier ressource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7013"/> + <location filename="../QScintilla/Editor.py" line="7021"/> <source>Add file resources</source> <translation>Ajoute des fichiers ressources</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Add aliased file resource</source> <translation>Ajoute un alias de fichier ressource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Package Diagram</source> <translation>Diagramme de package</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7105"/> + <location filename="../QScintilla/Editor.py" line="7113"/> <source>Include class attributes?</source> <translation>Inclure les attributs de classes ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Application Diagram</source> <translation>Diagramme de l'application</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7139"/> + <location filename="../QScintilla/Editor.py" line="7147"/> <source>Include module names?</source> <translation>Inclure les noms de modules ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6978"/> + <location filename="../QScintilla/Editor.py" line="6986"/> <source>Add resource frame</source> <translation>Ajouter un cadre ressource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <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> @@ -10661,52 +10661,52 @@ <translation type="obsolete">Autocomplétion</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="877"/> + <location filename="../QScintilla/Editor.py" line="882"/> <source>Complete from Document</source> <translation type="unfinished">à partir du document</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879"/> + <location filename="../QScintilla/Editor.py" line="884"/> <source>Complete from APIs</source> <translation type="unfinished">à partir des fichiers API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="881"/> + <location filename="../QScintilla/Editor.py" line="886"/> <source>Complete from Document and APIs</source> <translation type="unfinished">à partir du document et des fichiers API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1263"/> + <location filename="../QScintilla/Editor.py" line="1268"/> <source>Next task</source> <translation>Tâche suivante</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1265"/> + <location filename="../QScintilla/Editor.py" line="1270"/> <source>Previous task</source> <translation>Tâche précédente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088"/> + <location filename="../QScintilla/Editor.py" line="1093"/> <source>Export as</source> <translation>Exporter en tant que</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>Export source</source> <translation>Exportation de source</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>No export format given. Aborting...</source> <translation>Aucun format d'exportation indiqué. Abandon...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Imports Diagram</source> <translation>Diagramme des modules</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Include imports from external modules?</source> <translation>Inclure l'importation de modules externes?</translation> </message> @@ -10716,12 +10716,12 @@ <translation type="obsolete">Dynamique</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="799"/> + <location filename="../QScintilla/Editor.py" line="804"/> <source>Calltip</source> <translation>Calltip</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="845"/> + <location filename="../QScintilla/Editor.py" line="850"/> <source>Print Preview</source> <translation>Aperçu avant impression</translation> </message> @@ -10731,77 +10731,77 @@ <translation><b>Fenêtre d'édition</b><p>Cette fenêtre est utilisée pour afficher et éditer les codes sources. Vous pouvez en ouvrir autant que vous le souhaitez. Le nom du fichier ouvert est inscrit dans la barre principale.</p><p>Vous pouvez définir des points d'arrêt en cliquant sur la marge de gauche, entre les numéros de lignes et les marques de pliage de code. Les points d'arrêt peuvent être édités via le menu contextuel (en cliquant droit sur le point).</p><p>De manière similaire, vous pouvez définir des signets avec Shift+Click dans la marge.</p><p>Pour ces deux types de points, le menu contextuel (click droit) permet de défaire l'action.</p><p>Le Ctrl+Click sur une marque d'erreur de sytaxe permet de visualiser les informations sur l'erreur.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Typing aids enabled</source> <translation>Aide à la frappe activée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052"/> + <location filename="../QScintilla/Editor.py" line="1057"/> <source>End-of-Line Type</source> <translation>Type de fin de ligne</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1056"/> + <location filename="../QScintilla/Editor.py" line="1061"/> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1063"/> + <location filename="../QScintilla/Editor.py" line="1068"/> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1070"/> + <location filename="../QScintilla/Editor.py" line="1075"/> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1011"/> + <location filename="../QScintilla/Editor.py" line="1016"/> <source>Encodings</source> <translation>Encodings</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="991"/> + <location filename="../QScintilla/Editor.py" line="996"/> <source>Guessed</source> <translation>Suggestion</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1332"/> + <location filename="../QScintilla/Editor.py" line="1337"/> <source>Alternatives</source> <translation>Alternatives</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Pygments Lexer</source> <translation>Analyseur Pygments</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Select the Pygments lexer to apply.</source> <translation>Sélectionne l'analyseur Pygments à appliquer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7417"/> + <location filename="../QScintilla/Editor.py" line="7425"/> <source>Check spelling...</source> <translation>Correction orthographique...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="760"/> + <location filename="../QScintilla/Editor.py" line="765"/> <source>Check spelling of selection...</source> <translation>Correction orthographique de la sélection...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7420"/> + <location filename="../QScintilla/Editor.py" line="7428"/> <source>Add to dictionary</source> <translation>Ajouter au dictionnaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7422"/> + <location filename="../QScintilla/Editor.py" line="7430"/> <source>Ignore All</source> <translation>Tout ignorer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="764"/> + <location filename="../QScintilla/Editor.py" line="769"/> <source>Remove from dictionary</source> <translation>Supprimer du dictionnaire</translation> </message> @@ -10811,235 +10811,240 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1309"/> + <location filename="../QScintilla/Editor.py" line="1314"/> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1328"/> + <location filename="../QScintilla/Editor.py" line="1333"/> <source>Alternatives ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished"><p>Le fichier <b>{0}</b> a des modifications non enregistrées. </p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3054"/> + <location filename="../QScintilla/Editor.py" line="3059"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6401"/> + <location filename="../QScintilla/Editor.py" line="6409"/> <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="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <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="6804"/> + <location filename="../QScintilla/Editor.py" line="6812"/> <source>{0} (ro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1230"/> - <source>Next warning</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1233"/> - <source>Previous warning</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1235"/> + <source>Next warning</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1238"/> + <source>Previous warning</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1240"/> <source>Show warning message</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1237"/> + <location filename="../QScintilla/Editor.py" line="1242"/> <source>Clear warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Le fichier <b>{0}</b>existe déjà. Écraser ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <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="6298"/> + <location filename="../QScintilla/Editor.py" line="6306"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6305"/> + <location filename="../QScintilla/Editor.py" line="6313"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6636"/> + <location filename="../QScintilla/Editor.py" line="6644"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Open 'rejection' file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="951"/> + <location filename="../QScintilla/Editor.py" line="956"/> <source>Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1268"/> + <location filename="../QScintilla/Editor.py" line="1273"/> <source>Next change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1271"/> + <location filename="../QScintilla/Editor.py" line="1276"/> <source>Previous change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>Warning</source> <translation type="unfinished">Warning</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>No warning messages available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6295"/> + <location filename="../QScintilla/Editor.py" line="6303"/> <source>Style: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="815"/> + <location filename="../QScintilla/Editor.py" line="820"/> <source>New Document View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="818"/> + <location filename="../QScintilla/Editor.py" line="823"/> <source>New Document View (with new split)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="905"/> + <location filename="../QScintilla/Editor.py" line="910"/> <source>Tools</source> <translation type="unfinished">Outils</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1033"/> + <location filename="../QScintilla/Editor.py" line="1038"/> <source>Re-Open With Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6630"/> + <location filename="../QScintilla/Editor.py" line="6638"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric6. Reread it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="791"/> + <location filename="../QScintilla/Editor.py" line="796"/> <source>Automatic Completion enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="871"/> + <location filename="../QScintilla/Editor.py" line="876"/> <source>Complete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>Call-Tips Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="835"/> + <location filename="../QScintilla/Editor.py" line="840"/> <source>Save Copy...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="874"/> + <location filename="../QScintilla/Editor.py" line="879"/> <source>Clear Completions Cache</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="801"/> + <location filename="../QScintilla/Editor.py" line="806"/> <source>Code Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1274"/> + <location filename="../QScintilla/Editor.py" line="1279"/> <source>Clear changes</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../QScintilla/Editor.py" line="731"/> + <source>Execute Selection In Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorAPIsPage</name>
--- a/i18n/eric6_it.ts Sat Jan 06 18:59:24 2018 +0100 +++ b/i18n/eric6_it.ts Sun Jan 07 17:18:07 2018 +0100 @@ -9842,542 +9842,542 @@ <translation>Incolla</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="732"/> + <location filename="../QScintilla/Editor.py" line="735"/> <source>Indent</source> <translation>Identa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="735"/> - <source>Unindent</source> - <translation>Annulla identazione</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="738"/> - <source>Comment</source> - <translation>Commenta</translation> + <source>Unindent</source> + <translation>Annulla identazione</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="741"/> - <source>Uncomment</source> - <translation>Annulla commenta</translation> + <source>Comment</source> + <translation>Commenta</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="744"/> - <source>Stream Comment</source> - <translation>Flusso commento</translation> + <source>Uncomment</source> + <translation>Annulla commenta</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="747"/> + <source>Stream Comment</source> + <translation>Flusso commento</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="750"/> <source>Box Comment</source> <translation>Commenti nel riquadro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="751"/> - <source>Select to brace</source> - <translation>Seleziona per parentesizzare</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="753"/> - <source>Select all</source> - <translation>Seleziona tutti</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="754"/> + <source>Select to brace</source> + <translation>Seleziona per parentesizzare</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="756"/> + <source>Select all</source> + <translation>Seleziona tutti</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="757"/> <source>Deselect all</source> <translation>Deseleziona tutti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="768"/> + <location filename="../QScintilla/Editor.py" line="773"/> <source>Shorten empty lines</source> <translation>Abbrevia righe vuote</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="965"/> + <location filename="../QScintilla/Editor.py" line="970"/> <source>Languages</source> <translation>Linguaggi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="775"/> + <location filename="../QScintilla/Editor.py" line="780"/> <source>Use Monospaced Font</source> <translation>Usa un font Monospaced</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="895"/> + <location filename="../QScintilla/Editor.py" line="900"/> <source>Check</source> <translation>Controlla</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="915"/> + <location filename="../QScintilla/Editor.py" line="920"/> <source>Show</source> <translation>Mostra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="823"/> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Close</source> <translation>Chiudi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="829"/> + <location filename="../QScintilla/Editor.py" line="834"/> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="832"/> + <location filename="../QScintilla/Editor.py" line="837"/> <source>Save As...</source> <translation>Salva come...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="848"/> + <location filename="../QScintilla/Editor.py" line="853"/> <source>Print</source> <translation>Stampa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="917"/> + <location filename="../QScintilla/Editor.py" line="922"/> <source>Code metrics...</source> <translation>Statistiche codice...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="918"/> + <location filename="../QScintilla/Editor.py" line="923"/> <source>Code coverage...</source> <translation>Analisi codice...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="926"/> + <location filename="../QScintilla/Editor.py" line="931"/> <source>Profile data...</source> <translation>Profilazione dati...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214"/> + <location filename="../QScintilla/Editor.py" line="1219"/> <source>Toggle bookmark</source> <translation>Inverti bookmark</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1216"/> + <location filename="../QScintilla/Editor.py" line="1221"/> <source>Next bookmark</source> <translation>Prossimo segnalibro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1218"/> + <location filename="../QScintilla/Editor.py" line="1223"/> <source>Previous bookmark</source> <translation>Segnalibro precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220"/> + <location filename="../QScintilla/Editor.py" line="1225"/> <source>Clear all bookmarks</source> <translation>Pulisci di tutti di segnalibri</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1240"/> - <source>Toggle breakpoint</source> - <translation>Abilita/Disabilita breakpoint</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1245"/> - <source>Edit breakpoint...</source> - <translation>Modifica Breakpoint...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5326"/> - <source>Enable breakpoint</source> - <translation>Abilita breakpoint</translation> + <source>Toggle breakpoint</source> + <translation>Abilita/Disabilita breakpoint</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1250"/> + <source>Edit breakpoint...</source> + <translation>Modifica Breakpoint...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5334"/> + <source>Enable breakpoint</source> + <translation>Abilita breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1255"/> <source>Next breakpoint</source> <translation>Prossimo breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1252"/> + <location filename="../QScintilla/Editor.py" line="1257"/> <source>Previous breakpoint</source> <translation>Breakpoint precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1254"/> + <location filename="../QScintilla/Editor.py" line="1259"/> <source>Clear all breakpoints</source> <translation>Elimina tutti i breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1277"/> + <location filename="../QScintilla/Editor.py" line="1282"/> <source>LMB toggles bookmarks</source> <translation>Inverti bookmark LMB</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1281"/> + <location filename="../QScintilla/Editor.py" line="1286"/> <source>LMB toggles breakpoints</source> <translation>Toggle Breakpoint LMB</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>Modification of Read Only file</source> <translation>Modifica di un file di sola lettura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Stai tentando di modificare un file in sola lettura. Per favore prima salva come un file diverso.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2515"/> + <location filename="../QScintilla/Editor.py" line="2520"/> <source>Printing...</source> <translation>In stampa...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2532"/> - <source>Printing completed</source> - <translation>Stampa completata</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2534"/> - <source>Error while printing</source> - <translation>Errore durante la stampa</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2537"/> + <source>Printing completed</source> + <translation>Stampa completata</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2539"/> + <source>Error while printing</source> + <translation>Errore durante la stampa</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2542"/> <source>Printing aborted</source> <translation>Stampa annullata</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source>Open File</source> <translation>Apri File</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source>Save File</source> <translation>Salva file</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source>File Modified</source> <translation>File modificato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion</source> <translation>Autocompletamento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4525"/> + <location filename="../QScintilla/Editor.py" line="4530"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>L'autocomplentamento non è disponibile perchè non ci sono fonti impostate.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5329"/> + <location filename="../QScintilla/Editor.py" line="5337"/> <source>Disable breakpoint</source> <translation>Disabilita breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <source>Code Coverage</source> <translation>Analisi codice</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5706"/> + <location filename="../QScintilla/Editor.py" line="5714"/> <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="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Profile Data</source> <translation>Profilazione dati</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5884"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <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="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Macro Name</source> <translation>Nome Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6359"/> + <location filename="../QScintilla/Editor.py" line="6367"/> <source>Select a macro name:</source> <translation>Seleziona un nome per la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Macro files (*.macro)</source> <translation>File Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6387"/> + <location filename="../QScintilla/Editor.py" line="6395"/> <source>Load macro file</source> <translation>Carica un file di macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <source>Error loading macro</source> <translation>Errore nel caricamento della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6430"/> + <location filename="../QScintilla/Editor.py" line="6438"/> <source>Save macro file</source> <translation>Salva un file di macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <source>Save macro</source> <translation>Salva macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <source>Error saving macro</source> <translation>Errore nel salvataggio della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6476"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <source>Start Macro Recording</source> <translation>Avvia registrazione della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Macro Recording</source> <translation>Registrazione Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6502"/> + <location filename="../QScintilla/Editor.py" line="6510"/> <source>Enter name of the macro:</source> <translation>Inserisci un nome per la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6640"/> + <location filename="../QScintilla/Editor.py" line="6648"/> <source>File changed</source> <translation>File modificato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="780"/> + <location filename="../QScintilla/Editor.py" line="785"/> <source>Autosave enabled</source> <translation>Salvataggio automatico abilitato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1223"/> + <location filename="../QScintilla/Editor.py" line="1228"/> <source>Goto syntax error</source> <translation>Vai all'errore di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1227"/> + <location filename="../QScintilla/Editor.py" line="1232"/> <source>Clear syntax error</source> <translation>Elimina errori di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <source>Drop Error</source> <translation>Errore Drop</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1225"/> + <location filename="../QScintilla/Editor.py" line="1230"/> <source>Show syntax error message</source> <translation>Mostra i messaggi degli errori di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>Syntax Error</source> <translation>Errore di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6044"/> + <location filename="../QScintilla/Editor.py" line="6052"/> <source>No syntax error message available.</source> <translation>Nessun messaggio degli errori di sintassi disponibile.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1242"/> + <location filename="../QScintilla/Editor.py" line="1247"/> <source>Toggle temporary breakpoint</source> <translation>Abilita/Disabilita breakpoint temporaneo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="920"/> + <location filename="../QScintilla/Editor.py" line="925"/> <source>Show code coverage annotations</source> <translation>Mostra le annotazioni dell'analisi del codice</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="923"/> + <location filename="../QScintilla/Editor.py" line="928"/> <source>Hide code coverage annotations</source> <translation>Nascondi le annotazioni dell'analisi del codice</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>Next uncovered line</source> <translation>Prossimo file non analizzato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1260"/> - <source>Previous uncovered line</source> - <translation>File non analizzato precedente</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5769"/> - <source>Show Code Coverage Annotations</source> - <translation>Mostra le annotazioni dell'analisi del codice</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5762"/> - <source>All lines have been covered.</source> - <translation>Tutte le linee sono state analizzate.</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5769"/> - <source>There is no coverage file available.</source> - <translation>Non ci sono file di analisi disponibili.</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939"/> - <source>Diagrams</source> - <translation>Diagrammi</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="941"/> - <source>Class Diagram...</source> - <translation>Diagrammi di classe...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="943"/> - <source>Package Diagram...</source> - <translation>Diagrammi del package...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="945"/> - <source>Imports Diagram...</source> - <translation>Importa diagrammi...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="947"/> - <source>Application Diagram...</source> - <translation>Diagrammi dell'applicazione...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="968"/> - <source>No Language</source> - <translation>Nessun linguaggio</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6965"/> - <source>Resources</source> - <translation>Risorse</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6967"/> - <source>Add file...</source> - <translation>Aggiungi file...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6969"/> - <source>Add files...</source> - <translation>Aggiungi files...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6971"/> - <source>Add aliased file...</source> - <translation>Aggiungi file sinonimo...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6974"/> - <source>Add localized resource...</source> - <translation>Aggiungi una risorsa localizzata...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6997"/> - <source>Add file resource</source> - <translation>Aggiungi un file risorse</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7013"/> - <source>Add file resources</source> - <translation>Aggiundi dei file risorse</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7041"/> - <source>Add aliased file resource</source> - <translation>Aggiungi file sinonimo delle risorse</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7105"/> - <source>Package Diagram</source> - <translation>Diagrammi del package</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7105"/> - <source>Include class attributes?</source> - <translation>Includi gli attributi della classe ?</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7139"/> - <source>Application Diagram</source> - <translation>Diagrammi dell'applicazione</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7139"/> - <source>Include module names?</source> - <translation>Includi i nomi dei moduli ?</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6978"/> - <source>Add resource frame</source> - <translation>Aggiungi riquadro delle risorse</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6476"/> - <source>Macro recording is already active. Start new?</source> - <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="877"/> - <source>Complete from Document</source> - <translation type="unfinished">dal Documento</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="879"/> - <source>Complete from APIs</source> - <translation type="unfinished">dalle APIs</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="881"/> - <source>Complete from Document and APIs</source> - <translation type="unfinished">dal Documento e dalle APIs</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1263"/> - <source>Next task</source> - <translation>Prossimo task</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1265"/> + <source>Previous uncovered line</source> + <translation>File non analizzato precedente</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777"/> + <source>Show Code Coverage Annotations</source> + <translation>Mostra le annotazioni dell'analisi del codice</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5770"/> + <source>All lines have been covered.</source> + <translation>Tutte le linee sono state analizzate.</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777"/> + <source>There is no coverage file available.</source> + <translation>Non ci sono file di analisi disponibili.</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="944"/> + <source>Diagrams</source> + <translation>Diagrammi</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="946"/> + <source>Class Diagram...</source> + <translation>Diagrammi di classe...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="948"/> + <source>Package Diagram...</source> + <translation>Diagrammi del package...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="950"/> + <source>Imports Diagram...</source> + <translation>Importa diagrammi...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="952"/> + <source>Application Diagram...</source> + <translation>Diagrammi dell'applicazione...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="973"/> + <source>No Language</source> + <translation>Nessun linguaggio</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6973"/> + <source>Resources</source> + <translation>Risorse</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6975"/> + <source>Add file...</source> + <translation>Aggiungi file...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6977"/> + <source>Add files...</source> + <translation>Aggiungi files...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6979"/> + <source>Add aliased file...</source> + <translation>Aggiungi file sinonimo...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6982"/> + <source>Add localized resource...</source> + <translation>Aggiungi una risorsa localizzata...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7005"/> + <source>Add file resource</source> + <translation>Aggiungi un file risorse</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7021"/> + <source>Add file resources</source> + <translation>Aggiundi dei file risorse</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7049"/> + <source>Add aliased file resource</source> + <translation>Aggiungi file sinonimo delle risorse</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7113"/> + <source>Package Diagram</source> + <translation>Diagrammi del package</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7113"/> + <source>Include class attributes?</source> + <translation>Includi gli attributi della classe ?</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7147"/> + <source>Application Diagram</source> + <translation>Diagrammi dell'applicazione</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7147"/> + <source>Include module names?</source> + <translation>Includi i nomi dei moduli ?</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6986"/> + <source>Add resource frame</source> + <translation>Aggiungi riquadro delle risorse</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6484"/> + <source>Macro recording is already active. Start new?</source> + <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="882"/> + <source>Complete from Document</source> + <translation type="unfinished">dal Documento</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="884"/> + <source>Complete from APIs</source> + <translation type="unfinished">dalle APIs</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="886"/> + <source>Complete from Document and APIs</source> + <translation type="unfinished">dal Documento e dalle APIs</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1268"/> + <source>Next task</source> + <translation>Prossimo task</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1270"/> <source>Previous task</source> <translation>Task precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088"/> + <location filename="../QScintilla/Editor.py" line="1093"/> <source>Export as</source> <translation>Esporta come</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>Export source</source> <translation>Esporta sorgenti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>No export format given. Aborting...</source> <translation>Nessun formato di export impostato. Annullamento...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Imports Diagram</source> <translation>Importa diagrammi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7125"/> + <location filename="../QScintilla/Editor.py" line="7133"/> <source>Include imports from external modules?</source> <translation>Includi gli import dai moduli esterni ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="799"/> + <location filename="../QScintilla/Editor.py" line="804"/> <source>Calltip</source> <translation>Calltip</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="845"/> + <location filename="../QScintilla/Editor.py" line="850"/> <source>Print Preview</source> <translation>Anteprima Stampa</translation> </message> @@ -10387,77 +10387,77 @@ <translation><b>Una finesta di edit</b><p>Questa finestra è usata per visualizzare e modificare un file sorgente. Si possono aprire quante finestre si vogliono. Il nome del file è mostrato nella barra dei titolo della finestra.</p><p>Per impostare dei breakpoint basta cliccare nello spazio tra i numeri di riga e i marcatori di compressione. Con il menù contestuale del margine possono essere modificati.</p><p>Per impostare un segnalibro basta cliccare con lo Shift premuto nello spazio tra il numero di linea e i marcatori di compressione.</p><p>Queste azioni possono essere invertite con il menù contestuale.</p><p> Cliccare con il tasto Ctrl premuto un marcatore di errore della sintassi mostra delle informazioni sull'errore.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Typing aids enabled</source> <translation>Aiuti alla digitazione abilitati</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052"/> + <location filename="../QScintilla/Editor.py" line="1057"/> <source>End-of-Line Type</source> <translation>Tipo di fine-linea</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1056"/> + <location filename="../QScintilla/Editor.py" line="1061"/> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1063"/> + <location filename="../QScintilla/Editor.py" line="1068"/> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1070"/> + <location filename="../QScintilla/Editor.py" line="1075"/> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1011"/> + <location filename="../QScintilla/Editor.py" line="1016"/> <source>Encodings</source> <translation>Codifica</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="991"/> + <location filename="../QScintilla/Editor.py" line="996"/> <source>Guessed</source> <translation>Indovinato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1332"/> + <location filename="../QScintilla/Editor.py" line="1337"/> <source>Alternatives</source> <translation>Alternative</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Pygments Lexer</source> <translation>Analizzatore lessicale Pygments</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Select the Pygments lexer to apply.</source> <translation>Selezione l'analizzatore lessicale di Pygments da applicare.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7417"/> + <location filename="../QScintilla/Editor.py" line="7425"/> <source>Check spelling...</source> <translation>Controllo sillabazione...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="760"/> + <location filename="../QScintilla/Editor.py" line="765"/> <source>Check spelling of selection...</source> <translation>Controllo sillabazione della selezione...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7420"/> + <location filename="../QScintilla/Editor.py" line="7428"/> <source>Add to dictionary</source> <translation>Aggiungi al dizionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7422"/> + <location filename="../QScintilla/Editor.py" line="7430"/> <source>Ignore All</source> <translation>Ignora tutto</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="764"/> + <location filename="../QScintilla/Editor.py" line="769"/> <source>Remove from dictionary</source> <translation>Rimuovi dal dizionario</translation> </message> @@ -10467,235 +10467,240 @@ <translation><p>La dimensione del file <b>{0}</b> è <b>{1} KB</b>. Sei sicuro di volerlo caricare ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1309"/> + <location filename="../QScintilla/Editor.py" line="1314"/> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>Nessun esportatore disponibile per il formato di export<b>{0}</b>. Termino...</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1328"/> + <location filename="../QScintilla/Editor.py" line="1333"/> <source>Alternatives ({0})</source> <translation>Alternative ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Il file <b>{0}</b> contiene modifiche non salvate.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere aperto.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3054"/> + <location filename="../QScintilla/Editor.py" line="3059"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6401"/> + <location filename="../QScintilla/Editor.py" line="6409"/> <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="6410"/> + <location filename="../QScintilla/Editor.py" line="6418"/> <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="6463"/> + <location filename="../QScintilla/Editor.py" line="6471"/> <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="6804"/> + <location filename="../QScintilla/Editor.py" line="6812"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6944"/> + <location filename="../QScintilla/Editor.py" line="6952"/> <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="7041"/> + <location filename="../QScintilla/Editor.py" line="7049"/> <source>Alias for file <b>{0}</b>:</source> <translation>Alias per il file <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1230"/> - <source>Next warning</source> - <translation>Warning successivo</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1233"/> - <source>Previous warning</source> - <translation>Warning precedente</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1235"/> + <source>Next warning</source> + <translation>Warning successivo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1238"/> + <source>Previous warning</source> + <translation>Warning precedente</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1240"/> <source>Show warning message</source> <translation>Mostra Warning</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1237"/> + <location filename="../QScintilla/Editor.py" line="1242"/> <source>Clear warnings</source> <translation>Pulisci warning</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6455"/> <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="6298"/> + <location filename="../QScintilla/Editor.py" line="6306"/> <source>Warning: {0}</source> <translation>Attenzione: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6305"/> + <location filename="../QScintilla/Editor.py" line="6313"/> <source>Error: {0}</source> <translation>Errore: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6636"/> + <location filename="../QScintilla/Editor.py" line="6644"/> <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> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Open 'rejection' file</source> <translation>Apri file 'rifiuto'</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="951"/> + <location filename="../QScintilla/Editor.py" line="956"/> <source>Load Diagram...</source> <translation>Carica Diagramma...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1268"/> + <location filename="../QScintilla/Editor.py" line="1273"/> <source>Next change</source> <translation>Modifica successiva</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1271"/> + <location filename="../QScintilla/Editor.py" line="1276"/> <source>Previous change</source> <translation>Modifica precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <source>Sort Lines</source> <translation>Righe ordinate</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7834"/> + <location filename="../QScintilla/Editor.py" line="7842"/> <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="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>Warning</source> <translation>Attenzione</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6234"/> + <location filename="../QScintilla/Editor.py" line="6242"/> <source>No warning messages available.</source> <translation>Nessun messaggio di attenzione disponibile.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6295"/> + <location filename="../QScintilla/Editor.py" line="6303"/> <source>Style: {0}</source> <translation>Stile: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="815"/> + <location filename="../QScintilla/Editor.py" line="820"/> <source>New Document View</source> <translation>Nuova vista Documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="818"/> + <location filename="../QScintilla/Editor.py" line="823"/> <source>New Document View (with new split)</source> <translation>Nuova vista Documento (con nuova divisione)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="905"/> + <location filename="../QScintilla/Editor.py" line="910"/> <source>Tools</source> <translation>Strumenti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1033"/> + <location filename="../QScintilla/Editor.py" line="1038"/> <source>Re-Open With Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6630"/> + <location filename="../QScintilla/Editor.py" line="6638"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric6. Reread it?</p></source> <translation type="unfinished"><p>Il file <b>{0}</b> è stato modificato mentre era aperto in eric6. Rileggerlo ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="791"/> + <location filename="../QScintilla/Editor.py" line="796"/> <source>Automatic Completion enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="871"/> + <location filename="../QScintilla/Editor.py" line="876"/> <source>Complete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4650"/> + <location filename="../QScintilla/Editor.py" line="4655"/> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>Call-Tips Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4912"/> + <location filename="../QScintilla/Editor.py" line="4917"/> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7921"/> + <location filename="../QScintilla/Editor.py" line="7929"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="835"/> + <location filename="../QScintilla/Editor.py" line="840"/> <source>Save Copy...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="874"/> + <location filename="../QScintilla/Editor.py" line="879"/> <source>Clear Completions Cache</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="801"/> + <location filename="../QScintilla/Editor.py" line="806"/> <source>Code Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1274"/> + <location filename="../QScintilla/Editor.py" line="1279"/> <source>Clear changes</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../QScintilla/Editor.py" line="731"/> + <source>Execute Selection In Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorAPIsPage</name>
--- a/i18n/eric6_pt.ts Sat Jan 06 18:59:24 2018 +0100 +++ b/i18n/eric6_pt.ts Sun Jan 07 17:18:07 2018 +0100 @@ -10317,7 +10317,7 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source>Open File</source> <translation>Abrir Ficheiro</translation> </message> @@ -10362,82 +10362,82 @@ <translation>Colar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="732"/> + <location filename="../QScintilla/Editor.py" line="735"/> <source>Indent</source> <translation>Indentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="735"/> - <source>Unindent</source> - <translation>Tirar Indentação</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="738"/> - <source>Comment</source> - <translation>Comentar</translation> + <source>Unindent</source> + <translation>Tirar Indentação</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="741"/> - <source>Uncomment</source> - <translation>Descomentar</translation> + <source>Comment</source> + <translation>Comentar</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="744"/> - <source>Stream Comment</source> - <translation type="unfinished"></translation> + <source>Uncomment</source> + <translation>Descomentar</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="747"/> + <source>Stream Comment</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="750"/> <source>Box Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="751"/> - <source>Select to brace</source> - <translation>Selecionar até parentesis</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="753"/> - <source>Select all</source> - <translation>Selecionar tudo</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="754"/> + <source>Select to brace</source> + <translation>Selecionar até parentesis</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="756"/> + <source>Select all</source> + <translation>Selecionar tudo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="757"/> <source>Deselect all</source> <translation>Desselecionar tudo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7417"/> + <location filename="../QScintilla/Editor.py" line="7425"/> <source>Check spelling...</source> <translation>Verificação ortográfica...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="760"/> + <location filename="../QScintilla/Editor.py" line="765"/> <source>Check spelling of selection...</source> <translation>Verificação ortográfica da seleção...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="764"/> + <location filename="../QScintilla/Editor.py" line="769"/> <source>Remove from dictionary</source> <translation>Retirar do dicionário</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="768"/> + <location filename="../QScintilla/Editor.py" line="773"/> <source>Shorten empty lines</source> <translation>Encolher linhas vazias</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="775"/> - <source>Use Monospaced Font</source> - <translation>Usar Tipo de Letra de Tamanho Único</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="780"/> + <source>Use Monospaced Font</source> + <translation>Usar Tipo de Letra de Tamanho Único</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="785"/> <source>Autosave enabled</source> <translation>Ativado autogravar </translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Typing aids enabled</source> <translation>Habilitada a ajuda à escritura</translation> </message> @@ -10447,27 +10447,27 @@ <translation type="obsolete">Autocompletar Habilitado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="823"/> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Close</source> <translation>Fechar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="829"/> + <location filename="../QScintilla/Editor.py" line="834"/> <source>Save</source> <translation>Gravar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="832"/> + <location filename="../QScintilla/Editor.py" line="837"/> <source>Save As...</source> <translation>Gravar Como...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="845"/> + <location filename="../QScintilla/Editor.py" line="850"/> <source>Print Preview</source> <translation>Antevisão da Impressão</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="848"/> + <location filename="../QScintilla/Editor.py" line="853"/> <source>Print</source> <translation>Imprimir</translation> </message> @@ -10482,607 +10482,607 @@ <translation type="obsolete">dinâmico</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="877"/> + <location filename="../QScintilla/Editor.py" line="882"/> <source>Complete from Document</source> <translation type="unfinished">desde Documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879"/> + <location filename="../QScintilla/Editor.py" line="884"/> <source>Complete from APIs</source> <translation type="unfinished">desde APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="881"/> + <location filename="../QScintilla/Editor.py" line="886"/> <source>Complete from Document and APIs</source> <translation type="unfinished">desde Documento e APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="799"/> + <location filename="../QScintilla/Editor.py" line="804"/> <source>Calltip</source> <translation>Dica</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="895"/> + <location filename="../QScintilla/Editor.py" line="900"/> <source>Check</source> <translation>Verificar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="915"/> - <source>Show</source> - <translation>Mostrar</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="917"/> - <source>Code metrics...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="918"/> - <source>Code coverage...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="920"/> - <source>Show code coverage annotations</source> + <source>Show</source> + <translation>Mostrar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="922"/> + <source>Code metrics...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="923"/> + <source>Code coverage...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="925"/> + <source>Show code coverage annotations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="928"/> <source>Hide code coverage annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="926"/> + <location filename="../QScintilla/Editor.py" line="931"/> <source>Profile data...</source> <translation>Dados de Perfil...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="939"/> + <location filename="../QScintilla/Editor.py" line="944"/> <source>Diagrams</source> <translation>Diagramas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="941"/> + <location filename="../QScintilla/Editor.py" line="946"/> <source>Class Diagram...</source> <translation>Diagrama de Classes...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="943"/> + <location filename="../QScintilla/Editor.py" line="948"/> <source>Package Diagram...</source> <translation>Diagrama do Pacote...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="945"/> + <location filename="../QScintilla/Editor.py" line="950"/> <source>Imports Diagram...</source> <translation>Diagrama de Imports...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="947"/> + <location filename="../QScintilla/Editor.py" line="952"/> <source>Application Diagram...</source> <translation>Diagrama da Aplicação...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="965"/> + <location filename="../QScintilla/Editor.py" line="970"/> <source>Languages</source> <translation>Linguagens</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="968"/> + <location filename="../QScintilla/Editor.py" line="973"/> <source>No Language</source> <translation>Nenhuma Linguagem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="991"/> + <location filename="../QScintilla/Editor.py" line="996"/> <source>Guessed</source> <translation>Adivinhado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1332"/> + <location filename="../QScintilla/Editor.py" line="1337"/> <source>Alternatives</source> <translation>Alternativas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1011"/> + <location filename="../QScintilla/Editor.py" line="1016"/> <source>Encodings</source> <translation>Codificações</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1052"/> + <location filename="../QScintilla/Editor.py" line="1057"/> <source>End-of-Line Type</source> <translation>Tipo do Fim-de-Linha</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1056"/> + <location filename="../QScintilla/Editor.py" line="1061"/> <source>Unix</source> <translation></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1063"/> + <location filename="../QScintilla/Editor.py" line="1068"/> <source>Windows</source> <translation></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1070"/> + <location filename="../QScintilla/Editor.py" line="1075"/> <source>Macintosh</source> <translation></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088"/> + <location filename="../QScintilla/Editor.py" line="1093"/> <source>Export as</source> <translation>Exportar como</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214"/> + <location filename="../QScintilla/Editor.py" line="1219"/> <source>Toggle bookmark</source> <translation>Alternar marcadores</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1216"/> + <location filename="../QScintilla/Editor.py" line="1221"/> <source>Next bookmark</source> <translation>Marcador seguinte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1218"/> + <location filename="../QScintilla/Editor.py" line="1223"/> <source>Previous bookmark</source> <translation>Marcador anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220"/> + <location filename="../QScintilla/Editor.py" line="1225"/> <source>Clear all bookmarks</source> <translation>Limpar os marcadores todos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1240"/> - <source>Toggle breakpoint</source> - <translation>Alternar pontos de interrupção</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1242"/> - <source>Toggle temporary breakpoint</source> - <translation>Alternar pontos de interrupção temporais</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1245"/> - <source>Edit breakpoint...</source> - <translation>Editar ponto de interrupção...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5326"/> - <source>Enable breakpoint</source> - <translation>Habilitar pontos de interrupção</translation> + <source>Toggle breakpoint</source> + <translation>Alternar pontos de interrupção</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1247"/> + <source>Toggle temporary breakpoint</source> + <translation>Alternar pontos de interrupção temporais</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1250"/> + <source>Edit breakpoint...</source> + <translation>Editar ponto de interrupção...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5334"/> + <source>Enable breakpoint</source> + <translation>Habilitar pontos de interrupção</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1255"/> <source>Next breakpoint</source> <translation>Ponto de interrupção seguinte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1252"/> + <location filename="../QScintilla/Editor.py" line="1257"/> <source>Previous breakpoint</source> <translation>Ponto de interrupção anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1254"/> + <location filename="../QScintilla/Editor.py" line="1259"/> <source>Clear all breakpoints</source> <translation>Apagar todos os pontos de interrupção</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1223"/> + <location filename="../QScintilla/Editor.py" line="1228"/> <source>Goto syntax error</source> <translation>Ir ao erro de sintaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1225"/> - <source>Show syntax error message</source> - <translation>Mostrar a mensagem de erro de sintaxe</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1227"/> - <source>Clear syntax error</source> - <translation>Limpar o erro de sintaxe</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1230"/> - <source>Next warning</source> - <translation>Aviso seguinte</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1233"/> - <source>Previous warning</source> - <translation>Aviso anterior</translation> + <source>Show syntax error message</source> + <translation>Mostrar a mensagem de erro de sintaxe</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1232"/> + <source>Clear syntax error</source> + <translation>Limpar o erro de sintaxe</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1235"/> + <source>Next warning</source> + <translation>Aviso seguinte</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1238"/> + <source>Previous warning</source> + <translation>Aviso anterior</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1240"/> <source>Show warning message</source> <translation>Mostrar mensagem de aviso</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1237"/> + <location filename="../QScintilla/Editor.py" line="1242"/> <source>Clear warnings</source> <translation>Limpar avisos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>Next uncovered line</source> <translation>Linha seguinte sem cobrir</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1260"/> - <source>Previous uncovered line</source> - <translation>Linha anterior sem cobrir</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1263"/> - <source>Next task</source> - <translation>Tarefa seguinte</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1265"/> + <source>Previous uncovered line</source> + <translation>Linha anterior sem cobrir</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1268"/> + <source>Next task</source> + <translation>Tarefa seguinte</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1270"/> <source>Previous task</source> <translation>Tarefa anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1277"/> + <location filename="../QScintilla/Editor.py" line="1282"/> <source>LMB toggles bookmarks</source> <translation>Botão Esq. do Rato alterna marcadores</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1281"/> + <location filename="../QScintilla/Editor.py" line="1286"/> <source>LMB toggles breakpoints</source> <translation>Botão Esq. do Rato alterna pontos de interrupção</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>Export source</source> <translation>Exportar fonte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1309"/> + <location filename="../QScintilla/Editor.py" line="1314"/> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>Não está disponível um exportador para formato <b>{0}</b>. A cancelar...</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1317"/> + <location filename="../QScintilla/Editor.py" line="1322"/> <source>No export format given. Aborting...</source> <translation>Não foi dado o formato para exportar. A cancelar...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1328"/> + <location filename="../QScintilla/Editor.py" line="1333"/> <source>Alternatives ({0})</source> <translation>Alternativas ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Pygments Lexer</source> <translation>Analizador Léxico Pygments</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1348"/> + <location filename="../QScintilla/Editor.py" line="1353"/> <source>Select the Pygments lexer to apply.</source> <translation>Selecionar o analizador léxico Pygments a aplicar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>Modification of Read Only file</source> <translation>Modificação do ficheiro de Apenas Leitura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1824"/> + <location filename="../QScintilla/Editor.py" line="1829"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Tenta alterar um ficheiro de Apenas Leitura. Por favor guarde-o primeiro num ficheiro diferente. </translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2515"/> + <location filename="../QScintilla/Editor.py" line="2520"/> <source>Printing...</source> <translation>A imprimir...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2532"/> - <source>Printing completed</source> - <translation>Impressão completa</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2534"/> - <source>Error while printing</source> - <translation>Erro durante a impressão</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2537"/> + <source>Printing completed</source> + <translation>Impressão completa</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2539"/> + <source>Error while printing</source> + <translation>Erro durante a impressão</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2542"/> <source>Printing aborted</source> <translation>Impressão cancelada</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source>File Modified</source> <translation>Ficheiro Modificado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2895"/> + <location filename="../QScintilla/Editor.py" line="2900"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>O ficheiro <b>{0}</b> tem alterações por gravar.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2950"/> + <location filename="../QScintilla/Editor.py" line="2955"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Não se pôde abrir o ficheiro <b>{0}</b>.</p><p> Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3113"/> + <location filename="../QScintilla/Editor.py" line="3118"/> <source>Save File</source> <translation>Gravar Ficheiro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3054"/> + <location filename="../QScintilla/Editor.py" line="3059"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>O ficheiro <b>{0}</b> não se pôde gravar. <br/>Motivo: {1}</p></translation> </message> <message> <