Thu, 11 May 2017 18:26:56 +0200
Reintroduced the highlighting of current instruction line and the error line using colored background. It is configurable whether to use these backgrounds or the arrows.
--- a/Preferences/ConfigurationPages/EditorStylesPage.py Sat May 06 14:59:26 2017 +0200 +++ b/Preferences/ConfigurationPages/EditorStylesPage.py Thu May 11 18:26:56 2017 +0200 @@ -108,6 +108,8 @@ Preferences.getEditor("CustomSelectionColours")) self.extentSelEolCheckBox.setChecked( Preferences.getEditor("ExtendSelectionToEol")) + self.debugMarkerBackgroundCheckBox.setChecked( + Preferences.getEditor("LineMarkersBackground")) self.initColour("CaretForeground", self.caretForegroundButton, Preferences.getEditorColour) @@ -117,6 +119,10 @@ Preferences.getEditorColour) self.initColour("SelectionBackground", self.selectionBackgroundButton, Preferences.getEditorColour, hasAlpha=True) + self.initColour("CurrentMarker", self.currentLineMarkerButton, + Preferences.getEditorColour, hasAlpha=True) + self.initColour("ErrorMarker", self.errorMarkerButton, + Preferences.getEditorColour, hasAlpha=True) self.initColour("MarginsForeground", self.marginsForegroundButton, Preferences.getEditorColour) self.initColour("MarginsBackground", self.marginsBackgroundButton, @@ -292,6 +298,9 @@ "CustomSelectionColours", self.customSelColourCheckBox.isChecked()) Preferences.setEditor( "ExtendSelectionToEol", self.extentSelEolCheckBox.isChecked()) + Preferences.setEditor( + "LineMarkersBackground", + self.debugMarkerBackgroundCheckBox.isChecked()) Preferences.setEditor( "CaretWidth", self.caretWidthSpinBox.value())
--- a/Preferences/ConfigurationPages/EditorStylesPage.ui Sat May 06 14:59:26 2017 +0200 +++ b/Preferences/ConfigurationPages/EditorStylesPage.ui Thu May 11 18:26:56 2017 +0200 @@ -7,7 +7,7 @@ <x>0</x> <y>0</y> <width>655</width> - <height>2500</height> + <height>2530</height> </rect> </property> <layout class="QVBoxLayout" name="verticalLayout_8"> @@ -705,6 +705,71 @@ </widget> </item> <item> + <widget class="QGroupBox" name="groupBox_2"> + <property name="title"> + <string>Debugging Line Markers</string> + </property> + <layout class="QGridLayout" name="gridLayout_10"> + <item row="0" column="0" colspan="4"> + <widget class="QCheckBox" name="debugMarkerBackgroundCheckBox"> + <property name="toolTip"> + <string>Select to indicate the debug markers using coloured line backgrounds, arrow indicators otherwise</string> + </property> + <property name="text"> + <string>Use background colours</string> + </property> + </widget> + </item> + <item row="1" column="0"> + <widget class="QLabel" name="TextLabel3_2_2"> + <property name="text"> + <string>Current line marker:</string> + </property> + </widget> + </item> + <item row="1" column="1"> + <widget class="QPushButton" name="currentLineMarkerButton"> + <property name="minimumSize"> + <size> + <width>100</width> + <height>0</height> + </size> + </property> + <property name="toolTip"> + <string>Select the colour for the current line marker.</string> + </property> + <property name="text"> + <string/> + </property> + </widget> + </item> + <item row="1" column="2"> + <widget class="QLabel" name="TextLabel4_2_2"> + <property name="text"> + <string>Error line marker:</string> + </property> + </widget> + </item> + <item row="1" column="3"> + <widget class="QPushButton" name="errorMarkerButton"> + <property name="minimumSize"> + <size> + <width>100</width> + <height>0</height> + </size> + </property> + <property name="toolTip"> + <string>Select the colour for the error line marker.</string> + </property> + <property name="text"> + <string/> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> <widget class="QGroupBox" name="groupBox_6"> <property name="title"> <string>Braces</string> @@ -1860,6 +1925,9 @@ <tabstop>caretWidthSpinBox</tabstop> <tabstop>caretForegroundButton</tabstop> <tabstop>caretlineBackgroundButton</tabstop> + <tabstop>debugMarkerBackgroundCheckBox</tabstop> + <tabstop>currentLineMarkerButton</tabstop> + <tabstop>errorMarkerButton</tabstop> <tabstop>bracehighlightingCheckBox</tabstop> <tabstop>matchingBracesButton</tabstop> <tabstop>matchingBracesBackButton</tabstop> @@ -1901,6 +1969,7 @@ <tabstop>searchMarkerMapButton</tabstop> <tabstop>markerMapBackgroundButton</tabstop> <tabstop>miniMenuCheckBox</tabstop> + <tabstop>hideFormatButtonsCheckBox</tabstop> </tabstops> <resources/> <connections>
--- a/Preferences/__init__.py Sat May 06 14:59:26 2017 +0200 +++ b/Preferences/__init__.py Thu May 11 18:26:56 2017 +0200 @@ -403,6 +403,7 @@ "ColourizeSelText": False, "CustomSelectionColours": False, "ExtendSelectionToEol": False, + "LineMarkersBackground": True, "AutoPrepareAPIs": False, @@ -607,6 +608,8 @@ editorDefaults["CallTipsPosition"] = 0 editorColourDefaults = { + "CurrentMarker": QColor(Qt.yellow), + "ErrorMarker": QColor(Qt.red), "MatchingBrace": QColor(Qt.green), "MatchingBraceBack": QColor(Qt.white), "NonmatchingBrace": QColor(Qt.red),
--- a/QScintilla/Editor.py Sat May 06 14:59:26 2017 +0200 +++ b/QScintilla/Editor.py Thu May 11 18:26:56 2017 +0200 @@ -293,10 +293,15 @@ UI.PixmapCache.getPixmap("warning.png")) # define the line markers - self.currentline = self.markerDefine( - UI.PixmapCache.getPixmap("currentLineMarker.png")) - self.errorline = self.markerDefine( - UI.PixmapCache.getPixmap("errorLineMarker.png")) + if Preferences.getEditor("LineMarkersBackground"): + self.currentline = self.markerDefine(QsciScintilla.Background) + self.errorline = self.markerDefine(QsciScintilla.Background) + self.__setLineMarkerColours() + else: + self.currentline = self.markerDefine( + UI.PixmapCache.getPixmap("currentLineMarker.png")) + self.errorline = self.markerDefine( + UI.PixmapCache.getPixmap("errorLineMarker.png")) self.breakpointMask = (1 << self.breakpoint) | \ (1 << self.cbreakpoint) | \ @@ -4008,6 +4013,19 @@ if QSCINTILLA_VERSION() >= 0x020301: self.__unifiedMargins = Preferences.getEditor("UnifiedMargins") + # set the line marker colours or pixmap + if Preferences.getEditor("LineMarkersBackground"): + self.markerDefine(QsciScintilla.Background, self.currentline) + self.markerDefine(QsciScintilla.Background, self.errorline) + self.__setLineMarkerColours() + else: + self.markerDefine( + UI.PixmapCache.getPixmap("currentLineMarker.png"), + self.currentline) + self.markerDefine( + UI.PixmapCache.getPixmap("errorLineMarker.png"), + self.errorline) + # set the text display self.__setTextDisplay() @@ -4067,6 +4085,19 @@ self.settingsRead.emit() + def __setLineMarkerColours(self): + """ + Private method to set the line marker colours. + """ + self.setMarkerForegroundColor( + Preferences.getEditorColour("CurrentMarker"), self.currentline) + self.setMarkerBackgroundColor( + Preferences.getEditorColour("CurrentMarker"), self.currentline) + self.setMarkerForegroundColor( + Preferences.getEditorColour("ErrorMarker"), self.errorline) + self.setMarkerBackgroundColor( + Preferences.getEditorColour("ErrorMarker"), self.errorline) + def __setMarginsDisplay(self): """ Private method to configure margins 0 and 2.
--- a/changelog Sat May 06 14:59:26 2017 +0200 +++ b/changelog Thu May 11 18:26:56 2017 +0200 @@ -5,6 +5,10 @@ - Checkers -- extended the source documentation checker to check for raised/documented exceptions and defined/documented signals +- Editor + -- reintroduced the highlighting of current instruction line and the error + line using colored background. It is configurable whether to use these + backgrounds or the arrows. Version 17.05: - bug fixes
--- a/i18n/eric6_cs.ts Sat May 06 14:59:26 2017 +0200 +++ b/i18n/eric6_cs.ts Thu May 11 18:26:56 2017 +0200 @@ -9469,97 +9469,97 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="2884"/> + <location filename="../QScintilla/Editor.py" line="2889"/> <source>Open File</source> <translation>Otevřít soubor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="662"/> + <location filename="../QScintilla/Editor.py" line="667"/> <source>Undo</source> <translation>Vrátit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="665"/> + <location filename="../QScintilla/Editor.py" line="670"/> <source>Redo</source> <translation>Znovu použít</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="668"/> + <location filename="../QScintilla/Editor.py" line="673"/> <source>Revert to last saved state</source> <translation>Vrátit k poslednímu uloženému stavu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="672"/> + <location filename="../QScintilla/Editor.py" line="677"/> <source>Cut</source> <translation>Vyjmout</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="675"/> + <location filename="../QScintilla/Editor.py" line="680"/> <source>Copy</source> <translation>Kopírovat</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="678"/> - <source>Paste</source> - <translation>Vložit</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="683"/> + <source>Paste</source> + <translation>Vložit</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="688"/> <source>Indent</source> <translation>Odsadit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="686"/> + <location filename="../QScintilla/Editor.py" line="691"/> <source>Unindent</source> <translation>Zrušit odsazení</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="689"/> + <location filename="../QScintilla/Editor.py" line="694"/> <source>Comment</source> <translation>Vytvořit komentář</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="692"/> + <location filename="../QScintilla/Editor.py" line="697"/> <source>Uncomment</source> <translation>Zrušit komentář</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="695"/> + <location filename="../QScintilla/Editor.py" line="700"/> <source>Stream Comment</source> <translation>Proudový komentář</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="698"/> + <location filename="../QScintilla/Editor.py" line="703"/> <source>Box Comment</source> <translation>Obdélníkový komentář</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="702"/> + <location filename="../QScintilla/Editor.py" line="707"/> <source>Select to brace</source> <translation>Vybrat až po závorku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="704"/> + <location filename="../QScintilla/Editor.py" line="709"/> <source>Select all</source> <translation>Vybrat vše</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="705"/> + <location filename="../QScintilla/Editor.py" line="710"/> <source>Deselect all</source> <translation>Zrušit celý výběr</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="719"/> + <location filename="../QScintilla/Editor.py" line="724"/> <source>Shorten empty lines</source> <translation>Zkrátit prázdné řádky</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="726"/> - <source>Use Monospaced Font</source> - <translation>Použít neporoporcionální font</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="731"/> + <source>Use Monospaced Font</source> + <translation>Použít neporoporcionální font</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="736"/> <source>Autosave enabled</source> <translation>Zapnout autosave</translation> </message> @@ -9569,22 +9569,22 @@ <translation type="obsolete">Zapnout autodoplňování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="772"/> + <location filename="../QScintilla/Editor.py" line="777"/> <source>Close</source> <translation>Zavřít</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="778"/> + <location filename="../QScintilla/Editor.py" line="783"/> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="781"/> + <location filename="../QScintilla/Editor.py" line="786"/> <source>Save As...</source> <translation>Uložit jako...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="797"/> + <location filename="../QScintilla/Editor.py" line="802"/> <source>Print</source> <translation>Tisk</translation> </message> @@ -9594,447 +9594,447 @@ <translation type="obsolete">Autodoplňování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="823"/> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Complete from Document</source> <translation type="unfinished">z dokumentu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="825"/> + <location filename="../QScintilla/Editor.py" line="830"/> <source>Complete from APIs</source> <translation type="unfinished">z API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="827"/> + <location filename="../QScintilla/Editor.py" line="832"/> <source>Complete from Document and APIs</source> <translation type="unfinished">z dokumentu a API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Check</source> <translation>Zkontrolovat</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="861"/> - <source>Show</source> - <translation>Zobrazit</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="863"/> - <source>Code metrics...</source> - <translation>Metrika kódu...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="864"/> - <source>Code coverage...</source> - <translation>Pokrytí kódu...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="866"/> - <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="868"/> + <source>Code metrics...</source> + <translation>Metrika kódu...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="869"/> + <source>Code coverage...</source> + <translation>Pokrytí kódu...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="871"/> + <source>Show code coverage annotations</source> + <translation>Zobrazit poznámky pokrytí kódu</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="874"/> <source>Hide code coverage annotations</source> <translation>Skrýt poznámky pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="872"/> + <location filename="../QScintilla/Editor.py" line="877"/> <source>Profile data...</source> <translation>Profilovat data...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="885"/> + <location filename="../QScintilla/Editor.py" line="890"/> <source>Diagrams</source> <translation>Diagramy</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="887"/> + <location filename="../QScintilla/Editor.py" line="892"/> <source>Class Diagram...</source> <translation>Diagram třídy...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="889"/> + <location filename="../QScintilla/Editor.py" line="894"/> <source>Package Diagram...</source> <translation>Diagram balíčku...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="891"/> + <location filename="../QScintilla/Editor.py" line="896"/> <source>Imports Diagram...</source> <translation>Diagram importů...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893"/> + <location filename="../QScintilla/Editor.py" line="898"/> <source>Application Diagram...</source> <translation>Diagram aplikace...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="911"/> + <location filename="../QScintilla/Editor.py" line="916"/> <source>Languages</source> <translation>Jazyky</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="914"/> + <location filename="../QScintilla/Editor.py" line="919"/> <source>No Language</source> <translation>Žádný jazyk</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1157"/> + <location filename="../QScintilla/Editor.py" line="1162"/> <source>Toggle bookmark</source> <translation>Přepnout záložku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1159"/> + <location filename="../QScintilla/Editor.py" line="1164"/> <source>Next bookmark</source> <translation>Následující záložka</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161"/> - <source>Previous bookmark</source> - <translation>Předchozí záložka</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1163"/> - <source>Clear all bookmarks</source> - <translation>Zrušit všechny záložky</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1166"/> - <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="1168"/> + <source>Clear all bookmarks</source> + <translation>Zrušit všechny záložky</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1171"/> + <source>Goto syntax error</source> + <translation>Jít na chybu syntaxe</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1173"/> <source>Show syntax error message</source> <translation>Zobrazit hlášení syntaktické chyby</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1170"/> + <location filename="../QScintilla/Editor.py" line="1175"/> <source>Clear syntax error</source> <translation>Zrušit chybu syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1183"/> - <source>Toggle breakpoint</source> - <translation>Přepnout breakpoint</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1185"/> - <source>Toggle temporary breakpoint</source> - <translation>Přepnout dočasný breakpoint</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1188"/> - <source>Edit breakpoint...</source> - <translation>Editovat breakpoint...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5146"/> - <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="1190"/> + <source>Toggle temporary breakpoint</source> + <translation>Přepnout dočasný breakpoint</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1193"/> + <source>Edit breakpoint...</source> + <translation>Editovat breakpoint...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5177"/> + <source>Enable breakpoint</source> + <translation>Aktivovat breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1198"/> <source>Next breakpoint</source> <translation>Následující breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1195"/> - <source>Previous breakpoint</source> - <translation>Předchozí breakpoint</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1197"/> - <source>Clear all breakpoints</source> - <translation>Zrušit všechny breakpointy</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1200"/> + <source>Previous breakpoint</source> + <translation>Předchozí breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1202"/> + <source>Clear all breakpoints</source> + <translation>Zrušit všechny breakpointy</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1205"/> <source>Next uncovered line</source> <translation>Následující odkrytá řádka</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1203"/> - <source>Previous uncovered line</source> - <translation>Předchozí odkrytá řádka</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1206"/> - <source>Next task</source> - <translation>Následující úloha</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1208"/> + <source>Previous uncovered line</source> + <translation>Předchozí odkrytá řádka</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1211"/> + <source>Next task</source> + <translation>Následující úloha</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1213"/> <source>Previous task</source> <translation>Předchozí úloha</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1217"/> + <location filename="../QScintilla/Editor.py" line="1222"/> <source>LMB toggles bookmarks</source> <translation>LMB přepínač záložek</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1221"/> + <location filename="../QScintilla/Editor.py" line="1226"/> <source>LMB toggles breakpoints</source> <translation>LMB přepínač breakpointů</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1758"/> + <location filename="../QScintilla/Editor.py" line="1763"/> <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="1758"/> + <location filename="../QScintilla/Editor.py" line="1763"/> <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="2449"/> + <location filename="../QScintilla/Editor.py" line="2454"/> <source>Printing...</source> <translation>Tisk...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2466"/> - <source>Printing completed</source> - <translation>Tisk je hotov</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2468"/> - <source>Error while printing</source> - <translation>Chyba během tisku</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2471"/> + <source>Printing completed</source> + <translation>Tisk je hotov</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2473"/> + <source>Error while printing</source> + <translation>Chyba během tisku</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2476"/> <source>Printing aborted</source> <translation>Tisk byl zrušen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3047"/> + <location filename="../QScintilla/Editor.py" line="3052"/> <source>Save File</source> <translation>Uložit soubor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829"/> + <location filename="../QScintilla/Editor.py" line="2834"/> <source>File Modified</source> <translation>Soubor je modifikován</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4419"/> + <location filename="../QScintilla/Editor.py" line="4450"/> <source>Autocompletion</source> <translation>Autodoplňování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4419"/> + <location filename="../QScintilla/Editor.py" line="4450"/> <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="5149"/> + <location filename="../QScintilla/Editor.py" line="5180"/> <source>Disable breakpoint</source> <translation>Deaktivovat breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523"/> + <location filename="../QScintilla/Editor.py" line="5554"/> <source>Code Coverage</source> <translation>Pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523"/> + <location filename="../QScintilla/Editor.py" line="5554"/> <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="5586"/> + <location filename="../QScintilla/Editor.py" line="5617"/> <source>Show Code Coverage Annotations</source> <translation>Zobrazit poznámky pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5579"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>All lines have been covered.</source> <translation>Všechny řádky byly pokryty.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5586"/> + <location filename="../QScintilla/Editor.py" line="5617"/> <source>There is no coverage file available.</source> <translation>Soubor s pokrytím není dostupný.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5701"/> + <location filename="../QScintilla/Editor.py" line="5732"/> <source>Profile Data</source> <translation>Profilovat data</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5701"/> + <location filename="../QScintilla/Editor.py" line="5732"/> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Syntax Error</source> <translation>Chyba syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>No syntax error message available.</source> <translation>Hlášení syntaktické chyby není dostupné.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6176"/> + <location filename="../QScintilla/Editor.py" line="6207"/> <source>Macro Name</source> <translation>Název makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6176"/> + <location filename="../QScintilla/Editor.py" line="6207"/> <source>Select a macro name:</source> <translation>Vyberte název makra:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6204"/> + <location filename="../QScintilla/Editor.py" line="6235"/> <source>Load macro file</source> <translation>Načíst soubor makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6247"/> + <location filename="../QScintilla/Editor.py" line="6278"/> <source>Macro files (*.macro)</source> <translation>Macro soubory (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6227"/> + <location filename="../QScintilla/Editor.py" line="6258"/> <source>Error loading macro</source> <translation>Chyba při načítání makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6247"/> + <location filename="../QScintilla/Editor.py" line="6278"/> <source>Save macro file</source> <translation>Uložit soubor s makrem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6264"/> + <location filename="../QScintilla/Editor.py" line="6295"/> <source>Save macro</source> <translation>Uložit makro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6280"/> + <location filename="../QScintilla/Editor.py" line="6311"/> <source>Error saving macro</source> <translation>Chyba při ukládání makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6293"/> + <location filename="../QScintilla/Editor.py" line="6324"/> <source>Start Macro Recording</source> <translation>Spustit záznam makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6293"/> + <location filename="../QScintilla/Editor.py" line="6324"/> <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="6319"/> + <location filename="../QScintilla/Editor.py" line="6350"/> <source>Macro Recording</source> <translation>Záznam makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6319"/> + <location filename="../QScintilla/Editor.py" line="6350"/> <source>Enter name of the macro:</source> <translation>Vložte název makra:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6457"/> + <location filename="../QScintilla/Editor.py" line="6488"/> <source>File changed</source> <translation>Soubor změněn</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6761"/> + <location filename="../QScintilla/Editor.py" line="6792"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6782"/> + <location filename="../QScintilla/Editor.py" line="6813"/> <source>Resources</source> <translation>Zdroje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6784"/> + <location filename="../QScintilla/Editor.py" line="6815"/> <source>Add file...</source> <translation>Přidat soubor...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6786"/> + <location filename="../QScintilla/Editor.py" line="6817"/> <source>Add files...</source> <translation>Přidat soubory...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6788"/> + <location filename="../QScintilla/Editor.py" line="6819"/> <source>Add aliased file...</source> <translation>Přidat zástupce souboru...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6791"/> + <location filename="../QScintilla/Editor.py" line="6822"/> <source>Add localized resource...</source> <translation>Přidat lokalizované resource...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6795"/> + <location filename="../QScintilla/Editor.py" line="6826"/> <source>Add resource frame</source> <translation>Přidat resource frame</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6814"/> + <location filename="../QScintilla/Editor.py" line="6845"/> <source>Add file resource</source> <translation>Přidat soubor resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6830"/> + <location filename="../QScintilla/Editor.py" line="6861"/> <source>Add file resources</source> <translation>Přidat soubory resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6858"/> + <location filename="../QScintilla/Editor.py" line="6889"/> <source>Add aliased file resource</source> <translation>Přidat zástupce souboru resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6922"/> + <location filename="../QScintilla/Editor.py" line="6953"/> <source>Package Diagram</source> <translation>Diagram balíčku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6922"/> + <location filename="../QScintilla/Editor.py" line="6953"/> <source>Include class attributes?</source> <translation>Včetně atributů třídy?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6956"/> + <location filename="../QScintilla/Editor.py" line="6987"/> <source>Application Diagram</source> <translation>Diagram aplikace</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6956"/> + <location filename="../QScintilla/Editor.py" line="6987"/> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1034"/> + <location filename="../QScintilla/Editor.py" line="1039"/> <source>Export as</source> <translation>Exportovat jako</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>Export source</source> <translation>Export zdroj</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <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="6942"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Imports Diagram</source> <translation>Importovat diagram</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6942"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Include imports from external modules?</source> <translation>Zahrnout importy z externích modulů?</translation> </message> @@ -10044,332 +10044,332 @@ <translation type="obsolete">dynamický</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="750"/> + <location filename="../QScintilla/Editor.py" line="755"/> <source>Calltip</source> <translation>Rychlé tipy</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="794"/> + <location filename="../QScintilla/Editor.py" line="799"/> <source>Print Preview</source> <translation>Náhled tisku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="404"/> + <location filename="../QScintilla/Editor.py" line="409"/> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <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="735"/> + <location filename="../QScintilla/Editor.py" line="740"/> <source>Typing aids enabled</source> <translation>Pomůcky při psaní zapnuty</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="998"/> + <location filename="../QScintilla/Editor.py" line="1003"/> <source>End-of-Line Type</source> <translation>Typ Konec-řádku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1002"/> + <location filename="../QScintilla/Editor.py" line="1007"/> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009"/> + <location filename="../QScintilla/Editor.py" line="1014"/> <source>Windows</source> <translation></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1016"/> + <location filename="../QScintilla/Editor.py" line="1021"/> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="957"/> + <location filename="../QScintilla/Editor.py" line="962"/> <source>Encodings</source> <translation>Kódování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="937"/> + <location filename="../QScintilla/Editor.py" line="942"/> <source>Guessed</source> <translation>Odhadem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272"/> + <location filename="../QScintilla/Editor.py" line="1277"/> <source>Alternatives</source> <translation>Alternativy</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1288"/> + <location filename="../QScintilla/Editor.py" line="1293"/> <source>Pygments Lexer</source> <translation></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1288"/> + <location filename="../QScintilla/Editor.py" line="1293"/> <source>Select the Pygments lexer to apply.</source> <translation>Použít Pygments lexer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7234"/> + <location filename="../QScintilla/Editor.py" line="7265"/> <source>Check spelling...</source> <translation>Zatrhnout kontrolu...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="711"/> + <location filename="../QScintilla/Editor.py" line="716"/> <source>Check spelling of selection...</source> <translation>Zatrhnout výběr kontroly...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7237"/> + <location filename="../QScintilla/Editor.py" line="7268"/> <source>Add to dictionary</source> <translation>Přidat do slovníku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7239"/> + <location filename="../QScintilla/Editor.py" line="7270"/> <source>Ignore All</source> <translation>Ignorovat vše</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="715"/> + <location filename="../QScintilla/Editor.py" line="720"/> <source>Remove from dictionary</source> <translation>Odebrat ze slovníku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="344"/> + <location filename="../QScintilla/Editor.py" line="349"/> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <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="1249"/> + <location filename="../QScintilla/Editor.py" line="1254"/> <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="1268"/> + <location filename="../QScintilla/Editor.py" line="1273"/> <source>Alternatives ({0})</source> <translation>Alternativy ({0})</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829"/> + <location filename="../QScintilla/Editor.py" line="2834"/> <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="2884"/> + <location filename="../QScintilla/Editor.py" line="2889"/> <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="2988"/> + <location filename="../QScintilla/Editor.py" line="2993"/> <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="6218"/> + <location filename="../QScintilla/Editor.py" line="6249"/> <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="6227"/> + <location filename="../QScintilla/Editor.py" line="6258"/> <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="6280"/> + <location filename="../QScintilla/Editor.py" line="6311"/> <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="6621"/> + <location filename="../QScintilla/Editor.py" line="6652"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6761"/> + <location filename="../QScintilla/Editor.py" line="6792"/> <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="6858"/> + <location filename="../QScintilla/Editor.py" line="6889"/> <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="1173"/> - <source>Next warning</source> - <translation>Následující varování</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1176"/> - <source>Previous warning</source> - <translation>Předchozí varování</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1178"/> + <source>Next warning</source> + <translation>Následující varování</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1181"/> + <source>Previous warning</source> + <translation>Předchozí varování</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1183"/> <source>Show warning message</source> <translation>Zobrazit varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1180"/> + <location filename="../QScintilla/Editor.py" line="1185"/> <source>Clear warnings</source> <translation>Vyčistit varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3047"/> + <location filename="../QScintilla/Editor.py" line="3052"/> <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="6264"/> + <location filename="../QScintilla/Editor.py" line="6295"/> <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="6115"/> + <location filename="../QScintilla/Editor.py" line="6146"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6122"/> + <location filename="../QScintilla/Editor.py" line="6153"/> <source>Error: {0}</source> <translation type="unfinished">Chyby: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6453"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <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="4524"/> + <location filename="../QScintilla/Editor.py" line="4555"/> <source>Activating Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4524"/> + <location filename="../QScintilla/Editor.py" line="4555"/> <source>Auto-completion provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4844"/> + <location filename="../QScintilla/Editor.py" line="4875"/> <source>Activating Calltip Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4844"/> + <location filename="../QScintilla/Editor.py" line="4875"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="790"/> + <location filename="../QScintilla/Editor.py" line="795"/> <source>Open 'rejection' file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="897"/> + <location filename="../QScintilla/Editor.py" line="902"/> <source>Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1211"/> + <location filename="../QScintilla/Editor.py" line="1216"/> <source>Next change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214"/> + <location filename="../QScintilla/Editor.py" line="1219"/> <source>Previous change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7651"/> + <location filename="../QScintilla/Editor.py" line="7682"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7651"/> + <location filename="../QScintilla/Editor.py" line="7682"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6051"/> + <location filename="../QScintilla/Editor.py" line="6082"/> <source>Warning</source> <translation type="unfinished">Varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6051"/> + <location filename="../QScintilla/Editor.py" line="6082"/> <source>No warning messages available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6112"/> + <location filename="../QScintilla/Editor.py" line="6143"/> <source>Style: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="764"/> + <location filename="../QScintilla/Editor.py" line="769"/> <source>New Document View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="767"/> + <location filename="../QScintilla/Editor.py" line="772"/> <source>New Document View (with new split)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="851"/> + <location filename="../QScintilla/Editor.py" line="856"/> <source>Tools</source> <translation type="unfinished">Nástroje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="979"/> + <location filename="../QScintilla/Editor.py" line="984"/> <source>Re-Open With Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6478"/> <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="742"/> + <location filename="../QScintilla/Editor.py" line="747"/> <source>Automatic Completion enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="820"/> + <location filename="../QScintilla/Editor.py" line="825"/> <source>Complete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4573"/> + <location filename="../QScintilla/Editor.py" line="4604"/> <source>Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4573"/> + <location filename="../QScintilla/Editor.py" line="4604"/> <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="4887"/> + <location filename="../QScintilla/Editor.py" line="4918"/> <source>Call-Tips Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4887"/> + <location filename="../QScintilla/Editor.py" line="4918"/> <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="7738"/> + <location filename="../QScintilla/Editor.py" line="7769"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7738"/> + <location filename="../QScintilla/Editor.py" line="7769"/> <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="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Save Copy...</source> <translation type="unfinished"></translation> </message> @@ -12980,132 +12980,132 @@ <translation>Vybrat barvu pozadí pro řádku obsahující karet.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="716"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="726"/> <source>Current line marker:</source> - <translation type="obsolete">Značka aktuální řádky:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="729"/> - <source>Select the colour for the current line marker.</source> - <translation type="obsolete">Vybrat barvu pro značku aktuální řádky.</translation> + <translation type="unfinished">Značka aktuální řádky:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="739"/> - <source>Error line marker:</source> - <translation type="obsolete">Značka chybné řádky:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="752"/> - <source>Select the colour for the error line marker.</source> - <translation type="obsolete">Vybrat barvu pro značku chybné řádky.</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="710"/> - <source>Braces</source> - <translation>Závorky</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="716"/> - <source>Select whether matching and bad braces shall be highlighted.</source> - <translation>Vybrat, jestliže se má zkontrolovat párovost závorek a neplatné se mají zvýraznit.</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> - <source>Highlight braces</source> - <translation>Zvýraznit závorky</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="726"/> - <source>Matched braces:</source> - <translation>Párové závorky:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="739"/> - <source>Select the colour for highlighting matching braces.</source> - <translation>Výběr barvy pro zvýraznění párových závorek.</translation> + <source>Select the colour for the current line marker.</source> + <translation type="unfinished">Vybrat barvu pro značku aktuální řádky.</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="749"/> - <source>Matched braces background:</source> - <translation>Pozadí párových závorek:</translation> + <source>Error line marker:</source> + <translation type="unfinished">Značka chybné řádky:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="762"/> - <source>Select the background colour for highlighting matching braces.</source> - <translation>Výběr barvy pozadí pro zvýraznění párových závorek.</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="778"/> - <source>Unmatched brace:</source> - <translation>Nepárová závorka:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="785"/> - <source>Select the colour for highlighting nonmatching braces.</source> - <translation>Výběr barvy pro zvýraznění nepárových závorek.</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="801"/> - <source>Unmatched brace background:</source> - <translation>Pozadí nepárové závorky:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="808"/> - <source>Select the background colour for highlighting nonmatching braces.</source> - <translation>Vybrat barvu pozadí pro zvýraznění nepárových závorek.</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="821"/> - <source>End of Line</source> - <translation>Konec řádku</translation> + <source>Select the colour for the error line marker.</source> + <translation type="unfinished">Vybrat barvu pro značku chybné řádky.</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="775"/> + <source>Braces</source> + <translation>Závorky</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="781"/> + <source>Select whether matching and bad braces shall be highlighted.</source> + <translation>Vybrat, jestliže se má zkontrolovat párovost závorek a neplatné se mají zvýraznit.</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="784"/> + <source>Highlight braces</source> + <translation>Zvýraznit závorky</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="791"/> + <source>Matched braces:</source> + <translation>Párové závorky:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="804"/> + <source>Select the colour for highlighting matching braces.</source> + <translation>Výběr barvy pro zvýraznění párových závorek.</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="814"/> + <source>Matched braces background:</source> + <translation>Pozadí párových závorek:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="827"/> + <source>Select the background colour for highlighting matching braces.</source> + <translation>Výběr barvy pozadí pro zvýraznění párových závorek.</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="843"/> + <source>Unmatched brace:</source> + <translation>Nepárová závorka:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="850"/> + <source>Select the colour for highlighting nonmatching braces.</source> + <translation>Výběr barvy pro zvýraznění nepárových závorek.</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="866"/> + <source>Unmatched brace background:</source> + <translation>Pozadí nepárové závorky:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="873"/> + <source>Select the background colour for highlighting nonmatching braces.</source> + <translation>Vybrat barvu pozadí pro zvýraznění nepárových závorek.</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="886"/> + <source>End of Line</source> + <translation>Konec řádku</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="892"/> <source>Select whether end of line shall be shown</source> <translation>Vybrat, mají-li se zobrazovat symboly konce řádků</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="830"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="895"/> <source>Show End of Line</source> <translation>Zobrazovat konce řádků</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="840"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="905"/> <source>Wrap long lines</source> <translation>Zalamovat dlouhé řádky</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="893"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="958"/> <source>Edge Mode</source> <translation>Mód okraje</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="937"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1002"/> <source>Select the colour for the edge marker.</source> <translation>Vybrat barvu pro značku okraje.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="947"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1012"/> <source>Background colour:</source> <translation>Barva pozadí:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="960"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1025"/> <source>Move to set the edge column.</source> <translation>Posunout pro nastavení sloupce okraje.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="988"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1053"/> <source>Displays the selected tab width.</source> <translation>Zobrazuje vybranou šířku tabulátoru.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1004"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1069"/> <source>Column number:</source> <translation>Číslo sloupce:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1011"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> <source>Mode:</source> <translation>Mód:</translation> </message> @@ -13115,37 +13115,37 @@ <translation>Vypnuto</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1030"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1095"/> <source>Draw Line</source> <translation>Zobrazit linku</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1035"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1100"/> <source>Change Background Colour</source> <translation>Změnit barvu pozadí</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1795"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1860"/> <source>Various</source> <translation>Různé</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1384"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1449"/> <source>Select whether whitspace characters shall be shown</source> <translation>Vybrat, mají-li se zobrazovat prázdné znaky</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1387"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1452"/> <source>Show Whitespace</source> <translation>Zobrazit prázdné znaky</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1801"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1866"/> <source>Select to show a minimalistic context menu</source> <translation>Vybrat pro zobrazení minimalistického kontextového menu</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1804"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1869"/> <source>Show minimal context menu</source> <translation>Zobrazit minimální kontextové menu</translation> </message> @@ -13192,25 +13192,25 @@ <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="710"/> <source>Debugging Line Markers</source> - <translation type="obsolete">Značky debugované řádky</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <translation type="unfinished">Značky debugované řádky</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1114"/> <source>Zoom</source> <translation>Lupa</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1055"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1120"/> <source>Initial zoom factor:</source> <translation>Úvodní nastavení lupy:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1062"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1127"/> <source>Move to set the initial zoom factor</source> <translation>Posunout pro nastavení velikosti lupy</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1084"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1149"/> <source>Displays the selected initial zoom factor</source> <translation>Zobrazuje vybranou velikost lupy</translation> </message> @@ -13250,82 +13250,82 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1168"/> <source>Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1109"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1174"/> <source>Select to enable the display of annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1177"/> <source>Show annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1119"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1184"/> <source>Warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1215"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1280"/> <source>Press to select the foreground colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1218"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1283"/> <source>Foreground</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1225"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1290"/> <source>Press to select the background colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1228"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1293"/> <source>Background</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1164"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1229"/> <source>Errors</source> <translation type="unfinished">Chyby</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1378"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1443"/> <source>Whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1396"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1461"/> <source>Whitespace size:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1403"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1468"/> <source>Select the size of the dots used to represent visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1436"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1501"/> <source>Whitespace foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1449"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1514"/> <source>Select the foreground colour for visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1459"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1524"/> <source>Whitespace background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1472"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1537"/> <source>Select the background colour for visible whitespace</source> <translation type="unfinished"></translation> </message> @@ -13365,67 +13365,67 @@ <translation type="unfinished">Barvy</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1322"/> <source>Change Tracing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1263"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1328"/> <source>Select to mark changed lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1266"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1331"/> <source>Mark changed lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1275"/> - <source>Timeout for marking changed lines:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1282"/> - <source>Enter the time in milliseconds after which changed lines will be marked</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1294"/> - <source> ms</source> - <translation type="unfinished"> ms</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1327"/> - <source>Unsaved changes colour:</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1340"/> + <source>Timeout for marking changed lines:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> + <source>Enter the time in milliseconds after which changed lines will be marked</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1359"/> + <source> ms</source> + <translation type="unfinished"> ms</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1392"/> + <source>Unsaved changes colour:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1405"/> <source>Select the colour for the change marker for unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1350"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1415"/> <source>Saved changes colour:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1363"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1428"/> <source>Select the colour for the change marker for saved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="856"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> <source>Select the wrap mode for long lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="876"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="941"/> <source>Indication:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="883"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="948"/> <source>Select, how wrapped lines are indicated</source> <translation type="unfinished"></translation> </message> @@ -13460,22 +13460,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1148"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1213"/> <source>Warning: There might be an issue.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1193"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1258"/> <source>Error: There is an issue.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1209"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1274"/> <source>Style</source> <translation type="unfinished">Styl</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1238"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1303"/> <source>Style: There is a style issue.</source> <translation type="unfinished"></translation> </message> @@ -13490,155 +13490,165 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1556"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1621"/> <source>Marker Map</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1562"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1627"/> <source>Errors:</source> <translation type="unfinished">Chyby:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1575"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1640"/> <source>Select the colour for error markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1585"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1650"/> <source>Warnings:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1598"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1663"/> <source>Select the colour for warning markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1608"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1673"/> <source>Bookmarks:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1621"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1686"/> <source>Select the colour for bookmark markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1631"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1696"/> <source>Breakpoints:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1644"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1709"/> <source>Select the colour for breakpoint markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1654"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1719"/> <source>Tasks:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1667"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1732"/> <source>Select the colour for task markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1677"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1742"/> <source>Changes:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1690"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1755"/> <source>Select the colour for change markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1700"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1765"/> <source>Coverage:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1713"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1778"/> <source>Select the colour for coverage markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1723"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1788"/> <source>Current Line:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1736"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1801"/> <source>Select the colour for the current line marker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1769"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1834"/> <source>Background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1782"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1847"/> <source>Select the background colour for the marker map</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1487"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1552"/> <source>Indentation Guides</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1493"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1558"/> <source>Select whether indentation guides should be shown.</source> <translation type="unfinished">Vybrat, jestliže se mají zobrazovat vodítka odsazování.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1496"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1561"/> <source>Show Indentation Guides</source> <translation type="unfinished">Zobrazit vodítka odsazování</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1505"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1570"/> <source>Indentation Guides foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1518"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1583"/> <source>Select the foreground colour for indentation guides</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1528"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1593"/> <source>Indentation Guides background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1541"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1606"/> <source>Select the background colour for indentation guides</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1746"/> - <source>Search Markers:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1759"/> - <source>Select the colour for the search marker</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1811"/> + <source>Search Markers:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1824"/> + <source>Select the colour for the search marker</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1876"/> <source>Select to hide the Format Buttons bar when formatting is not supported</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1814"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1879"/> <source>Hide Format Buttons bar when not supported</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="716"/> + <source>Select to indicate the debug markers using coloured line backgrounds, arrow indicators otherwise</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> + <source>Use background colours</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -40828,27 +40838,27 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1543"/> + <location filename="../Preferences/__init__.py" line="1546"/> <source>Export Preferences</source> <translation>Předvolby exportu</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1571"/> + <location filename="../Preferences/__init__.py" line="1574"/> <source>Import Preferences</source> <translation>Předvolby importu</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1571"/> + <location filename="../Preferences/__init__.py" line="1574"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1673"/> + <location filename="../Preferences/__init__.py" line="1676"/> <source>Select Python{0} Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1673"/> + <location filename="../Preferences/__init__.py" line="1676"/> <source>Select the Python{0} interpreter to be used:</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_de.ts Sat May 06 14:59:26 2017 +0200 +++ b/i18n/eric6_de.ts Thu May 11 18:26:56 2017 +0200 @@ -9175,892 +9175,892 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="2884"/> + <location filename="../QScintilla/Editor.py" line="2889"/> <source>Open File</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3047"/> + <location filename="../QScintilla/Editor.py" line="3052"/> <source>Save File</source> <translation>Datei sichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="662"/> + <location filename="../QScintilla/Editor.py" line="667"/> <source>Undo</source> <translation>Rückgängig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="665"/> + <location filename="../QScintilla/Editor.py" line="670"/> <source>Redo</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="672"/> + <location filename="../QScintilla/Editor.py" line="677"/> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="675"/> + <location filename="../QScintilla/Editor.py" line="680"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="678"/> - <source>Paste</source> - <translation>Einfügen</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="683"/> + <source>Paste</source> + <translation>Einfügen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="688"/> <source>Indent</source> <translation>Einrücken</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="686"/> + <location filename="../QScintilla/Editor.py" line="691"/> <source>Unindent</source> <translation>Einrücken rückgängig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="689"/> + <location filename="../QScintilla/Editor.py" line="694"/> <source>Comment</source> <translation>Kommentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="692"/> + <location filename="../QScintilla/Editor.py" line="697"/> <source>Uncomment</source> <translation>Kommentar entfernen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="772"/> + <location filename="../QScintilla/Editor.py" line="777"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="778"/> + <location filename="../QScintilla/Editor.py" line="783"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="781"/> + <location filename="../QScintilla/Editor.py" line="786"/> <source>Save As...</source> <translation>Speichern unter...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="704"/> + <location filename="../QScintilla/Editor.py" line="709"/> <source>Select all</source> <translation>Alles auswählen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="705"/> + <location filename="../QScintilla/Editor.py" line="710"/> <source>Deselect all</source> <translation>Auswahl aufheben</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="702"/> + <location filename="../QScintilla/Editor.py" line="707"/> <source>Select to brace</source> <translation>Zur Klammer auswählen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="797"/> + <location filename="../QScintilla/Editor.py" line="802"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2449"/> + <location filename="../QScintilla/Editor.py" line="2454"/> <source>Printing...</source> <translation>Drucke...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2466"/> - <source>Printing completed</source> - <translation>Drucken beendet</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2468"/> - <source>Error while printing</source> - <translation>Fehler beim Drucken</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2471"/> + <source>Printing completed</source> + <translation>Drucken beendet</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2473"/> + <source>Error while printing</source> + <translation>Fehler beim Drucken</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2476"/> <source>Printing aborted</source> <translation>Drucken abgebrochen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6457"/> + <location filename="../QScintilla/Editor.py" line="6488"/> <source>File changed</source> <translation>Datei geändert</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Check</source> <translation>Prüfen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829"/> + <location filename="../QScintilla/Editor.py" line="2834"/> <source>File Modified</source> <translation>Datei geändert</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="863"/> + <location filename="../QScintilla/Editor.py" line="868"/> <source>Code metrics...</source> <translation>Quelltextmetriken...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="864"/> + <location filename="../QScintilla/Editor.py" line="869"/> <source>Code coverage...</source> <translation>Quelltext Abdeckung...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="872"/> + <location filename="../QScintilla/Editor.py" line="877"/> <source>Profile data...</source> <translation>Profildaten...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="861"/> + <location filename="../QScintilla/Editor.py" line="866"/> <source>Show</source> <translation>Zeige</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="695"/> + <location filename="../QScintilla/Editor.py" line="700"/> <source>Stream Comment</source> <translation>Stream Kommentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="698"/> + <location filename="../QScintilla/Editor.py" line="703"/> <source>Box Comment</source> <translation>Box Kommentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1758"/> + <location filename="../QScintilla/Editor.py" line="1763"/> <source>Modification of Read Only file</source> <translation>Änderungsversuch für eine schreibgeschützte Datei</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1758"/> + <location filename="../QScintilla/Editor.py" line="1763"/> <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="911"/> + <location filename="../QScintilla/Editor.py" line="916"/> <source>Languages</source> <translation>Sprachen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="668"/> + <location filename="../QScintilla/Editor.py" line="673"/> <source>Revert to last saved state</source> <translation>Zurück zum letzten gesichert Zustand</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6176"/> + <location filename="../QScintilla/Editor.py" line="6207"/> <source>Macro Name</source> <translation>Makro Name</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6176"/> + <location filename="../QScintilla/Editor.py" line="6207"/> <source>Select a macro name:</source> <translation>Wähle einen Makro Namen:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6247"/> + <location filename="../QScintilla/Editor.py" line="6278"/> <source>Macro files (*.macro)</source> <translation>Makrodateien (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6204"/> + <location filename="../QScintilla/Editor.py" line="6235"/> <source>Load macro file</source> <translation>Lade Makrodatei</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6227"/> + <location filename="../QScintilla/Editor.py" line="6258"/> <source>Error loading macro</source> <translation>Fehler beim Makro Laden</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6247"/> + <location filename="../QScintilla/Editor.py" line="6278"/> <source>Save macro file</source> <translation>Makrodatei schreiben</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6264"/> + <location filename="../QScintilla/Editor.py" line="6295"/> <source>Save macro</source> <translation>Makro speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6280"/> + <location filename="../QScintilla/Editor.py" line="6311"/> <source>Error saving macro</source> <translation>Fehler beim Makro speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6293"/> + <location filename="../QScintilla/Editor.py" line="6324"/> <source>Start Macro Recording</source> <translation>Makroaufzeichnung starten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6319"/> + <location filename="../QScintilla/Editor.py" line="6350"/> <source>Macro Recording</source> <translation>Makroaufzeichnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6319"/> + <location filename="../QScintilla/Editor.py" line="6350"/> <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="1157"/> + <location filename="../QScintilla/Editor.py" line="1162"/> <source>Toggle bookmark</source> <translation>Lesezeichen setzen/löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1159"/> + <location filename="../QScintilla/Editor.py" line="1164"/> <source>Next bookmark</source> <translation>Nächstes Lesezeichen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161"/> + <location filename="../QScintilla/Editor.py" line="1166"/> <source>Previous bookmark</source> <translation>Vorheriges Lesezeichen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1163"/> + <location filename="../QScintilla/Editor.py" line="1168"/> <source>Clear all bookmarks</source> <translation>Alle Lesezeichen löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1183"/> - <source>Toggle breakpoint</source> - <translation>Haltepunkt setzen/löschen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1217"/> - <source>LMB toggles bookmarks</source> - <translation>LMK schaltet Lesezeichen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1221"/> - <source>LMB toggles breakpoints</source> - <translation>LMK schaltet Haltepunkte</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1193"/> - <source>Next breakpoint</source> - <translation>Nächster Haltepunkt</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1195"/> - <source>Previous breakpoint</source> - <translation>Vorheriger Haltepunkt</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1197"/> - <source>Clear all breakpoints</source> - <translation>Alle Haltepunkte löschen</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1188"/> - <source>Edit breakpoint...</source> - <translation>Haltepunkt bearbeiten...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5146"/> - <source>Enable breakpoint</source> - <translation>Haltepunkt aktivieren</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5149"/> - <source>Disable breakpoint</source> - <translation>Haltepunkt deaktivieren</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5523"/> - <source>Code Coverage</source> - <translation>Quelltext Abdeckung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5523"/> - <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="5701"/> - <source>Profile Data</source> - <translation>Profildaten</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5701"/> - <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="4419"/> - <source>Autocompletion</source> - <translation>Automatische Vervollständigung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="4419"/> - <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="726"/> - <source>Use Monospaced Font</source> - <translation>Benutze Monospace Font</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="719"/> - <source>Shorten empty lines</source> - <translation>Leere Zeilen verkürzen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1166"/> - <source>Goto syntax error</source> - <translation>Zu Syntaxfehler gehen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1170"/> - <source>Clear syntax error</source> - <translation>Syntaxfehler löschen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="731"/> - <source>Autosave enabled</source> - <translation>Autom. Speicherung aktiv</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6761"/> - <source>Drop Error</source> - <translation>Drop Fehler</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1168"/> - <source>Show syntax error message</source> - <translation>Zeige Syntaxfehlermeldung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5861"/> - <source>Syntax Error</source> - <translation>Syntaxfehler</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5861"/> - <source>No syntax error message available.</source> - <translation>Keine Syntaxfehlermeldung verfügbar.</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1185"/> - <source>Toggle temporary breakpoint</source> - <translation>Temporären Haltepunkt setzen/löschen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="866"/> - <source>Show code coverage annotations</source> - <translation>Markiere Zeilen ohne Abdeckung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="869"/> - <source>Hide code coverage annotations</source> - <translation>Lösche Abdeckungsmarkierungen</translation> + <source>Toggle breakpoint</source> + <translation>Haltepunkt setzen/löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1222"/> + <source>LMB toggles bookmarks</source> + <translation>LMK schaltet Lesezeichen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1226"/> + <source>LMB toggles breakpoints</source> + <translation>LMK schaltet Haltepunkte</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1198"/> + <source>Next breakpoint</source> + <translation>Nächster Haltepunkt</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1200"/> + <source>Previous breakpoint</source> + <translation>Vorheriger Haltepunkt</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1202"/> + <source>Clear all breakpoints</source> + <translation>Alle Haltepunkte löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1193"/> + <source>Edit breakpoint...</source> + <translation>Haltepunkt bearbeiten...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5177"/> + <source>Enable breakpoint</source> + <translation>Haltepunkt aktivieren</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5180"/> + <source>Disable breakpoint</source> + <translation>Haltepunkt deaktivieren</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5554"/> + <source>Code Coverage</source> + <translation>Quelltext Abdeckung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5554"/> + <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="5732"/> + <source>Profile Data</source> + <translation>Profildaten</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5732"/> + <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="4450"/> + <source>Autocompletion</source> + <translation>Automatische Vervollständigung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="4450"/> + <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="731"/> + <source>Use Monospaced Font</source> + <translation>Benutze Monospace Font</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="724"/> + <source>Shorten empty lines</source> + <translation>Leere Zeilen verkürzen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1171"/> + <source>Goto syntax error</source> + <translation>Zu Syntaxfehler gehen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1175"/> + <source>Clear syntax error</source> + <translation>Syntaxfehler löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="736"/> + <source>Autosave enabled</source> + <translation>Autom. Speicherung aktiv</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6792"/> + <source>Drop Error</source> + <translation>Drop Fehler</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1173"/> + <source>Show syntax error message</source> + <translation>Zeige Syntaxfehlermeldung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5892"/> + <source>Syntax Error</source> + <translation>Syntaxfehler</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5892"/> + <source>No syntax error message available.</source> + <translation>Keine Syntaxfehlermeldung verfügbar.</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1190"/> + <source>Toggle temporary breakpoint</source> + <translation>Temporären Haltepunkt setzen/löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="871"/> + <source>Show code coverage annotations</source> + <translation>Markiere Zeilen ohne Abdeckung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="874"/> + <source>Hide code coverage annotations</source> + <translation>Lösche Abdeckungsmarkierungen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1205"/> <source>Next uncovered line</source> <translation>Nächste nichtabgedeckte Zeile</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1203"/> - <source>Previous uncovered line</source> - <translation>Vorige nichtabgedeckte Zeile</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5586"/> - <source>Show Code Coverage Annotations</source> - <translation>Zeilen ohne Abdeckung Markieren</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5579"/> - <source>All lines have been covered.</source> - <translation>Alle Zeilen sind abgedeckt.</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5586"/> - <source>There is no coverage file available.</source> - <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2829"/> - <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="6218"/> - <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="6227"/> - <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="6280"/> - <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="6761"/> - <source><p><b>{0}</b> is not a file.</p></source> - <translation><p><b>{0}</b> ist keine Datei.</p></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="344"/> - <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> - <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="885"/> - <source>Diagrams</source> - <translation>Diagramme</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="887"/> - <source>Class Diagram...</source> - <translation>Klassendiagramm...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="889"/> - <source>Package Diagram...</source> - <translation>Package Diagramm...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="891"/> - <source>Imports Diagram...</source> - <translation>Imports-Diagramm...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="893"/> - <source>Application Diagram...</source> - <translation>Applikations-Diagramm...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="914"/> - <source>No Language</source> - <translation>Keine Sprache</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6621"/> - <source>{0} (ro)</source> - <translation>{0} (ro)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6782"/> - <source>Resources</source> - <translation>Ressourcen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6784"/> - <source>Add file...</source> - <translation>Datei hinzufügen...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6786"/> - <source>Add files...</source> - <translation>Dateien hinzufügen...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6788"/> - <source>Add aliased file...</source> - <translation>Aliased-Datei hinzufügen...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6791"/> - <source>Add localized resource...</source> - <translation>Lokalisierte Ressource hinzufügen...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6814"/> - <source>Add file resource</source> - <translation>Dateiressource hinzufügen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6830"/> - <source>Add file resources</source> - <translation>Dateiressourcen hinzufügen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6858"/> - <source>Add aliased file resource</source> - <translation>Aliased-Dateiressourcen hinzufügen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6858"/> - <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="6922"/> - <source>Package Diagram</source> - <translation>Package-Diagramm</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6922"/> - <source>Include class attributes?</source> - <translation>Klassenattribute anzeigen?</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6956"/> - <source>Application Diagram</source> - <translation>Applikations-Diagramm</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6956"/> - <source>Include module names?</source> - <translation>Modulnamen anzeigen?</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6795"/> - <source>Add resource frame</source> - <translation>Ressourcenrahmen hinzufügen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6293"/> - <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="1206"/> - <source>Next task</source> - <translation>Nächste Aufgabe</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1208"/> + <source>Previous uncovered line</source> + <translation>Vorige nichtabgedeckte Zeile</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5617"/> + <source>Show Code Coverage Annotations</source> + <translation>Zeilen ohne Abdeckung Markieren</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5610"/> + <source>All lines have been covered.</source> + <translation>Alle Zeilen sind abgedeckt.</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5617"/> + <source>There is no coverage file available.</source> + <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2834"/> + <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="6249"/> + <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="6258"/> + <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="6311"/> + <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="6792"/> + <source><p><b>{0}</b> is not a file.</p></source> + <translation><p><b>{0}</b> ist keine Datei.</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="349"/> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> + <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="890"/> + <source>Diagrams</source> + <translation>Diagramme</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="892"/> + <source>Class Diagram...</source> + <translation>Klassendiagramm...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="894"/> + <source>Package Diagram...</source> + <translation>Package Diagramm...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="896"/> + <source>Imports Diagram...</source> + <translation>Imports-Diagramm...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="898"/> + <source>Application Diagram...</source> + <translation>Applikations-Diagramm...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="919"/> + <source>No Language</source> + <translation>Keine Sprache</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6652"/> + <source>{0} (ro)</source> + <translation>{0} (ro)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6813"/> + <source>Resources</source> + <translation>Ressourcen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6815"/> + <source>Add file...</source> + <translation>Datei hinzufügen...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6817"/> + <source>Add files...</source> + <translation>Dateien hinzufügen...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6819"/> + <source>Add aliased file...</source> + <translation>Aliased-Datei hinzufügen...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6822"/> + <source>Add localized resource...</source> + <translation>Lokalisierte Ressource hinzufügen...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6845"/> + <source>Add file resource</source> + <translation>Dateiressource hinzufügen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6861"/> + <source>Add file resources</source> + <translation>Dateiressourcen hinzufügen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6889"/> + <source>Add aliased file resource</source> + <translation>Aliased-Dateiressourcen hinzufügen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6889"/> + <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="6953"/> + <source>Package Diagram</source> + <translation>Package-Diagramm</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6953"/> + <source>Include class attributes?</source> + <translation>Klassenattribute anzeigen?</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6987"/> + <source>Application Diagram</source> + <translation>Applikations-Diagramm</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6987"/> + <source>Include module names?</source> + <translation>Modulnamen anzeigen?</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6826"/> + <source>Add resource frame</source> + <translation>Ressourcenrahmen hinzufügen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6324"/> + <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="1211"/> + <source>Next task</source> + <translation>Nächste Aufgabe</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1213"/> <source>Previous task</source> <translation>Vorherige Aufgabe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="823"/> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Complete from Document</source> <translation>Vervollständigung vom Dokument</translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="830"/> + <source>Complete from APIs</source> + <translation>Vervollständigung von APIs</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="832"/> + <source>Complete from Document and APIs</source> + <translation>Vervollständigung vom Dokument und von APIs</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1039"/> + <source>Export as</source> + <translation>Exportieren als</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1262"/> + <source>Export source</source> + <translation>Quelltext exportieren</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1254"/> + <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="1262"/> + <source>No export format given. Aborting...</source> + <translation>Kein Exportformat angegeben. Abbruch...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6973"/> + <source>Imports Diagram</source> + <translation>Imports Diagramm</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6973"/> + <source>Include imports from external modules?</source> + <translation>Imports externer Module anzeigen?</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="755"/> + <source>Calltip</source> + <translation>Calltip</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="799"/> + <source>Print Preview</source> + <translation>Druckvorschau</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="409"/> + <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> + <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="740"/> + <source>Typing aids enabled</source> + <translation>Eingabehilfen aktiv</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1003"/> + <source>End-of-Line Type</source> + <translation>Zeilenendemarkierung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1007"/> + <source>Unix</source> + <translation>Unix</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1014"/> + <source>Windows</source> + <translation>Windows</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1021"/> + <source>Macintosh</source> + <translation>Macintosh</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962"/> + <source>Encodings</source> + <translation>Kodierungen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="942"/> + <source>Guessed</source> + <translation>Ermittelt</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1277"/> + <source>Alternatives</source> + <translation>Alternativen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1273"/> + <source>Alternatives ({0})</source> + <translation>Alternativen ({0})</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1293"/> + <source>Pygments Lexer</source> + <translation>Pygments Lexer</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1293"/> + <source>Select the Pygments lexer to apply.</source> + <translation>Wähle den anzuwendenden Pygments Lexer.</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7265"/> + <source>Check spelling...</source> + <translation>Rechtschreibprüfung...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="716"/> + <source>Check spelling of selection...</source> + <translation>Rechtschreibprüfung für Auswahl...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7268"/> + <source>Add to dictionary</source> + <translation>Zum Wörterbuch hinzufügen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7270"/> + <source>Ignore All</source> + <translation>Alle ignorieren</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="720"/> + <source>Remove from dictionary</source> + <translation>Aus dem Wörterbuch entfernen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2889"/> + <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="2993"/> + <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="1178"/> + <source>Next warning</source> + <translation>Nächste Warnung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1181"/> + <source>Previous warning</source> + <translation>Vorherige Warnung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1183"/> + <source>Show warning message</source> + <translation>Zeige Warnung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1185"/> + <source>Clear warnings</source> + <translation>Warnungen löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="3052"/> + <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="6295"/> + <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="6146"/> + <source>Warning: {0}</source> + <translation>Warnung: {0}</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6153"/> + <source>Error: {0}</source> + <translation>Fehler: {0}</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6484"/> + <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="4555"/> + <source>Activating Auto-Completion Provider</source> + <translation>Aktivierung eines Providers für automatische Vervollständigungen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="4555"/> + <source>Auto-completion provider cannot be connected because there is already another one active. Please check your configuration.</source> + <translation>Ein Provider für automatische Vervollständigungen kann nicht angebunden werden, da bereits ein anderer aktiv ist. Bitte überprüfen Sie Ihre Konfiguration.</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="4875"/> + <source>Activating Calltip Provider</source> + <translation>Aktivierung eines Providers für Calltips</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="4875"/> + <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> + <translation>Ein Provider für Calltips kann nicht angebunden werden, da bereits ein anderer aktiv ist. Bitte überprüfen Sie Ihre Konfiguration.</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="795"/> + <source>Open 'rejection' file</source> + <translation>Öffne „Ablehnungs“-Datei</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="902"/> + <source>Load Diagram...</source> + <translation>Diagramm laden...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1216"/> + <source>Next change</source> + <translation>Nächste Änderung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1219"/> + <source>Previous change</source> + <translation>Vorherige Änderung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7682"/> + <source>Sort Lines</source> + <translation>Zeilen sortieren</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7682"/> + <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="6082"/> + <source>Warning</source> + <translation>Warnung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6082"/> + <source>No warning messages available.</source> + <translation>Keine Warnmeldungen verfügbar.</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6143"/> + <source>Style: {0}</source> + <translation>Stil: {0}</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="769"/> + <source>New Document View</source> + <translation>Neue Dokumentenansicht</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="772"/> + <source>New Document View (with new split)</source> + <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="856"/> + <source>Tools</source> + <translation>Werkzeuge</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="984"/> + <source>Re-Open With Encoding</source> + <translation>Öffnen mit Kodierung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="6478"/> + <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="747"/> + <source>Automatic Completion enabled</source> + <translation>Automatische Vervollständigung aktiv</translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="825"/> - <source>Complete from APIs</source> - <translation>Vervollständigung von APIs</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="827"/> - <source>Complete from Document and APIs</source> - <translation>Vervollständigung vom Dokument und von APIs</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1034"/> - <source>Export as</source> - <translation>Exportieren als</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1257"/> - <source>Export source</source> - <translation>Quelltext exportieren</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1249"/> - <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="1257"/> - <source>No export format given. Aborting...</source> - <translation>Kein Exportformat angegeben. Abbruch...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6942"/> - <source>Imports Diagram</source> - <translation>Imports Diagramm</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6942"/> - <source>Include imports from external modules?</source> - <translation>Imports externer Module anzeigen?</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="750"/> - <source>Calltip</source> - <translation>Calltip</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="794"/> - <source>Print Preview</source> - <translation>Druckvorschau</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="404"/> - <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> - <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="735"/> - <source>Typing aids enabled</source> - <translation>Eingabehilfen aktiv</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="998"/> - <source>End-of-Line Type</source> - <translation>Zeilenendemarkierung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1002"/> - <source>Unix</source> - <translation>Unix</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1009"/> - <source>Windows</source> - <translation>Windows</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1016"/> - <source>Macintosh</source> - <translation>Macintosh</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="957"/> - <source>Encodings</source> - <translation>Kodierungen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="937"/> - <source>Guessed</source> - <translation>Ermittelt</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1272"/> - <source>Alternatives</source> - <translation>Alternativen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1268"/> - <source>Alternatives ({0})</source> - <translation>Alternativen ({0})</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1288"/> - <source>Pygments Lexer</source> - <translation>Pygments Lexer</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1288"/> - <source>Select the Pygments lexer to apply.</source> - <translation>Wähle den anzuwendenden Pygments Lexer.</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7234"/> - <source>Check spelling...</source> - <translation>Rechtschreibprüfung...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="711"/> - <source>Check spelling of selection...</source> - <translation>Rechtschreibprüfung für Auswahl...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7237"/> - <source>Add to dictionary</source> - <translation>Zum Wörterbuch hinzufügen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7239"/> - <source>Ignore All</source> - <translation>Alle ignorieren</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="715"/> - <source>Remove from dictionary</source> - <translation>Aus dem Wörterbuch entfernen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2884"/> - <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="2988"/> - <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="1173"/> - <source>Next warning</source> - <translation>Nächste Warnung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1176"/> - <source>Previous warning</source> - <translation>Vorherige Warnung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1178"/> - <source>Show warning message</source> - <translation>Zeige Warnung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1180"/> - <source>Clear warnings</source> - <translation>Warnungen löschen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="3047"/> - <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="6264"/> - <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="6115"/> - <source>Warning: {0}</source> - <translation>Warnung: {0}</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6122"/> - <source>Error: {0}</source> - <translation>Fehler: {0}</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6453"/> - <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="4524"/> - <source>Activating Auto-Completion Provider</source> - <translation>Aktivierung eines Providers für automatische Vervollständigungen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="4524"/> - <source>Auto-completion provider cannot be connected because there is already another one active. Please check your configuration.</source> - <translation>Ein Provider für automatische Vervollständigungen kann nicht angebunden werden, da bereits ein anderer aktiv ist. Bitte überprüfen Sie Ihre Konfiguration.</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="4844"/> - <source>Activating Calltip Provider</source> - <translation>Aktivierung eines Providers für Calltips</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="4844"/> - <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> - <translation>Ein Provider für Calltips kann nicht angebunden werden, da bereits ein anderer aktiv ist. Bitte überprüfen Sie Ihre Konfiguration.</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="790"/> - <source>Open 'rejection' file</source> - <translation>Öffne „Ablehnungs“-Datei</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="897"/> - <source>Load Diagram...</source> - <translation>Diagramm laden...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1211"/> - <source>Next change</source> - <translation>Nächste Änderung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1214"/> - <source>Previous change</source> - <translation>Vorherige Änderung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7651"/> - <source>Sort Lines</source> - <translation>Zeilen sortieren</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7651"/> - <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="6051"/> - <source>Warning</source> - <translation>Warnung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6051"/> - <source>No warning messages available.</source> - <translation>Keine Warnmeldungen verfügbar.</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6112"/> - <source>Style: {0}</source> - <translation>Stil: {0}</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="764"/> - <source>New Document View</source> - <translation>Neue Dokumentenansicht</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="767"/> - <source>New Document View (with new split)</source> - <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="851"/> - <source>Tools</source> - <translation>Werkzeuge</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="979"/> - <source>Re-Open With Encoding</source> - <translation>Öffnen mit Kodierung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="6447"/> - <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="742"/> - <source>Automatic Completion enabled</source> - <translation>Automatische Vervollständigung aktiv</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="820"/> <source>Complete</source> <translation>Vervollständigen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4573"/> + <location filename="../QScintilla/Editor.py" line="4604"/> <source>Auto-Completion Provider</source> <translation>Provider für automatische Vervollständigungen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4573"/> + <location filename="../QScintilla/Editor.py" line="4604"/> <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="4887"/> + <location filename="../QScintilla/Editor.py" line="4918"/> <source>Call-Tips Provider</source> <translation>Calltipps-Provider</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4887"/> + <location filename="../QScintilla/Editor.py" line="4918"/> <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="7738"/> + <location filename="../QScintilla/Editor.py" line="7769"/> <source>Register Mouse Click Handler</source> <translation>Maus Klick Handler registrieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7738"/> + <location filename="../QScintilla/Editor.py" line="7769"/> <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="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Save Copy...</source> <translation>Kopie speichern...</translation> </message> @@ -12626,112 +12626,112 @@ <translation>Wähle die Hintergrundfarbe für die Zeile mit der Einfügemarke.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="710"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="775"/> <source>Braces</source> <translation>Klammern</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="716"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="781"/> <source>Select whether matching and bad braces shall be highlighted.</source> <translation>Wähle aus, ob passende und ungültige Klammerung hervorgehoben werden soll.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="784"/> <source>Highlight braces</source> <translation>Klammerung hervorheben</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="726"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="791"/> <source>Matched braces:</source> <translation>Passende Klammer:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="739"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="804"/> <source>Select the colour for highlighting matching braces.</source> <translation>Wähle die Farbe zur Hervorhebung passender Klammerung.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="749"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="814"/> <source>Matched braces background:</source> <translation>Hintergrund passende Klammer:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="762"/> - <source>Select the background colour for highlighting matching braces.</source> - <translation>Wähle die Hintergrundfarbe zur Hervorhebung passender Klammerung.</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="778"/> - <source>Unmatched brace:</source> - <translation>Ungültige Klammer:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="785"/> - <source>Select the colour for highlighting nonmatching braces.</source> - <translation>Wähle die Farbe zur Hervorhebung ungültiger Klammerung.</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="801"/> - <source>Unmatched brace background:</source> - <translation>Hintergrund ungültige Klammer:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="808"/> - <source>Select the background colour for highlighting nonmatching braces.</source> - <translation>Wähle die Hintergrundfarbe zur Hervorhebung ungültiger Klammerung.</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="821"/> - <source>End of Line</source> - <translation>Zeilenende</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="827"/> + <source>Select the background colour for highlighting matching braces.</source> + <translation>Wähle die Hintergrundfarbe zur Hervorhebung passender Klammerung.</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="843"/> + <source>Unmatched brace:</source> + <translation>Ungültige Klammer:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="850"/> + <source>Select the colour for highlighting nonmatching braces.</source> + <translation>Wähle die Farbe zur Hervorhebung ungültiger Klammerung.</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="866"/> + <source>Unmatched brace background:</source> + <translation>Hintergrund ungültige Klammer:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="873"/> + <source>Select the background colour for highlighting nonmatching braces.</source> + <translation>Wähle die Hintergrundfarbe zur Hervorhebung ungültiger Klammerung.</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="886"/> + <source>End of Line</source> + <translation>Zeilenende</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="892"/> <source>Select whether end of line shall be shown</source> <translation>Wähle aus, ob die Zeilenendemarkierung angezeigt werden soll</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="830"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="895"/> <source>Show End of Line</source> <translation>Zeige Zeilenendemarkierung</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="840"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="905"/> <source>Wrap long lines</source> <translation>Lange Zeilen umbrechen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="893"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="958"/> <source>Edge Mode</source> <translation>Seitenrand</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="937"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1002"/> <source>Select the colour for the edge marker.</source> <translation>Wähle die Farbe für den Seitenrand.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="947"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1012"/> <source>Background colour:</source> <translation>Hintergrundfarbe:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="960"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1025"/> <source>Move to set the edge column.</source> <translation>Bewegen Sie den Schieber, um die Seitenbreite zu setzen.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="988"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1053"/> <source>Displays the selected tab width.</source> <translation>Zeigt die gewählte Tabulatorweite an.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1004"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1069"/> <source>Column number:</source> <translation>Seitenbreite:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1011"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> <source>Mode:</source> <translation>Modus:</translation> </message> @@ -12741,37 +12741,37 @@ <translation>Ausgeschaltet</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1030"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1095"/> <source>Draw Line</source> <translation>Zeichne Linie</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1035"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1100"/> <source>Change Background Colour</source> <translation>Ändere Hintergrundfarbe</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1795"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1860"/> <source>Various</source> <translation>Verschiedenes</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1384"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1449"/> <source>Select whether whitspace characters shall be shown</source> <translation>Wähle aus, ob Leerzeichen angezeigt werden sollen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1387"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1452"/> <source>Show Whitespace</source> <translation>Zeige Leerzeichen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1801"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1866"/> <source>Select to show a minimalistic context menu</source> <translation>Auswählen, um ein minimales Kontextmenü anzuzeigen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1804"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1869"/> <source>Show minimal context menu</source> <translation>Zeige minimales Kontextmenü</translation> </message> @@ -12816,22 +12816,22 @@ <translation>Zeige zusammengefasste Spalten</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1114"/> <source>Zoom</source> <translation>Vergrößerung</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1055"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1120"/> <source>Initial zoom factor:</source> <translation>Anfangsvergrößerungsfaktor:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1062"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1127"/> <source>Move to set the initial zoom factor</source> <translation>Verschiebe den Regler zur Auswahl des Anfangsvergrößerungsfaktors</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1084"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1149"/> <source>Displays the selected initial zoom factor</source> <translation>Zeigt den gewählten Anfangsvergrößerungsfaktor an</translation> </message> @@ -12871,82 +12871,82 @@ <translation><b>Hinweis:</b> Schriftarten und Farben der Syntaxhervorhebungen müssen auf der Seite „Syntaxhervorhebung, Stile“ konfiguriert werden.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1168"/> <source>Annotations</source> <translation>Anmerkungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1109"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1174"/> <source>Select to enable the display of annotations</source> <translation>Auswählen, um die Anzeige von Anmerkungen zu aktivieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1177"/> <source>Show annotations</source> <translation>Anmerkungen anzeigen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1119"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1184"/> <source>Warnings</source> <translation>Warnungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1215"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1280"/> <source>Press to select the foreground colour</source> <translation>Drücken, um die Vordergrundfarbe zu wählen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1218"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1283"/> <source>Foreground</source> <translation>Vordergrund</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1225"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1290"/> <source>Press to select the background colour</source> <translation>Drücken, um die Hintergrundfarbe zu wählen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1228"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1293"/> <source>Background</source> <translation>Hintergrund</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1164"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1229"/> <source>Errors</source> <translation>Fehler</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1378"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1443"/> <source>Whitespace</source> <translation>Leerzeichen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1396"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1461"/> <source>Whitespace size:</source> <translation>Leerzeichengröße:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1403"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1468"/> <source>Select the size of the dots used to represent visible whitespace</source> <translation>Wähle die Größe der Punkte zum Anzeigen von sichtbaren Leerzeichen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1436"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1501"/> <source>Whitespace foreground:</source> <translation>Leerzeichenvordergrund:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1449"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1514"/> <source>Select the foreground colour for visible whitespace</source> <translation>Wähle die Vordergrundfarbe für sichtbare Leerzeichen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1459"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1524"/> <source>Whitespace background:</source> <translation>Leerzeichenhintergrund:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1472"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1537"/> <source>Select the background colour for visible whitespace</source> <translation>Wähle die Hintergrundfarbe für sichtbare Leerzeichen</translation> </message> @@ -12986,67 +12986,67 @@ <translation>Farben</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1322"/> <source>Change Tracing</source> <translation>Änderungsverfolgung</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1263"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1328"/> <source>Select to mark changed lines</source> <translation>Auswählen, um geänderte Zeilen zu markieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1266"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1331"/> <source>Mark changed lines</source> <translation>Geänderte Zeilen markieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1275"/> - <source>Timeout for marking changed lines:</source> - <translation>Timeout für das Markieren geänderter Zeilen:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1282"/> - <source>Enter the time in milliseconds after which changed lines will be marked</source> - <translation>Gib die Zeit in Millisekunden an, nach der geänderte Zeilen markiert werden sollen</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1294"/> - <source> ms</source> - <translation> ms</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1327"/> - <source>Unsaved changes colour:</source> - <translation>Farbe für ungesicherte Änderungen:</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1340"/> + <source>Timeout for marking changed lines:</source> + <translation>Timeout für das Markieren geänderter Zeilen:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> + <source>Enter the time in milliseconds after which changed lines will be marked</source> + <translation>Gib die Zeit in Millisekunden an, nach der geänderte Zeilen markiert werden sollen</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1359"/> + <source> ms</source> + <translation> ms</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1392"/> + <source>Unsaved changes colour:</source> + <translation>Farbe für ungesicherte Änderungen:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1405"/> <source>Select the colour for the change marker for unsaved changes.</source> <translation>Wähle die Farbe für die Änderungsmarkierung für ungesicherte Änderungen.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1350"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1415"/> <source>Saved changes colour:</source> <translation>Farbe für gesicherte Änderungen:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1363"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1428"/> <source>Select the colour for the change marker for saved changes.</source> <translation>Wähle die Farbe für die Änderungsmarkierung für gesicherte Änderungen.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="856"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> <source>Select the wrap mode for long lines</source> <translation>Wähle dem Umbruchmodus für lange Zeilen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="876"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="941"/> <source>Indication:</source> <translation>Anzeige:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="883"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="948"/> <source>Select, how wrapped lines are indicated</source> <translation>Wähle aus, wie umbrochene Zeilen angezeigt werden sollen</translation> </message> @@ -13081,22 +13081,22 @@ <translation>Anzeige in der Zeilennummernspalte</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1148"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1213"/> <source>Warning: There might be an issue.</source> <translation>Warnung: Es könnte ein Problem vorliegen.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1193"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1258"/> <source>Error: There is an issue.</source> <translation>Fehler: Es liegt ein Fehler vor.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1209"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1274"/> <source>Style</source> <translation>Stil</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1238"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1303"/> <source>Style: There is a style issue.</source> <translation>Stil: Es liegt ein Stilfehler vor.</translation> </message> @@ -13111,155 +13111,190 @@ <translation>Aktuelle Zeile immer hervorheben</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1556"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1621"/> <source>Marker Map</source> <translation>Markierungenübersicht</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1562"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1627"/> <source>Errors:</source> <translation>Fehler:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1575"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1640"/> <source>Select the colour for error markers</source> <translation>Wähle die Farbe für Fehlermarkierungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1585"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1650"/> <source>Warnings:</source> <translation>Warnungen:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1598"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1663"/> <source>Select the colour for warning markers</source> <translation>Wähle die Farbe für Warnungsmarkierungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1608"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1673"/> <source>Bookmarks:</source> <translation>Lesezeichen:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1621"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1686"/> <source>Select the colour for bookmark markers</source> <translation>Wähle die Farbe für Lesezeichenmarkierungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1631"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1696"/> <source>Breakpoints:</source> <translation>Haltepunkte:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1644"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1709"/> <source>Select the colour for breakpoint markers</source> <translation>Wähle die Farbe für Haltepunktemarkierungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1654"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1719"/> <source>Tasks:</source> <translation>Aufgaben:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1667"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1732"/> <source>Select the colour for task markers</source> <translation>Wähle die Farbe für Aufgabenmarkierungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1677"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1742"/> <source>Changes:</source> <translation>Änderungen:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1690"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1755"/> <source>Select the colour for change markers</source> <translation>Wähle die Farbe für Änderungsmarkierungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1700"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1765"/> <source>Coverage:</source> <translation>Abdeckung:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1713"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1778"/> <source>Select the colour for coverage markers</source> <translation>Wähle die Farbe für Abdeckungsmarkierungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1723"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1788"/> <source>Current Line:</source> <translation>Aktuelle Zeile:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1736"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1801"/> <source>Select the colour for the current line marker</source> <translation>Wähle die Farbe der Markierung für die aktuelle Zeile</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1769"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1834"/> <source>Background:</source> <translation>Hintergrund:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1782"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1847"/> <source>Select the background colour for the marker map</source> <translation>Wähle die Hintergrundfarbe der Markierungsübersicht</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1487"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1552"/> <source>Indentation Guides</source> <translation>Einrückungsmarkierungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1493"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1558"/> <source>Select whether indentation guides should be shown.</source> <translation>Wähle aus, ob Einrückungsmarkierungen angezeigt werden sollen.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1496"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1561"/> <source>Show Indentation Guides</source> <translation>Zeige Einrückungsmarkierungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1505"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1570"/> <source>Indentation Guides foreground:</source> <translation>Einrückungsmarkierungenvordergrund:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1518"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1583"/> <source>Select the foreground colour for indentation guides</source> <translation>Wähle die Vordergrundfarbe der Einrückungsmarkierungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1528"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1593"/> <source>Indentation Guides background:</source> <translation>Einrückungsmarkierungenhintergrund:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1541"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1606"/> <source>Select the background colour for indentation guides</source> <translation>Wähle die Hintergrundfarbe der Einrückungsmarkierungen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1746"/> - <source>Search Markers:</source> - <translation>Suchmarkierungen:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1759"/> - <source>Select the colour for the search marker</source> - <translation>Wähle die Farbe der Suchmarkierung</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1811"/> + <source>Search Markers:</source> + <translation>Suchmarkierungen:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1824"/> + <source>Select the colour for the search marker</source> + <translation>Wähle die Farbe der Suchmarkierung</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1876"/> <source>Select to hide the Format Buttons bar when formatting is not supported</source> <translation>Auswählen, um die Formatbuttonsleiste auszublenden, wenn dies nicht unterstützt wird</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1814"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1879"/> <source>Hide Format Buttons bar when not supported</source> <translation>Formatbuttonsleiste ausblenden, wenn nicht unterstützt</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="710"/> + <source>Debugging Line Markers</source> + <translation>Debug-Zeilenmarken</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> + <source>Use background colours</source> + <translation>Verwende farbigen Hintergrund</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="726"/> + <source>Current line marker:</source> + <translation>Aktuelle Zeile:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="749"/> + <source>Error line marker:</source> + <translation>Fehlerzeile:</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="716"/> + <source>Select to indicate the debug markers using coloured line backgrounds, arrow indicators otherwise</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="739"/> + <source>Select the colour for the current line marker.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="762"/> + <source>Select the colour for the error line marker.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -39890,27 +39925,27 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1543"/> + <location filename="../Preferences/__init__.py" line="1546"/> <source>Export Preferences</source> <translation>Einstellungen exportieren</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1571"/> + <location filename="../Preferences/__init__.py" line="1574"/> <source>Import Preferences</source> <translation>Einstellungen importieren</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1571"/> + <location filename="../Preferences/__init__.py" line="1574"/> <source>Properties File (*.ini);;All Files (*)</source> <translation>Properties-Dateien (*.ini);;Alle Dateien (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1673"/> + <location filename="../Preferences/__init__.py" line="1676"/> <source>Select Python{0} Interpreter</source> <translation>Wähle den Python{0}-Interpreter</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1673"/> + <location filename="../Preferences/__init__.py" line="1676"/> <source>Select the Python{0} interpreter to be used:</source> <translation>Wähle den zu verwendenden Python{0}-Interpreter aus:</translation> </message>
--- a/i18n/eric6_empty.ts Sat May 06 14:59:26 2017 +0200 +++ b/i18n/eric6_empty.ts Thu May 11 18:26:56 2017 +0200 @@ -9076,892 +9076,892 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="2884"/> + <location filename="../QScintilla/Editor.py" line="2889"/> <source>Open File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="344"/> + <location filename="../QScintilla/Editor.py" line="349"/> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="404"/> + <location filename="../QScintilla/Editor.py" line="409"/> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="662"/> + <location filename="../QScintilla/Editor.py" line="667"/> <source>Undo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="665"/> + <location filename="../QScintilla/Editor.py" line="670"/> <source>Redo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="668"/> + <location filename="../QScintilla/Editor.py" line="673"/> <source>Revert to last saved state</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="672"/> + <location filename="../QScintilla/Editor.py" line="677"/> <source>Cut</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="675"/> + <location filename="../QScintilla/Editor.py" line="680"/> <source>Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="678"/> - <source>Paste</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="683"/> + <source>Paste</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="688"/> <source>Indent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="686"/> + <location filename="../QScintilla/Editor.py" line="691"/> <source>Unindent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="689"/> + <location filename="../QScintilla/Editor.py" line="694"/> <source>Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="692"/> + <location filename="../QScintilla/Editor.py" line="697"/> <source>Uncomment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="695"/> + <location filename="../QScintilla/Editor.py" line="700"/> <source>Stream Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="698"/> + <location filename="../QScintilla/Editor.py" line="703"/> <source>Box Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="702"/> + <location filename="../QScintilla/Editor.py" line="707"/> <source>Select to brace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="704"/> + <location filename="../QScintilla/Editor.py" line="709"/> <source>Select all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="705"/> + <location filename="../QScintilla/Editor.py" line="710"/> <source>Deselect all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7234"/> + <location filename="../QScintilla/Editor.py" line="7265"/> <source>Check spelling...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="711"/> + <location filename="../QScintilla/Editor.py" line="716"/> <source>Check spelling of selection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="715"/> + <location filename="../QScintilla/Editor.py" line="720"/> <source>Remove from dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="719"/> + <location filename="../QScintilla/Editor.py" line="724"/> <source>Shorten empty lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="726"/> - <source>Use Monospaced Font</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="731"/> + <source>Use Monospaced Font</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="736"/> <source>Autosave enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="735"/> + <location filename="../QScintilla/Editor.py" line="740"/> <source>Typing aids enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="742"/> + <location filename="../QScintilla/Editor.py" line="747"/> <source>Automatic Completion enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="750"/> + <location filename="../QScintilla/Editor.py" line="755"/> <source>Calltip</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="764"/> + <location filename="../QScintilla/Editor.py" line="769"/> <source>New Document View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="767"/> - <source>New Document View (with new split)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="772"/> + <source>New Document View (with new split)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="777"/> <source>Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="778"/> + <location filename="../QScintilla/Editor.py" line="783"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="781"/> + <location filename="../QScintilla/Editor.py" line="786"/> <source>Save As...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Save Copy...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="790"/> + <location filename="../QScintilla/Editor.py" line="795"/> <source>Open 'rejection' file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="794"/> + <location filename="../QScintilla/Editor.py" line="799"/> <source>Print Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="797"/> + <location filename="../QScintilla/Editor.py" line="802"/> <source>Print</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="820"/> - <source>Complete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="823"/> - <source>Complete from Document</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="825"/> + <source>Complete</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="828"/> + <source>Complete from Document</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="830"/> <source>Complete from APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="827"/> + <location filename="../QScintilla/Editor.py" line="832"/> <source>Complete from Document and APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="851"/> + <location filename="../QScintilla/Editor.py" line="856"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="861"/> - <source>Show</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="863"/> - <source>Code metrics...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="864"/> - <source>Code coverage...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="866"/> - <source>Show code coverage annotations</source> + <source>Show</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="868"/> + <source>Code metrics...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="869"/> + <source>Code coverage...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="871"/> + <source>Show code coverage annotations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="874"/> <source>Hide code coverage annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="872"/> + <location filename="../QScintilla/Editor.py" line="877"/> <source>Profile data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="885"/> + <location filename="../QScintilla/Editor.py" line="890"/> <source>Diagrams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="887"/> + <location filename="../QScintilla/Editor.py" line="892"/> <source>Class Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="889"/> + <location filename="../QScintilla/Editor.py" line="894"/> <source>Package Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="891"/> + <location filename="../QScintilla/Editor.py" line="896"/> <source>Imports Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893"/> + <location filename="../QScintilla/Editor.py" line="898"/> <source>Application Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="897"/> + <location filename="../QScintilla/Editor.py" line="902"/> <source>Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="911"/> + <location filename="../QScintilla/Editor.py" line="916"/> <source>Languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="914"/> + <location filename="../QScintilla/Editor.py" line="919"/> <source>No Language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="937"/> + <location filename="../QScintilla/Editor.py" line="942"/> <source>Guessed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272"/> + <location filename="../QScintilla/Editor.py" line="1277"/> <source>Alternatives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="957"/> + <location filename="../QScintilla/Editor.py" line="962"/> <source>Encodings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="979"/> + <location filename="../QScintilla/Editor.py" line="984"/> <source>Re-Open With Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="998"/> + <location filename="../QScintilla/Editor.py" line="1003"/> <source>End-of-Line Type</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1002"/> + <location filename="../QScintilla/Editor.py" line="1007"/> <source>Unix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009"/> + <location filename="../QScintilla/Editor.py" line="1014"/> <source>Windows</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1016"/> + <location filename="../QScintilla/Editor.py" line="1021"/> <source>Macintosh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1034"/> + <location filename="../QScintilla/Editor.py" line="1039"/> <source>Export as</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1157"/> + <location filename="../QScintilla/Editor.py" line="1162"/> <source>Toggle bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1159"/> + <location filename="../QScintilla/Editor.py" line="1164"/> <source>Next bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161"/> + <location filename="../QScintilla/Editor.py" line="1166"/> <source>Previous bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1163"/> + <location filename="../QScintilla/Editor.py" line="1168"/> <source>Clear all bookmarks</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="1188"/> + <source>Toggle breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1190"/> + <source>Toggle temporary breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1193"/> + <source>Edit breakpoint...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5177"/> + <source>Enable breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1198"/> + <source>Next breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1200"/> + <source>Previous breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1202"/> + <source>Clear all breakpoints</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1171"/> + <source>Goto syntax error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1173"/> + <source>Show syntax error message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1175"/> + <source>Clear syntax error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1178"/> + <source>Next warning</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1181"/> + <source>Previous warning</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1183"/> - <source>Toggle breakpoint</source> + <source>Show warning message</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1185"/> - <source>Toggle temporary breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1188"/> - <source>Edit breakpoint...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5146"/> - <source>Enable breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1193"/> - <source>Next breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1195"/> - <source>Previous breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1197"/> - <source>Clear all breakpoints</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1166"/> - <source>Goto syntax error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1168"/> - <source>Show syntax error message</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1170"/> - <source>Clear syntax error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1173"/> - <source>Next warning</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1176"/> - <source>Previous warning</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1178"/> - <source>Show warning message</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1180"/> <source>Clear warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1200"/> + <location filename="../QScintilla/Editor.py" line="1205"/> <source>Next uncovered line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1203"/> - <source>Previous uncovered line</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1206"/> - <source>Next task</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1208"/> - <source>Previous task</source> + <source>Previous uncovered line</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1211"/> + <source>Next task</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1213"/> + <source>Previous task</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1216"/> <source>Next change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214"/> + <location filename="../QScintilla/Editor.py" line="1219"/> <source>Previous change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1217"/> + <location filename="../QScintilla/Editor.py" line="1222"/> <source>LMB toggles bookmarks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1221"/> + <location filename="../QScintilla/Editor.py" line="1226"/> <source>LMB toggles breakpoints</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>Export source</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1249"/> + <location filename="../QScintilla/Editor.py" line="1254"/> <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="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>No export format given. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1268"/> + <location filename="../QScintilla/Editor.py" line="1273"/> <source>Alternatives ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1288"/> + <location filename="../QScintilla/Editor.py" line="1293"/> <source>Pygments Lexer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1288"/> + <location filename="../QScintilla/Editor.py" line="1293"/> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1758"/> + <location filename="../QScintilla/Editor.py" line="1763"/> <source>Modification of Read Only file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1758"/> + <location filename="../QScintilla/Editor.py" line="1763"/> <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="2449"/> + <location filename="../QScintilla/Editor.py" line="2454"/> <source>Printing...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2466"/> - <source>Printing completed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2468"/> - <source>Error while printing</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2471"/> + <source>Printing completed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2473"/> + <source>Error while printing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2476"/> <source>Printing aborted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829"/> + <location filename="../QScintilla/Editor.py" line="2834"/> <source>File Modified</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829"/> + <location filename="../QScintilla/Editor.py" line="2834"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2884"/> + <location filename="../QScintilla/Editor.py" line="2889"/> <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="3047"/> + <location filename="../QScintilla/Editor.py" line="3052"/> <source>Save File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2988"/> + <location filename="../QScintilla/Editor.py" line="2993"/> <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="3047"/> + <location filename="../QScintilla/Editor.py" line="3052"/> <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="4419"/> + <location filename="../QScintilla/Editor.py" line="4450"/> <source>Autocompletion</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4419"/> + <location filename="../QScintilla/Editor.py" line="4450"/> <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="4524"/> + <location filename="../QScintilla/Editor.py" line="4555"/> <source>Activating Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4524"/> + <location filename="../QScintilla/Editor.py" line="4555"/> <source>Auto-completion provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4573"/> + <location filename="../QScintilla/Editor.py" line="4604"/> <source>Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4573"/> + <location filename="../QScintilla/Editor.py" line="4604"/> <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="4844"/> + <location filename="../QScintilla/Editor.py" line="4875"/> <source>Activating Calltip Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4844"/> + <location filename="../QScintilla/Editor.py" line="4875"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4887"/> + <location filename="../QScintilla/Editor.py" line="4918"/> <source>Call-Tips Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4887"/> + <location filename="../QScintilla/Editor.py" line="4918"/> <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="5149"/> + <location filename="../QScintilla/Editor.py" line="5180"/> <source>Disable breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523"/> + <location filename="../QScintilla/Editor.py" line="5554"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523"/> + <location filename="../QScintilla/Editor.py" line="5554"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5586"/> + <location filename="../QScintilla/Editor.py" line="5617"/> <source>Show Code Coverage Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5579"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>All lines have been covered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5586"/> + <location filename="../QScintilla/Editor.py" line="5617"/> <source>There is no coverage file available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5701"/> + <location filename="../QScintilla/Editor.py" line="5732"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5701"/> + <location filename="../QScintilla/Editor.py" line="5732"/> <source>Please select a profile file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Syntax Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>No syntax error message available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6051"/> + <location filename="../QScintilla/Editor.py" line="6082"/> <source>Warning</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6051"/> + <location filename="../QScintilla/Editor.py" line="6082"/> <source>No warning messages available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6112"/> + <location filename="../QScintilla/Editor.py" line="6143"/> <source>Style: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6115"/> + <location filename="../QScintilla/Editor.py" line="6146"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6122"/> + <location filename="../QScintilla/Editor.py" line="6153"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6176"/> + <location filename="../QScintilla/Editor.py" line="6207"/> <source>Macro Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6176"/> + <location filename="../QScintilla/Editor.py" line="6207"/> <source>Select a macro name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6204"/> + <location filename="../QScintilla/Editor.py" line="6235"/> <source>Load macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6247"/> + <location filename="../QScintilla/Editor.py" line="6278"/> <source>Macro files (*.macro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6227"/> + <location filename="../QScintilla/Editor.py" line="6258"/> <source>Error loading macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6218"/> + <location filename="../QScintilla/Editor.py" line="6249"/> <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="6227"/> + <location filename="../QScintilla/Editor.py" line="6258"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6247"/> + <location filename="../QScintilla/Editor.py" line="6278"/> <source>Save macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6264"/> + <location filename="../QScintilla/Editor.py" line="6295"/> <source>Save macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6264"/> + <location filename="../QScintilla/Editor.py" line="6295"/> <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="6280"/> + <location filename="../QScintilla/Editor.py" line="6311"/> <source>Error saving macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6280"/> + <location filename="../QScintilla/Editor.py" line="6311"/> <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="6293"/> + <location filename="../QScintilla/Editor.py" line="6324"/> <source>Start Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6293"/> + <location filename="../QScintilla/Editor.py" line="6324"/> <source>Macro recording is already active. Start new?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6319"/> + <location filename="../QScintilla/Editor.py" line="6350"/> <source>Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6319"/> + <location filename="../QScintilla/Editor.py" line="6350"/> <source>Enter name of the macro:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6478"/> <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="6453"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <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="6457"/> + <location filename="../QScintilla/Editor.py" line="6488"/> <source>File changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6621"/> + <location filename="../QScintilla/Editor.py" line="6652"/> <source>{0} (ro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6761"/> + <location filename="../QScintilla/Editor.py" line="6792"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6761"/> + <location filename="../QScintilla/Editor.py" line="6792"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6782"/> + <location filename="../QScintilla/Editor.py" line="6813"/> <source>Resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6784"/> + <location filename="../QScintilla/Editor.py" line="6815"/> <source>Add file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6786"/> + <location filename="../QScintilla/Editor.py" line="6817"/> <source>Add files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6788"/> + <location filename="../QScintilla/Editor.py" line="6819"/> <source>Add aliased file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6791"/> + <location filename="../QScintilla/Editor.py" line="6822"/> <source>Add localized resource...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6795"/> + <location filename="../QScintilla/Editor.py" line="6826"/> <source>Add resource frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6814"/> + <location filename="../QScintilla/Editor.py" line="6845"/> <source>Add file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6830"/> + <location filename="../QScintilla/Editor.py" line="6861"/> <source>Add file resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6858"/> + <location filename="../QScintilla/Editor.py" line="6889"/> <source>Add aliased file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6858"/> + <location filename="../QScintilla/Editor.py" line="6889"/> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6922"/> + <location filename="../QScintilla/Editor.py" line="6953"/> <source>Package Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6922"/> + <location filename="../QScintilla/Editor.py" line="6953"/> <source>Include class attributes?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6942"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Imports Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6942"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Include imports from external modules?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6956"/> + <location filename="../QScintilla/Editor.py" line="6987"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6956"/> + <location filename="../QScintilla/Editor.py" line="6987"/> <source>Include module names?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7237"/> + <location filename="../QScintilla/Editor.py" line="7268"/> <source>Add to dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7239"/> + <location filename="../QScintilla/Editor.py" line="7270"/> <source>Ignore All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7651"/> + <location filename="../QScintilla/Editor.py" line="7682"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7651"/> + <location filename="../QScintilla/Editor.py" line="7682"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7738"/> + <location filename="../QScintilla/Editor.py" line="7769"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7738"/> + <location filename="../QScintilla/Editor.py" line="7769"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> @@ -12646,127 +12646,127 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="710"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="775"/> <source>Braces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="716"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="781"/> <source>Select whether matching and bad braces shall be highlighted.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="784"/> <source>Highlight braces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="726"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="791"/> <source>Matched braces:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="739"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="804"/> <source>Select the colour for highlighting matching braces.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="749"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="814"/> <source>Matched braces background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="762"/> - <source>Select the background colour for highlighting matching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="778"/> - <source>Unmatched brace:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="785"/> - <source>Select the colour for highlighting nonmatching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="801"/> - <source>Unmatched brace background:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="808"/> - <source>Select the background colour for highlighting nonmatching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="821"/> - <source>End of Line</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="827"/> + <source>Select the background colour for highlighting matching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="843"/> + <source>Unmatched brace:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="850"/> + <source>Select the colour for highlighting nonmatching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="866"/> + <source>Unmatched brace background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="873"/> + <source>Select the background colour for highlighting nonmatching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="886"/> + <source>End of Line</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="892"/> <source>Select whether end of line shall be shown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="830"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="895"/> <source>Show End of Line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="840"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="905"/> <source>Wrap long lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1011"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> <source>Mode:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="856"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> <source>Select the wrap mode for long lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="876"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="941"/> <source>Indication:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="883"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="948"/> <source>Select, how wrapped lines are indicated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="893"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="958"/> <source>Edge Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="937"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1002"/> <source>Select the colour for the edge marker.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="947"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1012"/> <source>Background colour:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="960"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1025"/> <source>Move to set the edge column.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="988"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1053"/> <source>Displays the selected tab width.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1004"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1069"/> <source>Column number:</source> <translation type="unfinished"></translation> </message> @@ -12776,347 +12776,347 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1030"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1095"/> <source>Draw Line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1035"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1100"/> <source>Change Background Colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1114"/> <source>Zoom</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1055"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1120"/> <source>Initial zoom factor:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1062"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1127"/> <source>Move to set the initial zoom factor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1084"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1149"/> <source>Displays the selected initial zoom factor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1168"/> <source>Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1109"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1174"/> <source>Select to enable the display of annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1177"/> <source>Show annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1119"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1184"/> <source>Warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1215"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1280"/> <source>Press to select the foreground colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1218"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1283"/> <source>Foreground</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1225"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1290"/> <source>Press to select the background colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1228"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1293"/> <source>Background</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1148"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1213"/> <source>Warning: There might be an issue.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1164"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1229"/> <source>Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1193"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1258"/> <source>Error: There is an issue.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1209"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1274"/> <source>Style</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1238"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1303"/> <source>Style: There is a style issue.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1322"/> <source>Change Tracing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1263"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1328"/> <source>Select to mark changed lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1266"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1331"/> <source>Mark changed lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1275"/> - <source>Timeout for marking changed lines:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1282"/> - <source>Enter the time in milliseconds after which changed lines will be marked</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1294"/> - <source> ms</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1327"/> - <source>Unsaved changes colour:</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1340"/> + <source>Timeout for marking changed lines:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> + <source>Enter the time in milliseconds after which changed lines will be marked</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1359"/> + <source> ms</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1392"/> + <source>Unsaved changes colour:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1405"/> <source>Select the colour for the change marker for unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1350"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1415"/> <source>Saved changes colour:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1363"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1428"/> <source>Select the colour for the change marker for saved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1378"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1443"/> <source>Whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1384"/> - <source>Select whether whitspace characters shall be shown</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1387"/> - <source>Show Whitespace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1396"/> - <source>Whitespace size:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1403"/> - <source>Select the size of the dots used to represent visible whitespace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1436"/> - <source>Whitespace foreground:</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1449"/> + <source>Select whether whitspace characters shall be shown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1452"/> + <source>Show Whitespace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1461"/> + <source>Whitespace size:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1468"/> + <source>Select the size of the dots used to represent visible whitespace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1501"/> + <source>Whitespace foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1514"/> <source>Select the foreground colour for visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1459"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1524"/> <source>Whitespace background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1472"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1537"/> <source>Select the background colour for visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1487"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1552"/> <source>Indentation Guides</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1493"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1558"/> <source>Select whether indentation guides should be shown.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1496"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1561"/> <source>Show Indentation Guides</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1505"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1570"/> <source>Indentation Guides foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1518"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1583"/> <source>Select the foreground colour for indentation guides</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1528"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1593"/> <source>Indentation Guides background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1541"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1606"/> <source>Select the background colour for indentation guides</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1556"/> - <source>Marker Map</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1562"/> - <source>Errors:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1575"/> - <source>Select the colour for error markers</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1585"/> - <source>Warnings:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1598"/> - <source>Select the colour for warning markers</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1608"/> - <source>Bookmarks:</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1621"/> + <source>Marker Map</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1627"/> + <source>Errors:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1640"/> + <source>Select the colour for error markers</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1650"/> + <source>Warnings:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1663"/> + <source>Select the colour for warning markers</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1673"/> + <source>Bookmarks:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1686"/> <source>Select the colour for bookmark markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1631"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1696"/> <source>Breakpoints:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1644"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1709"/> <source>Select the colour for breakpoint markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1654"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1719"/> <source>Tasks:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1667"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1732"/> <source>Select the colour for task markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1677"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1742"/> <source>Changes:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1690"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1755"/> <source>Select the colour for change markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1700"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1765"/> <source>Coverage:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1713"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1778"/> <source>Select the colour for coverage markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1723"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1788"/> <source>Current Line:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1736"/> - <source>Select the colour for the current line marker</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1746"/> - <source>Search Markers:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1759"/> - <source>Select the colour for the search marker</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1769"/> - <source>Background:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1782"/> - <source>Select the background colour for the marker map</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1795"/> - <source>Various</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1801"/> + <source>Select the colour for the current line marker</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1811"/> + <source>Search Markers:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1824"/> + <source>Select the colour for the search marker</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1834"/> + <source>Background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1847"/> + <source>Select the background colour for the marker map</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1860"/> + <source>Various</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1866"/> <source>Select to show a minimalistic context menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1804"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1869"/> <source>Show minimal context menu</source> <translation type="unfinished"></translation> </message> @@ -13151,15 +13151,35 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1811"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1876"/> <source>Select to hide the Format Buttons bar when formatting is not supported</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1814"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1879"/> <source>Hide Format Buttons bar when not supported</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="710"/> + <source>Debugging Line Markers</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> + <source>Use background colours</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="726"/> + <source>Current line marker:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="749"/> + <source>Error line marker:</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -39691,27 +39711,27 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1543"/> + <location filename="../Preferences/__init__.py" line="1546"/> <source>Export Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1571"/> + <location filename="../Preferences/__init__.py" line="1574"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1571"/> + <location filename="../Preferences/__init__.py" line="1574"/> <source>Import Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1673"/> + <location filename="../Preferences/__init__.py" line="1676"/> <source>Select Python{0} Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1673"/> + <location filename="../Preferences/__init__.py" line="1676"/> <source>Select the Python{0} interpreter to be used:</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_en.ts Sat May 06 14:59:26 2017 +0200 +++ b/i18n/eric6_en.ts Thu May 11 18:26:56 2017 +0200 @@ -9090,892 +9090,892 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="2884"/> + <location filename="../QScintilla/Editor.py" line="2889"/> <source>Open File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="344"/> + <location filename="../QScintilla/Editor.py" line="349"/> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="404"/> + <location filename="../QScintilla/Editor.py" line="409"/> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="662"/> + <location filename="../QScintilla/Editor.py" line="667"/> <source>Undo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="665"/> + <location filename="../QScintilla/Editor.py" line="670"/> <source>Redo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="668"/> + <location filename="../QScintilla/Editor.py" line="673"/> <source>Revert to last saved state</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="672"/> + <location filename="../QScintilla/Editor.py" line="677"/> <source>Cut</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="675"/> + <location filename="../QScintilla/Editor.py" line="680"/> <source>Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="678"/> - <source>Paste</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="683"/> + <source>Paste</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="688"/> <source>Indent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="686"/> + <location filename="../QScintilla/Editor.py" line="691"/> <source>Unindent</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="689"/> + <location filename="../QScintilla/Editor.py" line="694"/> <source>Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="692"/> + <location filename="../QScintilla/Editor.py" line="697"/> <source>Uncomment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="695"/> + <location filename="../QScintilla/Editor.py" line="700"/> <source>Stream Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="698"/> + <location filename="../QScintilla/Editor.py" line="703"/> <source>Box Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="702"/> + <location filename="../QScintilla/Editor.py" line="707"/> <source>Select to brace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="704"/> + <location filename="../QScintilla/Editor.py" line="709"/> <source>Select all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="705"/> + <location filename="../QScintilla/Editor.py" line="710"/> <source>Deselect all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7234"/> + <location filename="../QScintilla/Editor.py" line="7265"/> <source>Check spelling...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="711"/> + <location filename="../QScintilla/Editor.py" line="716"/> <source>Check spelling of selection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="715"/> + <location filename="../QScintilla/Editor.py" line="720"/> <source>Remove from dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="719"/> + <location filename="../QScintilla/Editor.py" line="724"/> <source>Shorten empty lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="726"/> - <source>Use Monospaced Font</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="731"/> + <source>Use Monospaced Font</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="736"/> <source>Autosave enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="735"/> + <location filename="../QScintilla/Editor.py" line="740"/> <source>Typing aids enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="772"/> + <location filename="../QScintilla/Editor.py" line="777"/> <source>Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="778"/> + <location filename="../QScintilla/Editor.py" line="783"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="781"/> + <location filename="../QScintilla/Editor.py" line="786"/> <source>Save As...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="794"/> + <location filename="../QScintilla/Editor.py" line="799"/> <source>Print Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="797"/> + <location filename="../QScintilla/Editor.py" line="802"/> <source>Print</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="823"/> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Complete from Document</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="825"/> + <location filename="../QScintilla/Editor.py" line="830"/> <source>Complete from APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="827"/> + <location filename="../QScintilla/Editor.py" line="832"/> <source>Complete from Document and APIs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="750"/> + <location filename="../QScintilla/Editor.py" line="755"/> <source>Calltip</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Check</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="861"/> - <source>Show</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="863"/> - <source>Code metrics...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="864"/> - <source>Code coverage...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="866"/> - <source>Show code coverage annotations</source> + <source>Show</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="868"/> + <source>Code metrics...</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="869"/> + <source>Code coverage...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="871"/> + <source>Show code coverage annotations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="874"/> <source>Hide code coverage annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="872"/> + <location filename="../QScintilla/Editor.py" line="877"/> <source>Profile data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="885"/> + <location filename="../QScintilla/Editor.py" line="890"/> <source>Diagrams</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="887"/> + <location filename="../QScintilla/Editor.py" line="892"/> <source>Class Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="889"/> + <location filename="../QScintilla/Editor.py" line="894"/> <source>Package Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="891"/> + <location filename="../QScintilla/Editor.py" line="896"/> <source>Imports Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893"/> + <location filename="../QScintilla/Editor.py" line="898"/> <source>Application Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="911"/> + <location filename="../QScintilla/Editor.py" line="916"/> <source>Languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="914"/> + <location filename="../QScintilla/Editor.py" line="919"/> <source>No Language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="937"/> + <location filename="../QScintilla/Editor.py" line="942"/> <source>Guessed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272"/> + <location filename="../QScintilla/Editor.py" line="1277"/> <source>Alternatives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="957"/> + <location filename="../QScintilla/Editor.py" line="962"/> <source>Encodings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="998"/> + <location filename="../QScintilla/Editor.py" line="1003"/> <source>End-of-Line Type</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1002"/> + <location filename="../QScintilla/Editor.py" line="1007"/> <source>Unix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009"/> + <location filename="../QScintilla/Editor.py" line="1014"/> <source>Windows</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1016"/> + <location filename="../QScintilla/Editor.py" line="1021"/> <source>Macintosh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1034"/> + <location filename="../QScintilla/Editor.py" line="1039"/> <source>Export as</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1157"/> + <location filename="../QScintilla/Editor.py" line="1162"/> <source>Toggle bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1159"/> + <location filename="../QScintilla/Editor.py" line="1164"/> <source>Next bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161"/> + <location filename="../QScintilla/Editor.py" line="1166"/> <source>Previous bookmark</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1163"/> + <location filename="../QScintilla/Editor.py" line="1168"/> <source>Clear all bookmarks</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../QScintilla/Editor.py" line="1188"/> + <source>Toggle breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1190"/> + <source>Toggle temporary breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1193"/> + <source>Edit breakpoint...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5177"/> + <source>Enable breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1198"/> + <source>Next breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1200"/> + <source>Previous breakpoint</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1202"/> + <source>Clear all breakpoints</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1171"/> + <source>Goto syntax error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1173"/> + <source>Show syntax error message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1175"/> + <source>Clear syntax error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1178"/> + <source>Next warning</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1181"/> + <source>Previous warning</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1183"/> - <source>Toggle breakpoint</source> + <source>Show warning message</source> <translation type="unfinished"></translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1185"/> - <source>Toggle temporary breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1188"/> - <source>Edit breakpoint...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5146"/> - <source>Enable breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1193"/> - <source>Next breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1195"/> - <source>Previous breakpoint</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1197"/> - <source>Clear all breakpoints</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1166"/> - <source>Goto syntax error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1168"/> - <source>Show syntax error message</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1170"/> - <source>Clear syntax error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1173"/> - <source>Next warning</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1176"/> - <source>Previous warning</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1178"/> - <source>Show warning message</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1180"/> <source>Clear warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1200"/> + <location filename="../QScintilla/Editor.py" line="1205"/> <source>Next uncovered line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1203"/> - <source>Previous uncovered line</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1206"/> - <source>Next task</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1208"/> + <source>Previous uncovered line</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1211"/> + <source>Next task</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1213"/> <source>Previous task</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1217"/> + <location filename="../QScintilla/Editor.py" line="1222"/> <source>LMB toggles bookmarks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1221"/> + <location filename="../QScintilla/Editor.py" line="1226"/> <source>LMB toggles breakpoints</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>Export source</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1249"/> + <location filename="../QScintilla/Editor.py" line="1254"/> <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="1257"/> + <location filename="../QScintilla/Editor.py" line="1262"/> <source>No export format given. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1268"/> + <location filename="../QScintilla/Editor.py" line="1273"/> <source>Alternatives ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1288"/> + <location filename="../QScintilla/Editor.py" line="1293"/> <source>Pygments Lexer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1288"/> + <location filename="../QScintilla/Editor.py" line="1293"/> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1758"/> + <location filename="../QScintilla/Editor.py" line="1763"/> <source>Modification of Read Only file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1758"/> + <location filename="../QScintilla/Editor.py" line="1763"/> <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="2449"/> + <location filename="../QScintilla/Editor.py" line="2454"/> <source>Printing...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2466"/> - <source>Printing completed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="2468"/> - <source>Error while printing</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="2471"/> + <source>Printing completed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2473"/> + <source>Error while printing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="2476"/> <source>Printing aborted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829"/> + <location filename="../QScintilla/Editor.py" line="2834"/> <source>File Modified</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829"/> + <location filename="../QScintilla/Editor.py" line="2834"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2884"/> + <location filename="../QScintilla/Editor.py" line="2889"/> <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="3047"/> + <location filename="../QScintilla/Editor.py" line="3052"/> <source>Save File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2988"/> + <location filename="../QScintilla/Editor.py" line="2993"/> <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="3047"/> + <location filename="../QScintilla/Editor.py" line="3052"/> <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="4419"/> + <location filename="../QScintilla/Editor.py" line="4450"/> <source>Autocompletion</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4419"/> + <location filename="../QScintilla/Editor.py" line="4450"/> <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="5149"/> + <location filename="../QScintilla/Editor.py" line="5180"/> <source>Disable breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523"/> + <location filename="../QScintilla/Editor.py" line="5554"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5523"/> + <location filename="../QScintilla/Editor.py" line="5554"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5586"/> + <location filename="../QScintilla/Editor.py" line="5617"/> <source>Show Code Coverage Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5579"/> + <location filename="../QScintilla/Editor.py" line="5610"/> <source>All lines have been covered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5586"/> + <location filename="../QScintilla/Editor.py" line="5617"/> <source>There is no coverage file available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5701"/> + <location filename="../QScintilla/Editor.py" line="5732"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5701"/> + <location filename="../QScintilla/Editor.py" line="5732"/> <source>Please select a profile file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>Syntax Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5861"/> + <location filename="../QScintilla/Editor.py" line="5892"/> <source>No syntax error message available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6176"/> + <location filename="../QScintilla/Editor.py" line="6207"/> <source>Macro Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6176"/> + <location filename="../QScintilla/Editor.py" line="6207"/> <source>Select a macro name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6204"/> + <location filename="../QScintilla/Editor.py" line="6235"/> <source>Load macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6247"/> + <location filename="../QScintilla/Editor.py" line="6278"/> <source>Macro files (*.macro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6227"/> + <location filename="../QScintilla/Editor.py" line="6258"/> <source>Error loading macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6218"/> + <location filename="../QScintilla/Editor.py" line="6249"/> <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="6227"/> + <location filename="../QScintilla/Editor.py" line="6258"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6247"/> + <location filename="../QScintilla/Editor.py" line="6278"/> <source>Save macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6264"/> + <location filename="../QScintilla/Editor.py" line="6295"/> <source>Save macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6264"/> + <location filename="../QScintilla/Editor.py" line="6295"/> <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="6280"/> + <location filename="../QScintilla/Editor.py" line="6311"/> <source>Error saving macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6280"/> + <location filename="../QScintilla/Editor.py" line="6311"/> <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="6293"/> + <location filename="../QScintilla/Editor.py" line="6324"/> <source>Start Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6293"/> + <location filename="../QScintilla/Editor.py" line="6324"/> <source>Macro recording is already active. Start new?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6319"/> + <location filename="../QScintilla/Editor.py" line="6350"/> <source>Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6319"/> + <location filename="../QScintilla/Editor.py" line="6350"/> <source>Enter name of the macro:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6457"/> + <location filename="../QScintilla/Editor.py" line="6488"/> <source>File changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6621"/> + <location filename="../QScintilla/Editor.py" line="6652"/> <source>{0} (ro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6761"/> + <location filename="../QScintilla/Editor.py" line="6792"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6761"/> + <location filename="../QScintilla/Editor.py" line="6792"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6782"/> + <location filename="../QScintilla/Editor.py" line="6813"/> <source>Resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6784"/> + <location filename="../QScintilla/Editor.py" line="6815"/> <source>Add file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6786"/> + <location filename="../QScintilla/Editor.py" line="6817"/> <source>Add files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6788"/> + <location filename="../QScintilla/Editor.py" line="6819"/> <source>Add aliased file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6791"/> + <location filename="../QScintilla/Editor.py" line="6822"/> <source>Add localized resource...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6795"/> + <location filename="../QScintilla/Editor.py" line="6826"/> <source>Add resource frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6814"/> + <location filename="../QScintilla/Editor.py" line="6845"/> <source>Add file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6830"/> + <location filename="../QScintilla/Editor.py" line="6861"/> <source>Add file resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6858"/> + <location filename="../QScintilla/Editor.py" line="6889"/> <source>Add aliased file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6858"/> + <location filename="../QScintilla/Editor.py" line="6889"/> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6922"/> + <location filename="../QScintilla/Editor.py" line="6953"/> <source>Package Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6922"/> + <location filename="../QScintilla/Editor.py" line="6953"/> <source>Include class attributes?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6942"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Imports Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6942"/> + <location filename="../QScintilla/Editor.py" line="6973"/> <source>Include imports from external modules?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6956"/> + <location filename="../QScintilla/Editor.py" line="6987"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6956"/> + <location filename="../QScintilla/Editor.py" line="6987"/> <source>Include module names?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7237"/> + <location filename="../QScintilla/Editor.py" line="7268"/> <source>Add to dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7239"/> + <location filename="../QScintilla/Editor.py" line="7270"/> <source>Ignore All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6115"/> + <location filename="../QScintilla/Editor.py" line="6146"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6122"/> + <location filename="../QScintilla/Editor.py" line="6153"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6453"/> + <location filename="../QScintilla/Editor.py" line="6484"/> <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="4524"/> + <location filename="../QScintilla/Editor.py" line="4555"/> <source>Activating Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4524"/> + <location filename="../QScintilla/Editor.py" line="4555"/> <source>Auto-completion provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4844"/> + <location filename="../QScintilla/Editor.py" line="4875"/> <source>Activating Calltip Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4844"/> + <location filename="../QScintilla/Editor.py" line="4875"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="790"/> + <location filename="../QScintilla/Editor.py" line="795"/> <source>Open 'rejection' file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="897"/> + <location filename="../QScintilla/Editor.py" line="902"/> <source>Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1211"/> + <location filename="../QScintilla/Editor.py" line="1216"/> <source>Next change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214"/> + <location filename="../QScintilla/Editor.py" line="1219"/> <source>Previous change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7651"/> + <location filename="../QScintilla/Editor.py" line="7682"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7651"/> + <location filename="../QScintilla/Editor.py" line="7682"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6051"/> + <location filename="../QScintilla/Editor.py" line="6082"/> <source>Warning</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6051"/> + <location filename="../QScintilla/Editor.py" line="6082"/> <source>No warning messages available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6112"/> + <location filename="../QScintilla/Editor.py" line="6143"/> <source>Style: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="764"/> + <location filename="../QScintilla/Editor.py" line="769"/> <source>New Document View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="767"/> + <location filename="../QScintilla/Editor.py" line="772"/> <source>New Document View (with new split)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="851"/> + <location filename="../QScintilla/Editor.py" line="856"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="979"/> + <location filename="../QScintilla/Editor.py" line="984"/> <source>Re-Open With Encoding</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6447"/> + <location filename="../QScintilla/Editor.py" line="6478"/> <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="742"/> + <location filename="../QScintilla/Editor.py" line="747"/> <source>Automatic Completion enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="820"/> + <location filename="../QScintilla/Editor.py" line="825"/> <source>Complete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4573"/> + <location filename="../QScintilla/Editor.py" line="4604"/> <source>Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4573"/> + <location filename="../QScintilla/Editor.py" line="4604"/> <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="4887"/> + <location filename="../QScintilla/Editor.py" line="4918"/> <source>Call-Tips Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4887"/> + <location filename="../QScintilla/Editor.py" line="4918"/> <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="7738"/> + <location filename="../QScintilla/Editor.py" line="7769"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7738"/> + <location filename="../QScintilla/Editor.py" line="7769"/> <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="784"/> + <location filename="../QScintilla/Editor.py" line="789"/> <source>Save Copy...</source> <translation type="unfinished"></translation> </message> @@ -12610,112 +12610,112 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="710"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="775"/> <source>Braces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="716"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="781"/> <source>Select whether matching and bad braces shall be highlighted.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="784"/> <source>Highlight braces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="726"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="791"/> <source>Matched braces:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="739"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="804"/> <source>Select the colour for highlighting matching braces.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="749"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="814"/> <source>Matched braces background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="762"/> - <source>Select the background colour for highlighting matching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="778"/> - <source>Unmatched brace:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="785"/> - <source>Select the colour for highlighting nonmatching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="801"/> - <source>Unmatched brace background:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="808"/> - <source>Select the background colour for highlighting nonmatching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="821"/> - <source>End of Line</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="827"/> + <source>Select the background colour for highlighting matching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="843"/> + <source>Unmatched brace:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="850"/> + <source>Select the colour for highlighting nonmatching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="866"/> + <source>Unmatched brace background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="873"/> + <source>Select the background colour for highlighting nonmatching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="886"/> + <source>End of Line</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="892"/> <source>Select whether end of line shall be shown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="830"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="895"/> <source>Show End of Line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="840"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="905"/> <source>Wrap long lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="893"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="958"/> <source>Edge Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="937"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1002"/> <source>Select the colour for the edge marker.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="947"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1012"/> <source>Background colour:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="960"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1025"/> <source>Move to set the edge column.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="988"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1053"/> <source>Displays the selected tab width.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1004"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1069"/> <source>Column number:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1011"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> <source>Mode:</source> <translation type="unfinished"></translation> </message> @@ -12725,57 +12725,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1030"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1095"/> <source>Draw Line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1035"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1100"/> <source>Change Background Colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1114"/> <source>Zoom</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1055"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1120"/> <source>Initial zoom factor:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1062"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1127"/> <source>Move to set the initial zoom factor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1084"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1149"/> <source>Displays the selected initial zoom factor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1795"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1860"/> <source>Various</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1384"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1449"/> <source>Select whether whitspace characters shall be shown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1387"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1452"/> <source>Show Whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1801"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1866"/> <source>Select to show a minimalistic context menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1804"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1869"/> <source>Show minimal context menu</source> <translation type="unfinished"></translation> </message> @@ -12785,82 +12785,82 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1168"/> <source>Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1109"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1174"/> <source>Select to enable the display of annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1177"/> <source>Show annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1119"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1184"/> <source>Warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1215"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1280"/> <source>Press to select the foreground colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1218"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1283"/> <source>Foreground</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1225"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1290"/> <source>Press to select the background colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1228"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1293"/> <source>Background</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1164"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1229"/> <source>Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1378"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1443"/> <source>Whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1396"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1461"/> <source>Whitespace size:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1403"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1468"/> <source>Select the size of the dots used to represent visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1436"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1501"/> <source>Whitespace foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1449"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1514"/> <source>Select the foreground colour for visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1459"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1524"/> <source>Whitespace background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1472"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1537"/> <source>Select the background colour for visible whitespace</source> <translation type="unfinished"></translation> </message> @@ -12900,67 +12900,67 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1322"/> <source>Change Tracing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1263"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1328"/> <source>Select to mark changed lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1266"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1331"/> <source>Mark changed lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1275"/> - <source>Timeout for marking changed lines:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1282"/> - <source>Enter the time in milliseconds after which changed lines will be marked</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1294"/> - <source> ms</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1327"/> - <source>Unsaved changes colour:</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1340"/> + <source>Timeout for marking changed lines:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> + <source>Enter the time in milliseconds after which changed lines will be marked</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1359"/> + <source> ms</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1392"/> + <source>Unsaved changes colour:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1405"/> <source>Select the colour for the change marker for unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1350"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1415"/> <source>Saved changes colour:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1363"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1428"/> <source>Select the colour for the change marker for saved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="856"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> <source>Select the wrap mode for long lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="876"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="941"/> <source>Indication:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="883"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="948"/> <source>Select, how wrapped lines are indicated</source> <translation type="unfinished"></translation> </message> @@ -12995,22 +12995,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1148"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1213"/> <source>Warning: There might be an issue.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1193"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1258"/> <source>Error: There is an issue.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1209"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1274"/> <source>Style</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1238"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1303"/> <source>Style: There is a style issue.</source> <translation type="unfinished"></translation> </message> @@ -13025,155 +13025,175 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1556"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1621"/> <source>Marker Map</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1562"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1627"/> <source>Errors:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1575"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1640"/> <source>Select the colour for error markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1585"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1650"/> <source>Warnings:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1598"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1663"/> <source>Select the colour for warning markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1608"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1673"/> <source>Bookmarks:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1621"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1686"/> <source>Select the colour for bookmark markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1631"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1696"/> <source>Breakpoints:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1644"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1709"/> <source>Select the colour for breakpoint markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1654"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1719"/> <source>Tasks:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1667"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1732"/> <source>Select the colour for task markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1677"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1742"/> <source>Changes:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1690"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1755"/> <source>Select the colour for change markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1700"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1765"/> <source>Coverage:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1713"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1778"/> <source>Select the colour for coverage markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1723"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1788"/> <source>Current Line:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1736"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1801"/> <source>Select the colour for the current line marker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1769"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1834"/> <source>Background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1782"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1847"/> <source>Select the background colour for the marker map</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1487"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1552"/> <source>Indentation Guides</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1493"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1558"/> <source>Select whether indentation guides should be shown.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1496"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1561"/> <source>Show Indentation Guides</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1505"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1570"/> <source>Indentation Guides foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1518"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1583"/> <source>Select the foreground colour for indentation guides</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1528"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1593"/> <source>Indentation Guides background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1541"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1606"/> <source>Select the background colour for indentation guides</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1746"/> - <source>Search Markers:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1759"/> - <source>Select the colour for the search marker</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1811"/> + <source>Search Markers:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1824"/> + <source>Select the colour for the search marker</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1876"/> <source>Select to hide the Format Buttons bar when formatting is not supported</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1814"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1879"/> <source>Hide Format Buttons bar when not supported</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="710"/> + <source>Debugging Line Markers</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> + <source>Use background colours</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="726"/> + <source>Current line marker:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="749"/> + <source>Error line marker:</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -39730,27 +39750,27 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1543"/> + <location filename="../Preferences/__init__.py" line="1546"/> <source>Export Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1571"/> + <location filename="../Preferences/__init__.py" line="1574"/> <source>Import Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1571"/> + <location filename="../Preferences/__init__.py" line="1574"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1673"/> + <location filename="../Preferences/__init__.py" line="1676"/> <source>Select Python{0} Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1673"/> + <location filename="../Preferences/__init__.py" line="1676"/> <source>Select the Python{0} interpreter to be used:</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_es.ts Sat May 06 14:59:26 2017 +0200 +++ b/i18n/eric6_es.ts Thu May 11 18:26:56 2017 +0200 @@ -9171,892 +9171,892 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="2884"/> + <location filename="../QScintilla/Editor.py" line="2889"/> <source>Open File</source> <translation>Abrir archivo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="662"/> + <location filename="../QScintilla/Editor.py" line="667"/> <source>Undo</source> <translation>Deshacer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="665"/> + <location filename="../QScintilla/Editor.py" line="670"/> <source>Redo</source> <translation>Rehacer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="668"/> + <location filename="../QScintilla/Editor.py" line="673"/> <source>Revert to last saved state</source> <translation>Volver al último estado guardado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="672"/> + <location filename="../QScintilla/Editor.py" line="677"/> <source>Cut</source> <translation>Cortar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="675"/> + <location filename="../QScintilla/Editor.py" line="680"/> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="678"/> - <source>Paste</source> - <translation>Pegar</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="683"/> + <source>Paste</source> + <translation>Pegar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="688"/> <source>Indent</source> <translation>Indentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="686"/> + <location filename="../QScintilla/Editor.py" line="691"/> <source>Unindent</source> <translation>Desindentar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="689"/> + <location filename="../QScintilla/Editor.py" line="694"/> <source>Comment</source> <translation>Pasar a comentario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="692"/> + <location filename="../QScintilla/Editor.py" line="697"/> <source>Uncomment</source> <translation>Sacar de comentario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="695"/> + <location filename="../QScintilla/Editor.py" line="700"/> <source>Stream Comment</source> <translation>Bloque de comentario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="698"/> + <location filename="../QScintilla/Editor.py" line="703"/> <source>Box Comment</source> <translation>Caja de comentario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="702"/> + <location filename="../QScintilla/Editor.py" line="707"/> <source>Select to brace</source> <translation>Seleccionar hasta la llave ( '{' o '}' )</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="704"/> + <location filename="../QScintilla/Editor.py" line="709"/> <source>Select all</source> <translation>Seleccionar todo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="705"/> + <location filename="../QScintilla/Editor.py" line="710"/> <source>Deselect all</source> <translation>Deseleccionar todo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="719"/> + <location filename="../QScintilla/Editor.py" line="724"/> <source>Shorten empty lines</source> <translation>Acortar las líneas vacías</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="726"/> - <source>Use Monospaced Font</source> - <translation>Usar fuente monoespaciada</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="731"/> + <source>Use Monospaced Font</source> + <translation>Usar fuente monoespaciada</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="736"/> <source>Autosave enabled</source> <translation>Autoguardar habilitado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="772"/> + <location filename="../QScintilla/Editor.py" line="777"/> <source>Close</source> <translation>Cerrar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="778"/> + <location filename="../QScintilla/Editor.py" line="783"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="781"/> + <location filename="../QScintilla/Editor.py" line="786"/> <source>Save As...</source> <translation>Guardar como...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="797"/> + <location filename="../QScintilla/Editor.py" line="802"/> <source>Print</source> <translation>Imprimir</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="823"/> + <location filename="../QScintilla/Editor.py" line="828"/> <source>Complete from Document</source> <translation>Completar desde documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="825"/> + <location filename="../QScintilla/Editor.py" line="830"/> <source>Complete from APIs</source> <translation>Completar desde APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="827"/> + <location filename="../QScintilla/Editor.py" line="832"/> <source>Complete from Document and APIs</source> <translation>Completar desde Documento y APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="841"/> + <location filename="../QScintilla/Editor.py" line="846"/> <source>Check</source> <translation>Verificar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="861"/> - <source>Show</source> - <translation>Mostrar</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="863"/> - <source>Code metrics...</source> - <translation>Métricas de código...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="864"/> - <source>Code coverage...</source> - <translation>Cobertura de código...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="866"/> - <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="868"/> + <source>Code metrics...</source> + <translation>Métricas de código...</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="869"/> + <source>Code coverage...</source> + <translation>Cobertura de código...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="871"/> + <source>Show code coverage annotations</source> + <translation>Mostrar anotaciones de cobertura de codigo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="874"/> <source>Hide code coverage annotations</source> <translation>Ocultar anotaciones de cobertura de codigo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="872"/> + <location filename="../QScintilla/Editor.py" line="877"/> <source>Profile data...</source> <translation>Datos de profiling...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="885"/> + <location filename="../QScintilla/Editor.py" line="890"/> <source>Diagrams</source> <translation>Diagramas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="887"/> + <location filename="../QScintilla/Editor.py" line="892"/> <source>Class Diagram...</source> <translation>Diagrama de clases...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="889"/> + <location filename="../QScintilla/Editor.py" line="894"/> <source>Package Diagram...</source> <translation>Diagrama de paquetes...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="891"/> + <location filename="../QScintilla/Editor.py" line="896"/> <source>Imports Diagram...</source> <translation>Diagrama de imports...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="893"/> + <location filename="../QScintilla/Editor.py" line="898"/> <source>Application Diagram...</source> <translation>Diagrama de aplicación...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="911"/> + <location filename="../QScintilla/Editor.py" line="916"/> <source>Languages</source> <translation>Lenguajes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="914"/> + <location filename="../QScintilla/Editor.py" line="919"/> <source>No Language</source> <translation>Ningún Lenguaje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1034"/> + <location filename="../QScintilla/Editor.py" line="1039"/> <source>Export as</source> <translation>Exportar como</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1157"/> + <location filename="../QScintilla/Editor.py" line="1162"/> <source>Toggle bookmark</source> <translation>Alternar marcador</translation> </message>