Sat, 21 Jan 2012 15:01:53 +0100
Fixed the issue where a non matching background was shown in the editor for lines below the end of the text, if a lexer with a non-standard background was set.
Added capability to change the colours of the edit area independant from the colours of the system style.
--- a/APIs/Python3/eric5.api Fri Jan 20 18:54:06 2012 +0100 +++ b/APIs/Python3/eric5.api Sat Jan 21 15:01:53 2012 +0100 @@ -4634,6 +4634,8 @@ eric5.Preferences.ConfigurationPages.EditorStylesPage.EditorStylesPage.on_currentLineMarkerButton_clicked?4() eric5.Preferences.ConfigurationPages.EditorStylesPage.EditorStylesPage.on_defaultFontButton_clicked?4() eric5.Preferences.ConfigurationPages.EditorStylesPage.EditorStylesPage.on_edgeBackgroundColorButton_clicked?4() +eric5.Preferences.ConfigurationPages.EditorStylesPage.EditorStylesPage.on_editAreaBackgroundButton_clicked?4() +eric5.Preferences.ConfigurationPages.EditorStylesPage.EditorStylesPage.on_editAreaForegroundButton_clicked?4() eric5.Preferences.ConfigurationPages.EditorStylesPage.EditorStylesPage.on_errorMarkerButton_clicked?4() eric5.Preferences.ConfigurationPages.EditorStylesPage.EditorStylesPage.on_foldmarginBackgroundButton_clicked?4() eric5.Preferences.ConfigurationPages.EditorStylesPage.EditorStylesPage.on_foldmarkersBackgroundButton_clicked?4()
--- a/Documentation/Help/source.qhp Fri Jan 20 18:54:06 2012 +0100 +++ b/Documentation/Help/source.qhp Sat Jan 21 15:01:53 2012 +0100 @@ -3813,6 +3813,8 @@ <keyword name="EditorStylesPage.on_currentLineMarkerButton_clicked" id="EditorStylesPage.on_currentLineMarkerButton_clicked" ref="eric5.Preferences.ConfigurationPages.EditorStylesPage.html#EditorStylesPage.on_currentLineMarkerButton_clicked" /> <keyword name="EditorStylesPage.on_defaultFontButton_clicked" id="EditorStylesPage.on_defaultFontButton_clicked" ref="eric5.Preferences.ConfigurationPages.EditorStylesPage.html#EditorStylesPage.on_defaultFontButton_clicked" /> <keyword name="EditorStylesPage.on_edgeBackgroundColorButton_clicked" id="EditorStylesPage.on_edgeBackgroundColorButton_clicked" ref="eric5.Preferences.ConfigurationPages.EditorStylesPage.html#EditorStylesPage.on_edgeBackgroundColorButton_clicked" /> + <keyword name="EditorStylesPage.on_editAreaBackgroundButton_clicked" id="EditorStylesPage.on_editAreaBackgroundButton_clicked" ref="eric5.Preferences.ConfigurationPages.EditorStylesPage.html#EditorStylesPage.on_editAreaBackgroundButton_clicked" /> + <keyword name="EditorStylesPage.on_editAreaForegroundButton_clicked" id="EditorStylesPage.on_editAreaForegroundButton_clicked" ref="eric5.Preferences.ConfigurationPages.EditorStylesPage.html#EditorStylesPage.on_editAreaForegroundButton_clicked" /> <keyword name="EditorStylesPage.on_errorMarkerButton_clicked" id="EditorStylesPage.on_errorMarkerButton_clicked" ref="eric5.Preferences.ConfigurationPages.EditorStylesPage.html#EditorStylesPage.on_errorMarkerButton_clicked" /> <keyword name="EditorStylesPage.on_foldmarginBackgroundButton_clicked" id="EditorStylesPage.on_foldmarginBackgroundButton_clicked" ref="eric5.Preferences.ConfigurationPages.EditorStylesPage.html#EditorStylesPage.on_foldmarginBackgroundButton_clicked" /> <keyword name="EditorStylesPage.on_foldmarkersBackgroundButton_clicked" id="EditorStylesPage.on_foldmarkersBackgroundButton_clicked" ref="eric5.Preferences.ConfigurationPages.EditorStylesPage.html#EditorStylesPage.on_foldmarkersBackgroundButton_clicked" />
--- a/Documentation/Source/eric5.Preferences.ConfigurationPages.EditorStylesPage.html Fri Jan 20 18:54:06 2012 +0100 +++ b/Documentation/Source/eric5.Preferences.ConfigurationPages.EditorStylesPage.html Sat Jan 21 15:01:53 2012 +0100 @@ -91,6 +91,12 @@ <td><a href="#EditorStylesPage.on_edgeBackgroundColorButton_clicked">on_edgeBackgroundColorButton_clicked</a></td> <td>Private slot to set the colour for the edge background or line.</td> </tr><tr> +<td><a href="#EditorStylesPage.on_editAreaBackgroundButton_clicked">on_editAreaBackgroundButton_clicked</a></td> +<td>Private slot to set the background colour of the edit area.</td> +</tr><tr> +<td><a href="#EditorStylesPage.on_editAreaForegroundButton_clicked">on_editAreaForegroundButton_clicked</a></td> +<td>Private slot to set the foreground colour of the edit area.</td> +</tr><tr> <td><a href="#EditorStylesPage.on_errorMarkerButton_clicked">on_errorMarkerButton_clicked</a></td> <td>Private slot to set the colour for the highlight of the error line.</td> </tr><tr> @@ -200,6 +206,16 @@ <b>on_edgeBackgroundColorButton_clicked</b>(<i></i>) <p> Private slot to set the colour for the edge background or line. +</p><a NAME="EditorStylesPage.on_editAreaBackgroundButton_clicked" ID="EditorStylesPage.on_editAreaBackgroundButton_clicked"></a> +<h4>EditorStylesPage.on_editAreaBackgroundButton_clicked</h4> +<b>on_editAreaBackgroundButton_clicked</b>(<i></i>) +<p> + Private slot to set the background colour of the edit area. +</p><a NAME="EditorStylesPage.on_editAreaForegroundButton_clicked" ID="EditorStylesPage.on_editAreaForegroundButton_clicked"></a> +<h4>EditorStylesPage.on_editAreaForegroundButton_clicked</h4> +<b>on_editAreaForegroundButton_clicked</b>(<i></i>) +<p> + Private slot to set the foreground colour of the edit area. </p><a NAME="EditorStylesPage.on_errorMarkerButton_clicked" ID="EditorStylesPage.on_errorMarkerButton_clicked"></a> <h4>EditorStylesPage.on_errorMarkerButton_clicked</h4> <b>on_errorMarkerButton_clicked</b>(<i></i>)
--- a/Preferences/ConfigurationPages/EditorStylesPage.py Fri Jan 20 18:54:06 2012 +0100 +++ b/Preferences/ConfigurationPages/EditorStylesPage.py Sat Jan 21 15:01:53 2012 +0100 @@ -177,6 +177,15 @@ self.enableAnnotationsCheckBox.setChecked( Preferences.getEditor("AnnotationsEnabled")) + self.editAreaOverrideCheckBox.setChecked( + Preferences.getEditor("OverrideEditAreaColours")) + self.editorColours["EditAreaForeground"] = \ + self.initColour("EditAreaForeground", self.editAreaForegroundButton, + Preferences.getEditorColour) + self.editorColours["EditAreaBackground"] = \ + self.initColour("EditAreaBackground", self.editAreaBackgroundButton, + Preferences.getEditorColour) + def save(self): """ Public slot to save the Editor Styles configuration. @@ -236,6 +245,9 @@ Preferences.setEditor("AnnotationsEnabled", self.enableAnnotationsCheckBox.isChecked()) + Preferences.setEditor("OverrideEditAreaColours", + self.editAreaOverrideCheckBox.isChecked()) + for key in list(self.editorColours.keys()): Preferences.setEditorColour(key, self.editorColours[key]) @@ -493,6 +505,24 @@ self.editorColours["WhitespaceBackground"] = \ self.selectColour(self.whitespaceBackgroundButton, self.editorColours["WhitespaceBackground"]) + + @pyqtSlot() + def on_editAreaForegroundButton_clicked(self): + """ + Private slot to set the foreground colour of the edit area. + """ + self.editorColours["EditAreaForeground"] = \ + self.selectColour(self.editAreaForegroundButton, + self.editorColours["EditAreaForeground"]) + + @pyqtSlot() + def on_editAreaBackgroundButton_clicked(self): + """ + Private slot to set the background colour of the edit area. + """ + self.editorColours["EditAreaBackground"] = \ + self.selectColour(self.editAreaBackgroundButton, + self.editorColours["EditAreaBackground"]) def create(dlg):
--- a/Preferences/ConfigurationPages/EditorStylesPage.ui Fri Jan 20 18:54:06 2012 +0100 +++ b/Preferences/ConfigurationPages/EditorStylesPage.ui Sat Jan 21 15:01:53 2012 +0100 @@ -7,7 +7,7 @@ <x>0</x> <y>0</y> <width>576</width> - <height>1645</height> + <height>1874</height> </rect> </property> <layout class="QVBoxLayout" name="verticalLayout_3"> @@ -42,6 +42,83 @@ </widget> </item> <item> + <widget class="QGroupBox" name="groupBox_12"> + <property name="title"> + <string>Colours</string> + </property> + <layout class="QGridLayout" name="gridLayout_6"> + <item row="0" column="0" colspan="4"> + <widget class="QCheckBox" name="editAreaOverrideCheckBox"> + <property name="toolTip"> + <string>Select to set the colour of the edit area different to the default style</string> + </property> + <property name="text"> + <string>Override edit area colours</string> + </property> + </widget> + </item> + <item row="1" column="0"> + <widget class="QLabel" name="TextLabel2_2_2_2_2_12"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="text"> + <string>Edit area foreground:</string> + </property> + </widget> + </item> + <item row="1" column="1"> + <widget class="QPushButton" name="editAreaForegroundButton"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="minimumSize"> + <size> + <width>100</width> + <height>0</height> + </size> + </property> + <property name="toolTip"> + <string>Select the foreground colour for the edit area.</string> + </property> + <property name="text"> + <string/> + </property> + </widget> + </item> + <item row="1" column="2"> + <widget class="QLabel" name="TextLabel2_2_2_2_2_11"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="text"> + <string>Edit area background:</string> + </property> + </widget> + </item> + <item row="1" column="3"> + <widget class="QPushButton" name="editAreaBackgroundButton"> + <property name="enabled"> + <bool>false</bool> + </property> + <property name="minimumSize"> + <size> + <width>100</width> + <height>0</height> + </size> + </property> + <property name="toolTip"> + <string>Select the background colour for the edit area.</string> + </property> + <property name="text"> + <string/> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> <widget class="QGroupBox" name="groupBox_5"> <property name="title"> <string>Fonts</string> @@ -1314,6 +1391,9 @@ </layout> </widget> <tabstops> + <tabstop>editAreaOverrideCheckBox</tabstop> + <tabstop>editAreaForegroundButton</tabstop> + <tabstop>editAreaBackgroundButton</tabstop> <tabstop>defaultFontButton</tabstop> <tabstop>monospacedFontButton</tabstop> <tabstop>monospacedCheckBox</tabstop> @@ -1370,12 +1450,12 @@ <slot>display(int)</slot> <hints> <hint type="sourcelabel"> - <x>510</x> - <y>279</y> + <x>483</x> + <y>378</y> </hint> <hint type="destinationlabel"> <x>554</x> - <y>283</y> + <y>382</y> </hint> </hints> </connection> @@ -1387,11 +1467,11 @@ <hints> <hint type="sourcelabel"> <x>492</x> - <y>1031</y> + <y>1144</y> </hint> <hint type="destinationlabel"> <x>544</x> - <y>1035</y> + <y>1148</y> </hint> </hints> </connection> @@ -1402,12 +1482,76 @@ <slot>display(int)</slot> <hints> <hint type="sourcelabel"> - <x>502</x> - <y>1152</y> + <x>206</x> + <y>1265</y> </hint> <hint type="destinationlabel"> <x>555</x> - <y>1156</y> + <y>1269</y> + </hint> + </hints> + </connection> + <connection> + <sender>editAreaOverrideCheckBox</sender> + <signal>toggled(bool)</signal> + <receiver>TextLabel2_2_2_2_2_12</receiver> + <slot>setEnabled(bool)</slot> + <hints> + <hint type="sourcelabel"> + <x>75</x> + <y>117</y> + </hint> + <hint type="destinationlabel"> + <x>75</x> + <y>137</y> + </hint> + </hints> + </connection> + <connection> + <sender>editAreaOverrideCheckBox</sender> + <signal>toggled(bool)</signal> + <receiver>editAreaForegroundButton</receiver> + <slot>setEnabled(bool)</slot> + <hints> + <hint type="sourcelabel"> + <x>201</x> + <y>115</y> + </hint> + <hint type="destinationlabel"> + <x>209</x> + <y>140</y> + </hint> + </hints> + </connection> + <connection> + <sender>editAreaOverrideCheckBox</sender> + <signal>toggled(bool)</signal> + <receiver>TextLabel2_2_2_2_2_11</receiver> + <slot>setEnabled(bool)</slot> + <hints> + <hint type="sourcelabel"> + <x>313</x> + <y>112</y> + </hint> + <hint type="destinationlabel"> + <x>348</x> + <y>141</y> + </hint> + </hints> + </connection> + <connection> + <sender>editAreaOverrideCheckBox</sender> + <signal>toggled(bool)</signal> + <receiver>editAreaBackgroundButton</receiver> + <slot>setEnabled(bool)</slot> + <hints> + <hint type="sourcelabel"> + <x>447</x> + <y>117</y> + </hint> + <hint type="destinationlabel"> + <x>489</x> + <y>142</y> </hint> </hints> </connection>
--- a/Preferences/__init__.py Fri Jan 20 18:54:06 2012 +0100 +++ b/Preferences/__init__.py Sat Jan 21 15:01:53 2012 +0100 @@ -22,7 +22,7 @@ from PyQt4.QtCore import QDir, QPoint, QLocale, QSettings, QFileInfo, QCoreApplication, \ QByteArray, QSize, QUrl, Qt, QLibraryInfo -from PyQt4.QtGui import QColor, QFont, QInputDialog +from PyQt4.QtGui import QColor, QFont, QInputDialog, QApplication, QPalette from PyQt4.QtNetwork import QNetworkRequest from PyQt4.QtWebKit import QWebSettings from PyQt4.Qsci import QsciScintilla @@ -245,6 +245,7 @@ "ClearBreaksOnClose": True, "StripTrailingWhitespace": False, "CommentColumn0": True, + "OverrideEditAreaColours": False, "EdgeMode": QsciScintilla.EdgeNone, "EdgeColumn": 80, @@ -445,6 +446,10 @@ "AnnotationsErrorBackground": QColor("#ffd0d0"), "WhitespaceForeground": QColor(Qt.darkGray), "WhitespaceBackground": QColor(Qt.white), + "EditAreaForeground": + QApplication.palette().color(QPalette.Active, QPalette.Base), + "EditAreaBackground": + QApplication.palette().color(QPalette.Active, QPalette.Text), } editorOtherFontsDefaults = {
--- a/QScintilla/Editor.py Fri Jan 20 18:54:06 2012 +0100 +++ b/QScintilla/Editor.py Sat Jan 21 15:01:53 2012 +0100 @@ -1428,6 +1428,9 @@ self.__setAnnotationStyles() + self.lexer_.setDefaultColor(self.lexer_.color(0)) + self.lexer_.setDefaultPaper(self.lexer_.paper(0)) + def __styleNeeded(self, position): """ Private slot to handle the need for more styling. @@ -3412,6 +3415,9 @@ if self.lexer_ is not None: self.lexer_.readSettings(Preferences.Prefs.settings, "Scintilla") self.lexer_.initProperties() + + self.lexer_.setDefaultColor(self.lexer_.color(0)) + self.lexer_.setDefaultPaper(self.lexer_.paper(0)) # read the typing completer settings if self.completer is not None: @@ -3683,6 +3689,10 @@ except AttributeError: pass self.__setAnnotationStyles() + + if Preferences.getEditor("OverrideEditAreaColours"): + self.setColor(Preferences.getEditorColour("EditAreaForeground")) + self.setPaper(Preferences.getEditorColour("EditAreaBackground")) def __setEolMode(self): """
--- a/QScintilla/MiniEditor.py Fri Jan 20 18:54:06 2012 +0100 +++ b/QScintilla/MiniEditor.py Sat Jan 21 15:01:53 2012 +0100 @@ -2205,6 +2205,10 @@ Preferences.getEditorColour("SearchMarkers")) self.__textEdit.setCursorFlashTime(QApplication.cursorFlashTime()) + + if Preferences.getEditor("OverrideEditAreaColours"): + self.__textEdit.setColor(Preferences.getEditorColour("EditAreaForeground")) + self.__textEdit.setPaper(Preferences.getEditorColour("EditAreaBackground")) def __setEolMode(self): """ @@ -2427,6 +2431,10 @@ self.__textEdit.setLexer() self.__setMonospaced(self.useMonospaced) + if Preferences.getEditor("OverrideEditAreaColours"): + self.__textEdit.setColor(Preferences.getEditorColour("EditAreaForeground")) + self.__textEdit.setPaper(Preferences.getEditorColour("EditAreaBackground")) + def setLanguage(self, filename, initTextDisplay=True, pyname=""): """ Public method to set a lexer language. @@ -2519,6 +2527,9 @@ # now set the lexer properties self.lexer_.initProperties() + self.lexer_.setDefaultColor(self.lexer_.color(0)) + self.lexer_.setDefaultPaper(self.lexer_.paper(0)) + def __isPy2File(self): """ Private method to return a flag indicating a Python 2 file.
--- a/QScintilla/Shell.py Fri Jan 20 18:54:06 2012 +0100 +++ b/QScintilla/Shell.py Sat Jan 21 15:01:53 2012 +0100 @@ -258,6 +258,9 @@ if api is not None: self.lexer_.setAPIs(api) + self.lexer_.setDefaultColor(self.lexer_.color(0)) + self.lexer_.setDefaultPaper(self.lexer_.paper(0)) + def __setMargin0(self): """ Private method to configure margin 0. @@ -342,6 +345,10 @@ self.setCursorFlashTime(QApplication.cursorFlashTime()) + if Preferences.getEditor("OverrideEditAreaColours"): + self.setColor(Preferences.getEditorColour("EditAreaForeground")) + self.setPaper(Preferences.getEditorColour("EditAreaBackground")) + def __setMonospaced(self, on): """ Private method to set/reset a monospaced font.
--- a/QScintilla/Terminal.py Fri Jan 20 18:54:06 2012 +0100 +++ b/QScintilla/Terminal.py Sat Jan 21 15:01:53 2012 +0100 @@ -261,6 +261,9 @@ self.setLexer(self.lexer_) self.lexer_.readSettings(Preferences.Prefs.settings, "Scintilla") + self.lexer_.setDefaultColor(self.lexer_.color(0)) + self.lexer_.setDefaultPaper(self.lexer_.paper(0)) + def __setMargin0(self): """ Private method to configure margin 0. @@ -342,6 +345,10 @@ self.setCursorFlashTime(QApplication.cursorFlashTime()) + if Preferences.getEditor("OverrideEditAreaColours"): + self.setColor(Preferences.getEditorColour("EditAreaForeground")) + self.setPaper(Preferences.getEditorColour("EditAreaBackground")) + def __setMonospaced(self, on): """ Private method to set/reset a monospaced font.
--- a/changelog Fri Jan 20 18:54:06 2012 +0100 +++ b/changelog Sat Jan 21 15:01:53 2012 +0100 @@ -5,6 +5,9 @@ - Web Browser -- extended the check for acceptable SSL certificates for indication via the URL entry field +- Editor + -- added capability to change the colours of the edit area independant from + the colours of the system style Version 5.2.0: - bug fixes
--- a/i18n/eric5_cs.ts Fri Jan 20 18:54:06 2012 +0100 +++ b/i18n/eric5_cs.ts Sat Jan 21 15:01:53 2012 +0100 @@ -6940,7 +6940,7 @@ <context> <name>Editor</name> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source>Open File</source> <translation>Otevřít soubor</translation> </message> @@ -7210,7 +7210,7 @@ <translation>Editovat breakpoint...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4267"/> + <location filename="QScintilla/Editor.py" line="4277"/> <source>Enable breakpoint</source> <translation>Aktivovat breakpoint</translation> </message> @@ -7260,162 +7260,162 @@ <translation>LMB přepínač breakpointů</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <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="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <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="2186"/> + <location filename="QScintilla/Editor.py" line="2189"/> <source>Printing...</source> <translation>Tisk...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2203"/> + <location filename="QScintilla/Editor.py" line="2206"/> <source>Printing completed</source> <translation>Tisk je hotov</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2205"/> - <source>Error while printing</source> - <translation>Chyba během tisku</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="2208"/> + <source>Error while printing</source> + <translation>Chyba během tisku</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2211"/> <source>Printing aborted</source> <translation>Tisk byl zrušen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source>Save File</source> <translation>Uložit soubor</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source>File Modified</source> <translation>Soubor je modifikován</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion</source> <translation>Autodoplňování</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <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="4270"/> + <location filename="QScintilla/Editor.py" line="4280"/> <source>Disable breakpoint</source> <translation>Deaktivovat breakpoint</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Code Coverage</source> <translation>Pokrytí kódu</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <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="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>Show Code Coverage Annotations</source> <translation>Zobrazit poznámky pokrytí kódu</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4629"/> + <location filename="QScintilla/Editor.py" line="4639"/> <source>All lines have been covered.</source> <translation>Všechny řádky byly pokryty.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>There is no coverage file available.</source> <translation>Soubor s pokrytím není dostupný.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Profile Data</source> <translation>Profilovat data</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>Syntax Error</source> <translation>Chyba syntaxe</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>No syntax error message available.</source> <translation>Hlášení syntaktické chyby není dostupné.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Macro Name</source> <translation>Název makra</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Select a macro name:</source> <translation>Vyberte název makra:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5108"/> + <location filename="QScintilla/Editor.py" line="5118"/> <source>Load macro file</source> <translation>Načíst soubor makra</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Macro files (*.macro)</source> <translation>Macro soubory (*.macro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source>Error loading macro</source> <translation>Chyba při načítání makra</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Save macro file</source> <translation>Uložit soubor s makrem</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source>Save macro</source> <translation>Uložit makro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source>Error saving macro</source> <translation>Chyba při ukládání makra</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Start Macro Recording</source> <translation>Spustit záznam makra</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <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="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Macro Recording</source> <translation>Záznam makra</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Enter name of the macro:</source> <translation>Vložte název makra:</translation> </message> @@ -7425,77 +7425,77 @@ <translation type="obsolete"><br><b>Pozor:</b> Ztratíte všechny změny pokud jej znovu otevřete.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5341"/> + <location filename="QScintilla/Editor.py" line="5351"/> <source>File changed</source> <translation>Soubor změněn</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5614"/> + <location filename="QScintilla/Editor.py" line="5624"/> <source>Resources</source> <translation>Zdroje</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5616"/> + <location filename="QScintilla/Editor.py" line="5626"/> <source>Add file...</source> <translation>Přidat soubor...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5618"/> + <location filename="QScintilla/Editor.py" line="5628"/> <source>Add files...</source> <translation>Přidat soubory...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5620"/> + <location filename="QScintilla/Editor.py" line="5630"/> <source>Add aliased file...</source> <translation>Přidat zástupce souboru...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5622"/> + <location filename="QScintilla/Editor.py" line="5632"/> <source>Add localized resource...</source> <translation>Přidat lokalizované resource...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5625"/> + <location filename="QScintilla/Editor.py" line="5635"/> <source>Add resource frame</source> <translation>Přidat resource frame</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5643"/> + <location filename="QScintilla/Editor.py" line="5653"/> <source>Add file resource</source> <translation>Přidat soubor resource</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5659"/> + <location filename="QScintilla/Editor.py" line="5669"/> <source>Add file resources</source> <translation>Přidat soubory resource</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Add aliased file resource</source> <translation>Přidat zástupce souboru resource</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Package Diagram</source> <translation>Diagram balíčku</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Include class attributes?</source> <translation>Včetně atributů třídy?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Application Diagram</source> <translation>Diagram aplikace</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> @@ -7515,12 +7515,12 @@ <translation>Nebyl zadán forám exportu. Zrušeno....</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Imports Diagram</source> <translation>Importovat diagram</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Include imports from external modules?</source> <translation>Zahrnout importy z externích modulů?</translation> </message> @@ -7595,7 +7595,7 @@ <translation>Použít Pygments lexer.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6014"/> + <location filename="QScintilla/Editor.py" line="6024"/> <source>Check spelling...</source> <translation>Zatrhnout kontrolu...</translation> </message> @@ -7605,12 +7605,12 @@ <translation>Zatrhnout výběr kontroly...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6016"/> + <location filename="QScintilla/Editor.py" line="6026"/> <source>Add to dictionary</source> <translation>Přidat do slovníku</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6018"/> + <location filename="QScintilla/Editor.py" line="6028"/> <source>Ignore All</source> <translation>Ignorovat vše</translation> </message> @@ -7635,17 +7635,17 @@ <translation>Alternativy ({0})</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <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="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <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="2508"/> + <location filename="QScintilla/Editor.py" line="2511"/> <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> @@ -7655,12 +7655,12 @@ <translation type="obsolete"><p>Soubor <b>{0}</b> již existuje.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5122"/> + <location filename="QScintilla/Editor.py" line="5132"/> <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="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <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> @@ -7670,27 +7670,27 @@ <translation type="obsolete"><p>Soubor s makrem <b>{0}</b> již existuje.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <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="5332"/> + <location filename="QScintilla/Editor.py" line="5342"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation><p>Soubor <b>{0}</b> byl změněn po té co již byl načten do eric5. Znovu načíst?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5479"/> + <location filename="QScintilla/Editor.py" line="5489"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <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="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Alias for file <b>{0}</b>:</source> <translation>Zástupce pro soubor <b>{0}</b>:</translation> </message> @@ -7715,57 +7715,57 @@ <translation>Vyčistit varování</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>py3flakes Warning</source> <translation>py3flakes varování</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>No py3flakes warning message available.</source> <translation>Varování py3flakes není dostupné.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <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="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <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="5024"/> + <location filename="QScintilla/Editor.py" line="5034"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5030"/> + <location filename="QScintilla/Editor.py" line="5040"/> <source>Error: {0}</source> <translation type="unfinished">Chyby: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5337"/> + <location filename="QScintilla/Editor.py" line="5347"/> <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="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <source>Activating Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <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="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Activating Calltip Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> @@ -9802,117 +9802,117 @@ <translation><b>Konfigurace editoru stylů</b></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="124"/> <source>Fonts</source> <translation>Fonty</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="130"/> <source>Select, whether the monospaced font should be used as default</source> <translation>Vybrat, má-li být jako default použit neproporcioální font</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="133"/> <source>Use monospaced as default</source> <translation>Neproporcionální font jako default</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="143"/> <source>Default Text</source> <translation>Defaultní text</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="79"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="156"/> <source>Press to select the default font for the editor's text</source> <translation>Stisknout pro výběr defaultního fontu pro text editoru</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="159"/> <source>Default Text Font</source> <translation>Font defaultního textu</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="89"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="166"/> <source>Press to select the font to be used as the monospaced font</source> <translation>Stisknout pro výběr fontu, který bude použit pro neproporcionální písmo</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="92"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="169"/> <source>Monospaced Font</source> <translation>Neproporcionální font</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="403"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="480"/> <source>Press to select the font for the editor line numbers</source> <translation>Stisknout pro výběr fontu pro na čísla řádků v editoru</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="406"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="483"/> <source>Line Numbers Font</source> <translation>Font čísel řádek</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="102"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="179"/> <source>Monospaced Text</source> <translation>Neproporcionální text</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="422"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="499"/> <source>2345</source> <translation></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="118"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="195"/> <source>Margins</source> <translation>Okraje</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="126"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="203"/> <source>Select whether line numbers margin should be shown.</source> <translation>Vybrat má-li se zobrazovat sloupec s čísly řádků.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="129"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="206"/> <source>Show Line Numbers Margin</source> <translation>Zobrazit sloupec s čísly řádků</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="136"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="213"/> <source>Select whether the fold margin should be shown.</source> <translation>Vybrat, jestliže se mají zobrazovat značky skládání.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="139"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="216"/> <source>Show Fold Margin</source> <translation>Zobrazovat značky skládání</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="160"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="237"/> <source>Linenumbers width:</source> <translation>Šířka sloupce s čísly řádků:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="170"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> <source>Move to set the width of the linenumbers margin.</source> <translation>Posunout pro nastavení šířky sloupce s čísly řádků.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="192"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="269"/> <source>Displays the selected width of the linenumbers margin.</source> <translation>Zobrazuje vybranou šířku sloupce s čísly řádků.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="212"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="289"/> <source>Folding style:</source> <translation>Styl skládání:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="225"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="302"/> <source>Select the folding style to be used in the folding margin</source> <translation>Výběr stylu skládání, který bude použit ve sloupci se značkami skládání</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="228"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="305"/> <source><b>Folding style</b> <p>Select the desired folding style to be used in the folding margin.</p> <p>The available styles are: @@ -9927,402 +9927,402 @@ <translation><b>Styl skládání</b><p>Vyberte požadovaný styl skládání, který bude použit ve sloupci se značkami skládání.</p><p>Dostupné styly jsou:<li><ul>Jednoduché - jen symboly plus a mínus</ul><ul>Kolečka - symboly plus a mínus v kruhu</ul><ul>Čtverce - symboly plus a mínus ve čtvercích</ul><ul>Propojená kolečka - symboly plus a mínus v propojených kolečkách</ul<ul>Propojené čtverce - symboly plus a mínus v propojených čtvercích</ul></li></p></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="242"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="319"/> <source>Plain</source> <translation>Jednoduché</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="324"/> <source>Circled</source> <translation>Kolečka</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="252"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="329"/> <source>Boxed</source> <translation>Čtverce</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="334"/> <source>Circled Tree</source> <translation>Propojená kolečka</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="262"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="339"/> <source>Boxed Tree</source> <translation>Propojené čtverce</translation> </message> <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="530"/> + <source>Selection</source> + <translation>Výběr</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="538"/> + <source>Select to use custom selection colours</source> + <translation>Vybrat použití obvyklého výběru barev</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="541"/> + <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> + <translation><b>Použít obvyklý výběr barev</b><p>Vyberte tento přepínač pokud v okně editoru a shellu chcete použít obvyklý typ barev. Barvy popředí a pozadí budou definovány barvami strany.</p></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="544"/> + <source>Use custom selection colours</source> + <translation>Použít obvyklé barvy</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="551"/> + <source>Select, if selected text should be colourized by the lexer.</source> + <translation>Vybrat, jestliže má být vybraný text obarven lexerem.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="554"/> + <source>Colourize selected text</source> + <translation>Obarvit vybraný text</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="561"/> + <source>Select to extend selection to end of line</source> + <translation>Aktivovat výběr rozšířený o konec řádku</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="564"/> + <source>Extend selection to end of line</source> + <translation>Rozšířený výběr na konec řádku</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="575"/> + <source>Selection foreground:</source> + <translation>Výběr popředí:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="588"/> + <source>Select the foreground colour for the selection.</source> + <translation>Vybrat barvu popředí pro výběr.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="598"/> + <source>Selection background:</source> + <translation>Výběr pozadí:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="611"/> + <source>Select the background colour for the selection.</source> + <translation>Vybrat barvu pozadí pro výběr.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="626"/> + <source>Caret</source> + <translation>Karet (textový kurzor)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="632"/> + <source>Select, whether the caretline should be highlighted</source> + <translation>Vybrat, má-li být linka karetu zvýrazněna</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="635"/> + <source>Caretline visible</source> + <translation>Zobrazení textového kurzoru</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="644"/> + <source>Caret width:</source> + <translation>Šířka text.kurzoru:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="651"/> + <source>Select caret width (1, 2 or 3 pixels)</source> + <translation>Výběr délky karetu (1, 2 nebo 3 pixelu)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="684"/> + <source>Caret foreground:</source> + <translation>Barva karetu:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="697"/> + <source>Select the colour for the caret.</source> + <translation>Výběr barvy karetu.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="707"/> + <source>Caretline background:</source> + <translation>Pozadí karetu:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="720"/> + <source>Select the background colour for the line containing the caret.</source> + <translation>Vybrat barvu pozadí pro řádku obsahující karet.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="741"/> + <source>Current line marker:</source> + <translation>Značka aktuální řádky:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="754"/> + <source>Select the colour for the current line marker.</source> + <translation>Vybrat barvu pro značku aktuální řádky.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="764"/> + <source>Error line marker:</source> + <translation>Značka chybné řádky:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="777"/> + <source>Select the colour for the error line marker.</source> + <translation>Vybrat barvu pro značku chybné řádky.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="790"/> + <source>Braces</source> + <translation>Závorky</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="796"/> + <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="799"/> + <source>Highlight braces</source> + <translation>Zvýraznit závorky</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="806"/> + <source>Matched braces:</source> + <translation>Párové závorky:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="819"/> + <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="829"/> + <source>Matched braces background:</source> + <translation>Pozadí párových závorek:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> + <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="858"/> + <source>Unmatched brace:</source> + <translation>Nepárová závorka:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="865"/> + <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="881"/> + <source>Unmatched brace background:</source> + <translation>Pozadí nepárové závorky:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="888"/> + <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="901"/> + <source>End of Line</source> + <translation>Konec řádku</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="909"/> + <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="912"/> + <source>Show End of Line</source> + <translation>Zobrazovat konce řádků</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="919"/> + <source>Select, whether long lines should be wrapped</source> + <translation>Vybrat, mají-li se dlouhé řádky zalamovat</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="922"/> + <source>Wrap long lines</source> + <translation>Zalamovat dlouhé řádky</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="931"/> + <source>Edge Mode</source> + <translation>Mód okraje</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="975"/> + <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="985"/> + <source>Background colour:</source> + <translation>Barva pozadí:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="998"/> + <source>Move to set the edge column.</source> + <translation>Posunout pro nastavení sloupce okraje.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> + <source>Displays the selected tab width.</source> + <translation>Zobrazuje vybranou šířku tabulátoru.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1042"/> + <source>Column number:</source> + <translation>Číslo sloupce:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <source>Mode:</source> + <translation>Mód:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1063"/> + <source>Disabled</source> + <translation>Vypnuto</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1068"/> + <source>Draw Line</source> + <translation>Zobrazit linku</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <source>Change Background Colour</source> + <translation>Změnit barvu pozadí</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1362"/> + <source>Various</source> + <translation>Různé</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1259"/> + <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="1262"/> + <source>Show Whitespace</source> + <translation>Zobrazit prázdné znaky</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1368"/> + <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="1371"/> + <source>Show minimal context menu</source> + <translation>Zobrazit minimální kontextové menu</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="361"/> + <source>Margins foreground:</source> + <translation>Barva textu okrajů:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="374"/> + <source>Select the foreground colour for the margins</source> + <translation>Vybrat barvu textu okrajů</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="384"/> + <source>Margins background:</source> + <translation>Barva pozadí okrajů:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="397"/> + <source>Select the background colour for the margins</source> + <translation>Vybrat barvu pozadí okrajů</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="407"/> + <source>Foldmargin background:</source> + <translation>Barava pozadí okraje skládání:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="420"/> + <source>Select the background colour for the foldmargin</source> + <translation>Vybrat barvu pozadí pro okraj se značkami skládání</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="223"/> + <source>Select to show unified margins (like eric4 < 4.3.0)</source> + <translation>Vybrat zobrazení jednotných okrajů (jako eric4 < 4.3.0)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="226"/> + <source>Show unified margins</source> + <translation>Zobrazit jednotné okraje</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="735"/> + <source>Debugging Line Markers</source> + <translation>Značky debugované řádky</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1087"/> + <source>Zoom</source> + <translation>Lupa</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1093"/> + <source>Initial zoom factor:</source> + <translation>Úvodní nastavení lupy:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> + <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="1125"/> + <source>Displays the selected initial zoom factor</source> + <translation>Zobrazuje vybranou velikost lupy</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="344"/> + <source>Arrow</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="349"/> + <source>Arrow Tree</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="430"/> + <source>Foldmarkers foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="443"/> + <source>Select the foreground colour of the foldmarkers</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="453"/> - <source>Selection</source> - <translation>Výběr</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="461"/> - <source>Select to use custom selection colours</source> - <translation>Vybrat použití obvyklého výběru barev</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="464"/> - <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> - <translation><b>Použít obvyklý výběr barev</b><p>Vyberte tento přepínač pokud v okně editoru a shellu chcete použít obvyklý typ barev. Barvy popředí a pozadí budou definovány barvami strany.</p></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="467"/> - <source>Use custom selection colours</source> - <translation>Použít obvyklé barvy</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="474"/> - <source>Select, if selected text should be colourized by the lexer.</source> - <translation>Vybrat, jestliže má být vybraný text obarven lexerem.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="477"/> - <source>Colourize selected text</source> - <translation>Obarvit vybraný text</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="484"/> - <source>Select to extend selection to end of line</source> - <translation>Aktivovat výběr rozšířený o konec řádku</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="487"/> - <source>Extend selection to end of line</source> - <translation>Rozšířený výběr na konec řádku</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="498"/> - <source>Selection foreground:</source> - <translation>Výběr popředí:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="511"/> - <source>Select the foreground colour for the selection.</source> - <translation>Vybrat barvu popředí pro výběr.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="521"/> - <source>Selection background:</source> - <translation>Výběr pozadí:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="534"/> - <source>Select the background colour for the selection.</source> - <translation>Vybrat barvu pozadí pro výběr.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="549"/> - <source>Caret</source> - <translation>Karet (textový kurzor)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="555"/> - <source>Select, whether the caretline should be highlighted</source> - <translation>Vybrat, má-li být linka karetu zvýrazněna</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="558"/> - <source>Caretline visible</source> - <translation>Zobrazení textového kurzoru</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="567"/> - <source>Caret width:</source> - <translation>Šířka text.kurzoru:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="574"/> - <source>Select caret width (1, 2 or 3 pixels)</source> - <translation>Výběr délky karetu (1, 2 nebo 3 pixelu)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="607"/> - <source>Caret foreground:</source> - <translation>Barva karetu:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="620"/> - <source>Select the colour for the caret.</source> - <translation>Výběr barvy karetu.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="630"/> - <source>Caretline background:</source> - <translation>Pozadí karetu:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="643"/> - <source>Select the background colour for the line containing the caret.</source> - <translation>Vybrat barvu pozadí pro řádku obsahující karet.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="664"/> - <source>Current line marker:</source> - <translation>Značka aktuální řádky:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="677"/> - <source>Select the colour for the current line marker.</source> - <translation>Vybrat barvu pro značku aktuální řádky.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="687"/> - <source>Error line marker:</source> - <translation>Značka chybné řádky:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="700"/> - <source>Select the colour for the error line marker.</source> - <translation>Vybrat barvu pro značku chybné řádky.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="713"/> - <source>Braces</source> - <translation>Závorky</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> - <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="722"/> - <source>Highlight braces</source> - <translation>Zvýraznit závorky</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="729"/> - <source>Matched braces:</source> - <translation>Párové závorky:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="742"/> - <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="752"/> - <source>Matched braces background:</source> - <translation>Pozadí párových závorek:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="765"/> - <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="781"/> - <source>Unmatched brace:</source> - <translation>Nepárová závorka:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="788"/> - <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="804"/> - <source>Unmatched brace background:</source> - <translation>Pozadí nepárové závorky:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="811"/> - <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="824"/> - <source>End of Line</source> - <translation>Konec řádku</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="832"/> - <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="835"/> - <source>Show End of Line</source> - <translation>Zobrazovat konce řádků</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> - <source>Select, whether long lines should be wrapped</source> - <translation>Vybrat, mají-li se dlouhé řádky zalamovat</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="845"/> - <source>Wrap long lines</source> - <translation>Zalamovat dlouhé řádky</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="854"/> - <source>Edge Mode</source> - <translation>Mód okraje</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="898"/> - <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="908"/> - <source>Background colour:</source> - <translation>Barva pozadí:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> - <source>Move to set the edge column.</source> - <translation>Posunout pro nastavení sloupce okraje.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="949"/> - <source>Displays the selected tab width.</source> - <translation>Zobrazuje vybranou šířku tabulátoru.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="965"/> - <source>Column number:</source> - <translation>Číslo sloupce:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="972"/> - <source>Mode:</source> - <translation>Mód:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="986"/> - <source>Disabled</source> - <translation>Vypnuto</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="991"/> - <source>Draw Line</source> - <translation>Zobrazit linku</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="996"/> - <source>Change Background Colour</source> - <translation>Změnit barvu pozadí</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1285"/> - <source>Various</source> - <translation>Různé</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1182"/> - <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="1185"/> - <source>Show Whitespace</source> - <translation>Zobrazit prázdné znaky</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1291"/> - <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="1294"/> - <source>Show minimal context menu</source> - <translation>Zobrazit minimální kontextové menu</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="284"/> - <source>Margins foreground:</source> - <translation>Barva textu okrajů:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="297"/> - <source>Select the foreground colour for the margins</source> - <translation>Vybrat barvu textu okrajů</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="307"/> - <source>Margins background:</source> - <translation>Barva pozadí okrajů:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="320"/> - <source>Select the background colour for the margins</source> - <translation>Vybrat barvu pozadí okrajů</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="330"/> - <source>Foldmargin background:</source> - <translation>Barava pozadí okraje skládání:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="343"/> - <source>Select the background colour for the foldmargin</source> - <translation>Vybrat barvu pozadí pro okraj se značkami skládání</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="146"/> - <source>Select to show unified margins (like eric4 < 4.3.0)</source> - <translation>Vybrat zobrazení jednotných okrajů (jako eric4 < 4.3.0)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="149"/> - <source>Show unified margins</source> - <translation>Zobrazit jednotné okraje</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="658"/> - <source>Debugging Line Markers</source> - <translation>Značky debugované řádky</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1010"/> - <source>Zoom</source> - <translation>Lupa</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1016"/> - <source>Initial zoom factor:</source> - <translation>Úvodní nastavení lupy:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> - <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="1048"/> - <source>Displays the selected initial zoom factor</source> - <translation>Zobrazuje vybranou velikost lupy</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="267"/> - <source>Arrow</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="272"/> - <source>Arrow Tree</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="353"/> - <source>Foldmarkers foreground:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="366"/> - <source>Select the foreground colour of the foldmarkers</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="376"/> <source>Foldmarkers background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="466"/> <source>Select the background colour of the foldmarkers</source> <translation type="unfinished"></translation> </message> @@ -10332,95 +10332,135 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1067"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> <source>Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1150"/> <source>Select to enable the display of annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1153"/> <source>Show annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1083"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1160"/> <source>Warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1134"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1211"/> <source>Press to select the foreground colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1137"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1214"/> <source>Foreground</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1221"/> <source>Press to select the background colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1147"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1224"/> <source>Background</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1189"/> <source>Warning: There might be an error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1128"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1205"/> <source>Errors</source> <translation type="unfinished">Chyby</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1157"/> - <source>Error: There is an error.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1176"/> - <source>Whitespace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1194"/> - <source>Whitespace size:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1201"/> - <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="1234"/> + <source>Error: There is an error.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1253"/> + <source>Whitespace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1271"/> + <source>Whitespace size:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1278"/> + <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="1311"/> <source>Whitespace foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1324"/> <source>Select the foreground colour for visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1334"/> <source>Whitespace background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1270"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> <source>Select the background colour for visible whitespace</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colour</source> + <translation type="obsolete">Barva</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <source>Select to set the colour of the edit area different to the default style</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <source>Override edit area colours</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <source>Edit area foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <source>Select the foreground colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="95"/> + <source>Edit area background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="111"/> + <source>Select the background colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colours</source> + <translation type="unfinished">Barvy</translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -25522,7 +25562,7 @@ <translation>Soubor načten</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2278"/> + <location filename="QScintilla/MiniEditor.py" line="2282"/> <source>Untitled</source> <translation>Beze jména</translation> </message> @@ -25532,22 +25572,22 @@ <translation></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2318"/> + <location filename="QScintilla/MiniEditor.py" line="2322"/> <source>Select all</source> <translation>Vybrat vše</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2319"/> + <location filename="QScintilla/MiniEditor.py" line="2323"/> <source>Deselect all</source> <translation>Zrušit celý výběr</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2330"/> + <location filename="QScintilla/MiniEditor.py" line="2334"/> <source>Languages</source> <translation>Jazyky</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2333"/> + <location filename="QScintilla/MiniEditor.py" line="2337"/> <source>No Language</source> <translation>Žádný jazyk</translation> </message> @@ -25634,22 +25674,22 @@ <translation>Tisk aktuálního souboru</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2244"/> + <location filename="QScintilla/MiniEditor.py" line="2248"/> <source>Printing...</source> <translation>Tisk...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2260"/> + <location filename="QScintilla/MiniEditor.py" line="2264"/> <source>Printing completed</source> <translation>Tisk je hotov</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2262"/> + <location filename="QScintilla/MiniEditor.py" line="2266"/> <source>Error while printing</source> <translation>Chyba během tisku</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2265"/> + <location filename="QScintilla/MiniEditor.py" line="2269"/> <source>Printing aborted</source> <translation>Tisk byl zrušen</translation> </message> @@ -25674,22 +25714,22 @@ <translation><b>Náhkled tisku</b><p>Náhkled tisku aktuálního souboru.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2352"/> + <location filename="QScintilla/MiniEditor.py" line="2356"/> <source>Guessed</source> <translation>Odhadem</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2372"/> + <location filename="QScintilla/MiniEditor.py" line="2376"/> <source>Alternatives</source> <translation>Alternativy</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Pygments Lexer</source> <translation>Pygments Lexer</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Select the Pygments lexer to apply.</source> <translation>Použít Pygments lexer.</translation> </message> @@ -25739,7 +25779,7 @@ <translation></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2369"/> + <location filename="QScintilla/MiniEditor.py" line="2373"/> <source>Alternatives ({0})</source> <translation>Alternativy ({0})</translation> </message> @@ -28111,27 +28151,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="971"/> + <location filename="Preferences/__init__.py" line="976"/> <source>Export Preferences</source> <translation>Předvolby exportu</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Import Preferences</source> <translation>Předvolby importu</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -34468,12 +34508,12 @@ <translation>Reset a vyčistit</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="544"/> + <location filename="QScintilla/Shell.py" line="551"/> <source>No.</source> <translation>Č.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> @@ -34483,7 +34523,7 @@ <translation><b>Okno Shellu</b><p>Toto je jednoduchý interpretr běžící v okně. Interpretr běží nezávisle na programu, který je debugován. To znamená, že můžete spustit jakýkoliv příkaz i během debugování.</p><p>Během vkládání příkazu můžete použít kurzorové klávesy. Je zde také historie příkazů, která se aktivuje klávesami up a down. Stisknutím up nebo down klávesy po textu, který byl zadán se spustí inkrementální vyhledávání.</p><p>Shell má několik speciálních příkazů. 'reset' zabije shell a spustí nový. 'clear' vyčistí obsah shell okna.'start' se používá pro přepnutí shell jazyka a musí za ním následovat jméno podporovaného jazyka. Podporované jazyky jsou zobrazeny v seznamu, který vrací příkaz 'languages'. Tyto příkazy (kromě 'languages') jsou také dostupné přes kontextové menu.</p><p>Stisknutím tab klávesy po nějakém vloženém textu se zobrazí seznam s nabídkou možných zakončení výrazu. Odpovídající zadání pak může být vybráno z tohoto listu. Pokud je existuje jen jedna možnost, je vložena automaticky.</p><p>Dokud se program neukončí, je shell v pasivním módu dostupný jen pokud se debugovaný program připojil k IDE. To je oznámeno odlišným promptem a dále v názvu titulku okna.</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="541"/> + <location filename="QScintilla/Shell.py" line="548"/> <source>Passive Debug Mode</source> <translation>Pasivní debug mód</translation> </message> @@ -34503,17 +34543,17 @@ <translation>Zobrazit</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select History</source> <translation>Vybrat historii</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Vybrat vstup historie pro vykonání (nejaktuálnější zobrazen poslední).</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="542"/> + <location filename="QScintilla/Shell.py" line="549"/> <source> Not connected</source> <translation>Nepřipojen</translation> @@ -34529,28 +34569,28 @@ <translation>Vyjmout</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="546"/> + <location filename="QScintilla/Shell.py" line="553"/> <source>{0} on {1}, {2}</source> <translation>{0} na {1}, {2}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="607"/> + <location filename="QScintilla/Shell.py" line="614"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="615"/> + <location filename="QScintilla/Shell.py" line="622"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1158"/> + <location filename="QScintilla/Shell.py" line="1165"/> <source>Shell language "{0}" not supported. </source> <translation>Shell jazyk "{0}" není podporován.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> není soubor.</p></translation> </message> @@ -42468,12 +42508,12 @@ <translation></translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select History</source> <translation>Vybrat historii</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Vybrat vstup historie pro vykonání (nejaktuálnější zobrazen poslední).</translation> </message> @@ -42483,7 +42523,7 @@ <translation>Konfigurovat...</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="909"/> + <location filename="QScintilla/Terminal.py" line="916"/> <source>No shell has been configured.</source> <translation>Nebyl nakonfigurován žádný shell.</translation> </message>
--- a/i18n/eric5_de.ts Fri Jan 20 18:54:06 2012 +0100 +++ b/i18n/eric5_de.ts Sat Jan 21 15:01:53 2012 +0100 @@ -6800,12 +6800,12 @@ <context> <name>Editor</name> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source>Open File</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source>Save File</source> <translation>Datei sichern</translation> </message> @@ -6890,27 +6890,27 @@ <translation>Drucken</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2186"/> + <location filename="QScintilla/Editor.py" line="2189"/> <source>Printing...</source> <translation>Drucke...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2203"/> + <location filename="QScintilla/Editor.py" line="2206"/> <source>Printing completed</source> <translation>Drucken beendet</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2205"/> - <source>Error while printing</source> - <translation>Fehler beim Drucken</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="2208"/> + <source>Error while printing</source> + <translation>Fehler beim Drucken</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2211"/> <source>Printing aborted</source> <translation>Drucken abgebrochen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5341"/> + <location filename="QScintilla/Editor.py" line="5351"/> <source>File changed</source> <translation>Datei geändert</translation> </message> @@ -6920,7 +6920,7 @@ <translation>Prüfen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source>File Modified</source> <translation>Datei geändert</translation> </message> @@ -6955,12 +6955,12 @@ <translation>Box Kommentar</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>Modification of Read Only file</source> <translation>Änderungsversuch für eine schreibgeschützte Datei</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <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> @@ -6975,57 +6975,57 @@ <translation>Zurück zum letzten gesichert Zustand</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Macro Name</source> <translation>Makro Name</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Select a macro name:</source> <translation>Wähle einen Makro Namen:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Macro files (*.macro)</source> <translation>Makro Dateien (*.macro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5108"/> + <location filename="QScintilla/Editor.py" line="5118"/> <source>Load macro file</source> <translation>Lade Makro Datei</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source>Error loading macro</source> <translation>Fehler beim Makro Laden</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Save macro file</source> <translation>Makro Datei schreiben</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source>Save macro</source> <translation>Makro speichern</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source>Error saving macro</source> <translation>Fehler beim Makro speichern</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Start Macro Recording</source> <translation>Makroaufzeichnung starten</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Macro Recording</source> <translation>Makroaufzeichnung</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Enter name of the macro:</source> <translation>Gib einen Namen für das Makro ein:</translation> </message> @@ -7085,32 +7085,32 @@ <translation>Haltepunkt bearbeiten...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4267"/> + <location filename="QScintilla/Editor.py" line="4277"/> <source>Enable breakpoint</source> <translation>Haltepunkt aktivieren</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4270"/> + <location filename="QScintilla/Editor.py" line="4280"/> <source>Disable breakpoint</source> <translation>Haltepunkt deaktivieren</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <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="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Profile Data</source> <translation>Profildaten</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Please select a profile file</source> <translation>Bitte wählen sie eine Datei mit Profildaten</translation> </message> @@ -7120,12 +7120,12 @@ <translation>Autom. Vervollständigung aktiv</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion</source> <translation>Autom. Vervollständigung</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <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> @@ -7160,7 +7160,7 @@ <translation>Autom. Speicherung aktiv</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> @@ -7170,12 +7170,12 @@ <translation>Zeige Syntaxfehlermeldung</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>Syntax Error</source> <translation>Syntaxfehler</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>No syntax error message available.</source> <translation>Keine Syntaxfehlermeldung verfügbar.</translation> </message> @@ -7205,42 +7205,42 @@ <translation>Vorige nichtabgedeckte Zeile</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>Show Code Coverage Annotations</source> <translation>Zeilen ohne Abdeckung Markieren</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4629"/> + <location filename="QScintilla/Editor.py" line="4639"/> <source>All lines have been covered.</source> <translation>Alle Zeilen sind abgedeckt.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>There is no coverage file available.</source> <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <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="5122"/> + <location filename="QScintilla/Editor.py" line="5132"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Die Makro Datei <b>{0}</b> kann nicht gelesen werden.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Die Makro Datei <b>{0}</b> ist zerstört.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Die Makro Datei <b>{0}</b> kann nicht geschrieben werden.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> @@ -7285,82 +7285,82 @@ <translation>Keine Sprache</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5479"/> + <location filename="QScintilla/Editor.py" line="5489"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5614"/> + <location filename="QScintilla/Editor.py" line="5624"/> <source>Resources</source> <translation>Resourcen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5616"/> + <location filename="QScintilla/Editor.py" line="5626"/> <source>Add file...</source> <translation>Datei hinzufügen...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5618"/> + <location filename="QScintilla/Editor.py" line="5628"/> <source>Add files...</source> <translation>Dateien hinzufügen...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5620"/> + <location filename="QScintilla/Editor.py" line="5630"/> <source>Add aliased file...</source> <translation>Aliased Datei hinzufügen...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5622"/> + <location filename="QScintilla/Editor.py" line="5632"/> <source>Add localized resource...</source> <translation>Lokalisierte Resource hinzufügen...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5643"/> + <location filename="QScintilla/Editor.py" line="5653"/> <source>Add file resource</source> <translation>Dateiresource hinzufügen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5659"/> + <location filename="QScintilla/Editor.py" line="5669"/> <source>Add file resources</source> <translation>Dateiresourcen hinzufügen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Add aliased file resource</source> <translation>Aliased Dateiresourcen hinzufügen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <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="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Package Diagram</source> <translation>Package-Diagramm</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Include class attributes?</source> <translation>Klassenattribute anzeigen?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5625"/> + <location filename="QScintilla/Editor.py" line="5635"/> <source>Add resource frame</source> <translation>Resource Rahmen hinzufügen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Macro recording is already active. Start new?</source> <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation> </message> @@ -7415,12 +7415,12 @@ <translation>Kein Exportformat angegeben. Abbruch...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Imports Diagram</source> <translation>Imports Diagramm</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Include imports from external modules?</source> <translation>Imports externer Module anzeigen?</translation> </message> @@ -7500,7 +7500,7 @@ <translation>Wähle den anzuwendenden Pygments Lexer.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6014"/> + <location filename="QScintilla/Editor.py" line="6024"/> <source>Check spelling...</source> <translation>Rechtschreibprüfung...</translation> </message> @@ -7510,12 +7510,12 @@ <translation>Rechtschreibprüfung für Auswahl...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6016"/> + <location filename="QScintilla/Editor.py" line="6026"/> <source>Add to dictionary</source> <translation>Zum Wörterbuch hinzufügen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6018"/> + <location filename="QScintilla/Editor.py" line="6028"/> <source>Ignore All</source> <translation>Alle ignorieren</translation> </message> @@ -7525,17 +7525,17 @@ <translation>Aus dem Wörterbuch entfernen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <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="2508"/> + <location filename="QScintilla/Editor.py" line="2511"/> <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="5332"/> + <location filename="QScintilla/Editor.py" line="5342"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation><p>Die Datei <b>{0}</b> wurde geändert, während sie in eric5 geöffnet war. Neu einlesen?</p></translation> </message> @@ -7560,57 +7560,57 @@ <translation>Warnungen löschen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>py3flakes Warning</source> <translation>py3flakes Warnung</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>No py3flakes warning message available.</source> <translation>Keine Py3flakes Warnung verfügbar.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <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="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Makro Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5024"/> + <location filename="QScintilla/Editor.py" line="5034"/> <source>Warning: {0}</source> <translation>Warnung: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5030"/> + <location filename="QScintilla/Editor.py" line="5040"/> <source>Error: {0}</source> <translation>Fehler: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5337"/> + <location filename="QScintilla/Editor.py" line="5347"/> <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="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <source>Activating Auto-Completion Provider</source> <translation>Aktivierung eines Providers für automatische Vervollständigungen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <source>Auto-completion provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation>Ein Providers 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="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Activating Calltip Provider</source> <translation>Aktivierung eines Providers für Calltips</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation>Ein Providers für Calltips kann nicht angebunden werden, da bereits ein anderer aktiv ist. Bitte überprüfen sie ihre Konfiguration.</translation> </message> @@ -9627,117 +9627,117 @@ <translation><b>Editor Stile einstellen</b></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="124"/> <source>Fonts</source> <translation>Schriftarten</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="130"/> <source>Select, whether the monospaced font should be used as default</source> <translation>Wähle, ob der Monospace Font als Standard benutzt werden soll</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="133"/> <source>Use monospaced as default</source> <translation>Benutze Monospace Font als Standard</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="143"/> <source>Default Text</source> <translation>Standardtext</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="79"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="156"/> <source>Press to select the default font for the editor's text</source> <translation>Drücken, um den Standardfont für den Editortext auszuwählen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="159"/> <source>Default Text Font</source> <translation>Standard Textfont</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="89"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="166"/> <source>Press to select the font to be used as the monospaced font</source> <translation>Drücken, um den Font auszuwählen, der als Monospace Font verwendet wird</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="92"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="169"/> <source>Monospaced Font</source> <translation>Monospace Font</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="403"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="480"/> <source>Press to select the font for the editor line numbers</source> <translation>Drücken, um den Font für die Zeilennummern des Editors zu wählen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="406"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="483"/> <source>Line Numbers Font</source> <translation>Zeilennummernfont</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="102"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="179"/> <source>Monospaced Text</source> <translation>Monospace Text</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="422"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="499"/> <source>2345</source> <translation>2345</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="118"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="195"/> <source>Margins</source> <translation>Ränder</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="126"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="203"/> <source>Select whether line numbers margin should be shown.</source> <translation>Wähle aus, ob die Zeilennummernspalte angezeigt werden soll.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="129"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="206"/> <source>Show Line Numbers Margin</source> <translation>Zeige Zeilennummernspalte</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="136"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="213"/> <source>Select whether the fold margin should be shown.</source> <translation>Wähle aus, ob die Faltungsspalte angezeigt werden soll.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="139"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="216"/> <source>Show Fold Margin</source> <translation>Zeige Faltungsspalte</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="160"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="237"/> <source>Linenumbers width:</source> <translation>Zeilennummernbreite:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="170"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> <source>Move to set the width of the linenumbers margin.</source> <translation>Verschiebe den Regler zur Wahl der Breite der Zeilennummernspalte.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="192"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="269"/> <source>Displays the selected width of the linenumbers margin.</source> <translation>Zeigt die ausgewählte Breite der Zeilennummernspalte an.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="212"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="289"/> <source>Folding style:</source> <translation>Faltungsstil:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="225"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="302"/> <source>Select the folding style to be used in the folding margin</source> <translation>Wähle den Faltungsstil aus, der in der Faltungsspalte verwendet werden soll</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="228"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="305"/> <source><b>Folding style</b> <p>Select the desired folding style to be used in the folding margin.</p> <p>The available styles are: @@ -9752,402 +9752,402 @@ <translation><b>Faltungsstil</b><p>Wähle den Faltungsstil aus, der in der Faltungsspalte verwendet werden soll.</p><p>Die verfügbaren Stile sind:<ul><li>Einfach - einfache Plus- und Minus-Zeichen</li><li>Kreis - eingekreiste Plus- und Minus-Zeichen</li><li>Kasten - eingerahmte Plus- und Minus-Zeichen</li><li>Baum mit Kreisen - Baumdarstellung mit abgerundeten Ecken und eingekreisten Plus- und Minus-Zeichen</li><li>Baum mit Kästen - Baumdarstellung mit rechtwinkligen Ecken und eingerahmten Plus- und Minus-Zeichen</li></ul></p></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="242"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="319"/> <source>Plain</source> <translation>Einfach</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="324"/> <source>Circled</source> <translation>Kreis</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="252"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="329"/> <source>Boxed</source> <translation>Kasten</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="334"/> <source>Circled Tree</source> <translation>Baum mit Kreisen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="262"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="339"/> <source>Boxed Tree</source> <translation>Baum mit Kästen</translation> </message> <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="530"/> + <source>Selection</source> + <translation>Auswahl</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="538"/> + <source>Select to use custom selection colours</source> + <translation>Auswählen, um eigen Farben für die Auswahl zu verwenden</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="541"/> + <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> + <translation><b>Eigene Farben für Auswahl</b><p>Diesen Eintrag auswählen, um eigene Farben für die Auswahl in Editor und Shell Fenstern zu verwenden. Die Farben für den Auswahlvorder- und -hintergrund werden auf der Farbkonfigurationsseite eingestellt.</p></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="544"/> + <source>Use custom selection colours</source> + <translation>Eigene Farben für Auswahl</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="551"/> + <source>Select, if selected text should be colourized by the lexer.</source> + <translation>Auswählen, um den ausgewählten Text durch den Lexer einzufärben.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="554"/> + <source>Colourize selected text</source> + <translation>Ausgewählten Text einfärben</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="561"/> + <source>Select to extend selection to end of line</source> + <translation>Auswählen, um die Auswahl bis zum Zeilenende zu erweitern</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="564"/> + <source>Extend selection to end of line</source> + <translation>Auswahl bis zum Zeilenende erweitern</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="575"/> + <source>Selection foreground:</source> + <translation>Vordergrund der Auswahl:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="588"/> + <source>Select the foreground colour for the selection.</source> + <translation>Wählt die Textfarbe für die Auswahl.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="598"/> + <source>Selection background:</source> + <translation>Hintergrund der Auswahl:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="611"/> + <source>Select the background colour for the selection.</source> + <translation>Wähle die Hintergrundfarbe für die Auswahl.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="626"/> + <source>Caret</source> + <translation>Cursor</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="632"/> + <source>Select, whether the caretline should be highlighted</source> + <translation>Auswählen, um die aktuelle Zeile hervorzuheben</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="635"/> + <source>Caretline visible</source> + <translation>Aktuelle Zeile hervorheben</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="644"/> + <source>Caret width:</source> + <translation>Cursorbreite:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="651"/> + <source>Select caret width (1, 2 or 3 pixels)</source> + <translation>Wähle die Cursorbreite (1, 2 oder 3 Pixel)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="684"/> + <source>Caret foreground:</source> + <translation>Cursorfarbe:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="697"/> + <source>Select the colour for the caret.</source> + <translation>Wähle die Farbe für die Einfügemarke.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="707"/> + <source>Caretline background:</source> + <translation>Hintergrund der aktuellen Zeile:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="720"/> + <source>Select the background colour for the line containing the caret.</source> + <translation>Wähle die Hintergrundfarbe für die Zeile mit der Einfügemarke.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="741"/> + <source>Current line marker:</source> + <translation>Markierung für aktuelle Zeile:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="754"/> + <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="764"/> + <source>Error line marker:</source> + <translation>Markierung für Fehlerzeile:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="777"/> + <source>Select the colour for the error line marker.</source> + <translation>Wähle die Farbe der Markierung für die Fehlerzeile.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="790"/> + <source>Braces</source> + <translation>Klammern</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="796"/> + <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="799"/> + <source>Highlight braces</source> + <translation>Klammerung hervorheben</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="806"/> + <source>Matched braces:</source> + <translation>Passende Klammer:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="819"/> + <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="829"/> + <source>Matched braces background:</source> + <translation>Hintergrund passende Klammer:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> + <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="858"/> + <source>Unmatched brace:</source> + <translation>Ungültige Klammer:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="865"/> + <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="881"/> + <source>Unmatched brace background:</source> + <translation>Hintergrund ungültige Klammer:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="888"/> + <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="901"/> + <source>End of Line</source> + <translation>Zeilenende</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="909"/> + <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="912"/> + <source>Show End of Line</source> + <translation>Zeige Zeilenendemarkierung</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="919"/> + <source>Select, whether long lines should be wrapped</source> + <translation>Auswählen, wenn lange Zeilen umbrochen werden sollen</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="922"/> + <source>Wrap long lines</source> + <translation>Lange Zeilen umbrechen</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="931"/> + <source>Edge Mode</source> + <translation>Seitenrand</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="975"/> + <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="985"/> + <source>Background colour:</source> + <translation>Hintergrundfarbe:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="998"/> + <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="1026"/> + <source>Displays the selected tab width.</source> + <translation>Zeigt die gewählte Tabulatorweite an.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1042"/> + <source>Column number:</source> + <translation>Seitenbreite:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <source>Mode:</source> + <translation>Modus:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1063"/> + <source>Disabled</source> + <translation>Ausgeschaltet</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1068"/> + <source>Draw Line</source> + <translation>Zeichne Linie</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <source>Change Background Colour</source> + <translation>Ändere Hintergrundfarbe</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1362"/> + <source>Various</source> + <translation>Verschiedenes</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1259"/> + <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="1262"/> + <source>Show Whitespace</source> + <translation>Zeige Leerzeichen</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1368"/> + <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="1371"/> + <source>Show minimal context menu</source> + <translation>Zeige minimales Kontextmenü</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="361"/> + <source>Margins foreground:</source> + <translation>Spaltenvordergrund:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="374"/> + <source>Select the foreground colour for the margins</source> + <translation>Wähle die Vordergrundfarbe der Spalten</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="384"/> + <source>Margins background:</source> + <translation>Spaltenhintergrund:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="397"/> + <source>Select the background colour for the margins</source> + <translation>Wähle die Hintergrundfarbe der Spalten</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="407"/> + <source>Foldmargin background:</source> + <translation>Hintergrund der Faltungsspalte:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="420"/> + <source>Select the background colour for the foldmargin</source> + <translation>Wähle die Hintergrundfarbe der Faltungsspalte</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="223"/> + <source>Select to show unified margins (like eric4 < 4.3.0)</source> + <translation>Auswählen, um zusammengefaßte Spalten anzuzeigen (wie eric4 < 4.3.0)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="226"/> + <source>Show unified margins</source> + <translation>Zeige zusammengefaßte Spalten</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="735"/> + <source>Debugging Line Markers</source> + <translation>Zeilenmarkierungen zum Debuggen</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1087"/> + <source>Zoom</source> + <translation>Vergrößerung</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1093"/> + <source>Initial zoom factor:</source> + <translation>Anfangsvergrößerungsfaktor:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> + <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="1125"/> + <source>Displays the selected initial zoom factor</source> + <translation>Zeigt den gewählten Anfangsvergrößerungsfaktor an</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="344"/> + <source>Arrow</source> + <translation>Pfeile</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="349"/> + <source>Arrow Tree</source> + <translation>Baum mit Pfeilen</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="430"/> + <source>Foldmarkers foreground:</source> + <translation>Faltmarkenvordergrund:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="443"/> + <source>Select the foreground colour of the foldmarkers</source> + <translation>Wähle die Vordergrundfarbe der Faltmarken</translation> + </message> + <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="453"/> - <source>Selection</source> - <translation>Auswahl</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="461"/> - <source>Select to use custom selection colours</source> - <translation>Auswählen, um eigen Farben für die Auswahl zu verwenden</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="464"/> - <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> - <translation><b>Eigene Farben für Auswahl</b><p>Diesen Eintrag auswählen, um eigene Farben für die Auswahl in Editor und Shell Fenstern zu verwenden. Die Farben für den Auswahlvorder- und -hintergrund werden auf der Farbkonfigurationsseite eingestellt.</p></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="467"/> - <source>Use custom selection colours</source> - <translation>Eigene Farben für Auswahl</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="474"/> - <source>Select, if selected text should be colourized by the lexer.</source> - <translation>Auswählen, um den ausgewählten Text durch den Lexer einzufärben.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="477"/> - <source>Colourize selected text</source> - <translation>Ausgewählten Text einfärben</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="484"/> - <source>Select to extend selection to end of line</source> - <translation>Auswählen, um die Auswahl bis zum Zeilenende zu erweitern</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="487"/> - <source>Extend selection to end of line</source> - <translation>Auswahl bis zum Zeilenende erweitern</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="498"/> - <source>Selection foreground:</source> - <translation>Vordergrund der Auswahl:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="511"/> - <source>Select the foreground colour for the selection.</source> - <translation>Wählt die Textfarbe für die Auswahl.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="521"/> - <source>Selection background:</source> - <translation>Hintergrund der Auswahl:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="534"/> - <source>Select the background colour for the selection.</source> - <translation>Wähle die Hintergrundfarbe für die Auswahl.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="549"/> - <source>Caret</source> - <translation>Cursor</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="555"/> - <source>Select, whether the caretline should be highlighted</source> - <translation>Auswählen, um die aktuelle Zeile hervorzuheben</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="558"/> - <source>Caretline visible</source> - <translation>Aktuelle Zeile hervorheben</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="567"/> - <source>Caret width:</source> - <translation>Cursorbreite:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="574"/> - <source>Select caret width (1, 2 or 3 pixels)</source> - <translation>Wähle die Cursorbreite (1, 2 oder 3 Pixel)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="607"/> - <source>Caret foreground:</source> - <translation>Cursorfarbe:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="620"/> - <source>Select the colour for the caret.</source> - <translation>Wähle die Farbe für die Einfügemarke.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="630"/> - <source>Caretline background:</source> - <translation>Hintergrund der aktuellen Zeile:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="643"/> - <source>Select the background colour for the line containing the caret.</source> - <translation>Wähle die Hintergrundfarbe für die Zeile mit der Einfügemarke.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="664"/> - <source>Current line marker:</source> - <translation>Markierung für aktuelle Zeile:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="677"/> - <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="687"/> - <source>Error line marker:</source> - <translation>Markierung für Fehlerzeile:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="700"/> - <source>Select the colour for the error line marker.</source> - <translation>Wähle die Farbe der Markierung für die Fehlerzeile.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="713"/> - <source>Braces</source> - <translation>Klammern</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> - <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="722"/> - <source>Highlight braces</source> - <translation>Klammerung hervorheben</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="729"/> - <source>Matched braces:</source> - <translation>Passende Klammer:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="742"/> - <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="752"/> - <source>Matched braces background:</source> - <translation>Hintergrund passende Klammer:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="765"/> - <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="781"/> - <source>Unmatched brace:</source> - <translation>Ungültige Klammer:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="788"/> - <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="804"/> - <source>Unmatched brace background:</source> - <translation>Hintergrund ungültige Klammer:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="811"/> - <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="824"/> - <source>End of Line</source> - <translation>Zeilenende</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="832"/> - <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="835"/> - <source>Show End of Line</source> - <translation>Zeige Zeilenendemarkierung</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> - <source>Select, whether long lines should be wrapped</source> - <translation>Auswählen, wenn lange Zeilen umbrochen werden sollen</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="845"/> - <source>Wrap long lines</source> - <translation>Lange Zeilen umbrechen</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="854"/> - <source>Edge Mode</source> - <translation>Seitenrand</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="898"/> - <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="908"/> - <source>Background colour:</source> - <translation>Hintergrundfarbe:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> - <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="949"/> - <source>Displays the selected tab width.</source> - <translation>Zeigt die gewählte Tabulatorweite an.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="965"/> - <source>Column number:</source> - <translation>Seitenbreite:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="972"/> - <source>Mode:</source> - <translation>Modus:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="986"/> - <source>Disabled</source> - <translation>Ausgeschaltet</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="991"/> - <source>Draw Line</source> - <translation>Zeichne Linie</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="996"/> - <source>Change Background Colour</source> - <translation>Ändere Hintergrundfarbe</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1285"/> - <source>Various</source> - <translation>Verschiedenes</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1182"/> - <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="1185"/> - <source>Show Whitespace</source> - <translation>Zeige Leerzeichen</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1291"/> - <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="1294"/> - <source>Show minimal context menu</source> - <translation>Zeige minimales Kontextmenü</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="284"/> - <source>Margins foreground:</source> - <translation>Spaltenvordergrund:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="297"/> - <source>Select the foreground colour for the margins</source> - <translation>Wähle die Vordergrundfarbe der Spalten</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="307"/> - <source>Margins background:</source> - <translation>Spaltenhintergrund:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="320"/> - <source>Select the background colour for the margins</source> - <translation>Wähle die Hintergrundfarbe der Spalten</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="330"/> - <source>Foldmargin background:</source> - <translation>Hintergrund der Faltungsspalte:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="343"/> - <source>Select the background colour for the foldmargin</source> - <translation>Wähle die Hintergrundfarbe der Faltungsspalte</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="146"/> - <source>Select to show unified margins (like eric4 < 4.3.0)</source> - <translation>Auswählen, um zusammengefaßte Spalten anzuzeigen (wie eric4 < 4.3.0)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="149"/> - <source>Show unified margins</source> - <translation>Zeige zusammengefaßte Spalten</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="658"/> - <source>Debugging Line Markers</source> - <translation>Zeilenmarkierungen zum Debuggen</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1010"/> - <source>Zoom</source> - <translation>Vergrößerung</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1016"/> - <source>Initial zoom factor:</source> - <translation>Anfangsvergrößerungsfaktor:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> - <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="1048"/> - <source>Displays the selected initial zoom factor</source> - <translation>Zeigt den gewählten Anfangsvergrößerungsfaktor an</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="267"/> - <source>Arrow</source> - <translation>Pfeile</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="272"/> - <source>Arrow Tree</source> - <translation>Baum mit Pfeilen</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="353"/> - <source>Foldmarkers foreground:</source> - <translation>Faltmarkenvordergrund:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="366"/> - <source>Select the foreground colour of the foldmarkers</source> - <translation>Wähle die Vordergrundfarbe der Faltmarken</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="376"/> <source>Foldmarkers background:</source> <translation>Faltmarkenhintergrund:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="466"/> <source>Select the background colour of the foldmarkers</source> <translation>Wähle die Hintergrundfarbe der Faltmarken</translation> </message> @@ -10157,95 +10157,130 @@ <translation><b>Hinweis:</b>Schriftarten und Farben der Syntax Hervorhebungen müssen auf der Seite "Syntax-Hervorhebung, Stile" konfiguriert werden.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1067"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> <source>Annotations</source> <translation>Anmerkungen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1150"/> <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="1076"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1153"/> <source>Show annotations</source> <translation>Anmerkungen anzeigen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1083"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1160"/> <source>Warnings</source> <translation>Warnungen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1134"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1211"/> <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="1137"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1214"/> <source>Foreground</source> <translation>Vordergrund</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1221"/> <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="1147"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1224"/> <source>Background</source> <translation>Hintergrund</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1189"/> <source>Warning: There might be an error.</source> <translation>Warnung: Es kann fehlerhaft sein.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1128"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1205"/> <source>Errors</source> <translation>Fehler</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1157"/> - <source>Error: There is an error.</source> - <translation>Fehler: Es ist fehlerhaft.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1176"/> - <source>Whitespace</source> - <translation>Leerzeichen</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1194"/> - <source>Whitespace size:</source> - <translation>Leerzeichengröße:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1201"/> - <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="1234"/> + <source>Error: There is an error.</source> + <translation>Fehler: Es ist fehlerhaft.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1253"/> + <source>Whitespace</source> + <translation>Leerzeichen</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1271"/> + <source>Whitespace size:</source> + <translation>Leerzeichengröße:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1278"/> + <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="1311"/> <source>Whitespace foreground:</source> <translation>Leerzeichenvordergrund:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1324"/> <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="1257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1334"/> <source>Whitespace background:</source> <translation>Leerzeichenhintergrund:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1270"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> <source>Select the background colour for visible whitespace</source> <translation>Wähle die Hintergrundfarbe für sichtbare Leerzeichen</translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <source>Select to set the colour of the edit area different to the default style</source> + <translation>Auswählen, um die Farbe des Editorbereiches unabhängig vom Standardstil zu setzen</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <source>Override edit area colours</source> + <translation>Farben des Editorbereiches überschreiben</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <source>Edit area foreground:</source> + <translation>Vordergrund:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <source>Select the foreground colour for the edit area.</source> + <translation>Wähle die Vordergrundfarbe des Editorbereiches.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="95"/> + <source>Edit area background:</source> + <translation>Hintergrund:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="111"/> + <source>Select the background colour for the edit area.</source> + <translation>Wähle die Hintergrundfarbe des Editorbereiches.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colours</source> + <translation>Farben</translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -24773,7 +24808,7 @@ <translation>Datei geladen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2278"/> + <location filename="QScintilla/MiniEditor.py" line="2282"/> <source>Untitled</source> <translation>Unbenannt</translation> </message> @@ -24788,22 +24823,22 @@ <translation>Mini Editor</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2318"/> + <location filename="QScintilla/MiniEditor.py" line="2322"/> <source>Select all</source> <translation>Alles auswählen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2319"/> + <location filename="QScintilla/MiniEditor.py" line="2323"/> <source>Deselect all</source> <translation>Auswahl aufheben</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2330"/> + <location filename="QScintilla/MiniEditor.py" line="2334"/> <source>Languages</source> <translation>Sprachen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2333"/> + <location filename="QScintilla/MiniEditor.py" line="2337"/> <source>No Language</source> <translation>Keine Sprache</translation> </message> @@ -24890,22 +24925,22 @@ <translation>Druckt die aktuelle Datei</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2244"/> + <location filename="QScintilla/MiniEditor.py" line="2248"/> <source>Printing...</source> <translation>Drucke...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2260"/> + <location filename="QScintilla/MiniEditor.py" line="2264"/> <source>Printing completed</source> <translation>Drucken beendet</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2262"/> + <location filename="QScintilla/MiniEditor.py" line="2266"/> <source>Error while printing</source> <translation>Fehler beim Drucken</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2265"/> + <location filename="QScintilla/MiniEditor.py" line="2269"/> <source>Printing aborted</source> <translation>Drucken abgebrochen</translation> </message> @@ -24930,27 +24965,27 @@ <translation><b>Seitenansicht</b><p>Zeift eine Seitenansicht der aktuellen Datei.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2352"/> + <location filename="QScintilla/MiniEditor.py" line="2356"/> <source>Guessed</source> <translation>Ermittelt</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2372"/> + <location filename="QScintilla/MiniEditor.py" line="2376"/> <source>Alternatives</source> <translation>Alternativen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2369"/> + <location filename="QScintilla/MiniEditor.py" line="2373"/> <source>Alternatives ({0})</source> <translation>Alternativen ({0})</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Pygments Lexer</source> <translation>Pygments Lexer</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Select the Pygments lexer to apply.</source> <translation>Wähle den anzuwendenden Pygments Lexer.</translation> </message> @@ -27321,27 +27356,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="971"/> + <location filename="Preferences/__init__.py" line="976"/> <source>Export Preferences</source> <translation>Einstellungen exportieren</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Import Preferences</source> <translation>Einstellungen importieren</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Properties File (*.ini);;All Files (*)</source> <translation>Properties Dateien (*.ini);;Alle Dateien (*)</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select Python2 Interpreter</source> <translation>Wähle den Python2 Interpreter</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select the Python2 interpreter to be used:</source> <translation>Wähle den zu verwendenden Python2 Interpreter aus:</translation> </message> @@ -33643,17 +33678,17 @@ <translation>Zurücksetzen und Löschen</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="544"/> + <location filename="QScintilla/Shell.py" line="551"/> <source>No.</source> <translation>Nr.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> @@ -33663,7 +33698,7 @@ <translation>Starten</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="546"/> + <location filename="QScintilla/Shell.py" line="553"/> <source>{0} on {1}, {2}</source> <translation>{0} auf {1}, {2}</translation> </message> @@ -33673,24 +33708,24 @@ <translation><b>Das Shell-Fenster</b><p>Dies ist ein Interpreter ihres Systems. Es ist derjenige der benutzt wird, um das zu untersuchende Programm auszuführen. Dies bedeutet, dass sie jedes Python Kommando ausführend können, auch während ihr Programm läuft.</p><p>Benutzen sie die Cursortasten während der Eingabe von Befehlen. Es existiert auch eine History-Funktion, die mit der Cursortasten hoch und runter bedient wird. Eine inkrementelle Suche wird gestartet, indem die Cursortasten hoch und runter nach Eingabe von Text gedrückt werden.</p><p>Die Shell hat einige spezielle Kommandos. 'reset' beendet den Interpreter und startet einen neuen. 'clear' löscht die Anzeige des Shell Fensters. 'start' wird benutzt, um die Sprache der Shell umzuschalten, und muß von einer unterstützten Sprache gefolgt werden. Unterstützte Sprachen werden durch 'languages' aufgelistet. Diese Befehle (Ausnahme 'languages') sind auch über das Kontextmenu verfügbar.</p><p>Nachdem Text eingegeben wurde, kann durch Drücken der Tab-Taste eine Liste möglicher Kommandozeilenvervollständigungen angezeigt werden. Der gewünschte Eintrag kann aus dieser Liste ausgewählt werden. Ist nur ein Eintrag vorhanden, so wird dieser automatisch eingefügt.</p><p>Im passiven Debugmodus ist die Shell nur dann verfügbar, wenn das zu debuggende Skript mit der IDE verbunden ist. Dies wird durch einen anderen Prompt und eine Anzeige im Fensterkopf dargestellt.</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1158"/> + <location filename="QScintilla/Shell.py" line="1165"/> <source>Shell language "{0}" not supported. </source> <translation>Die Shell Sprache "{0}" wird nicht unterstützt. </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="541"/> + <location filename="QScintilla/Shell.py" line="548"/> <source>Passive Debug Mode</source> <translation>Passiver Debugmodus</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="607"/> + <location filename="QScintilla/Shell.py" line="614"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="615"/> + <location filename="QScintilla/Shell.py" line="622"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> @@ -33710,17 +33745,17 @@ <translation>Zeige</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select History</source> <translation>Eintrag auswählen</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Wähle den auszuführenden Eintrag aus (aktuellster ist zuletzt dargestellt).</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="542"/> + <location filename="QScintilla/Shell.py" line="549"/> <source> Not connected</source> <translation> @@ -41642,12 +41677,12 @@ <translation>Zurücksetzen</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select History</source> <translation>Eintrag auswählen</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Wähle den auszuführenden Eintrag aus (aktuellster ist zuletzt dargestellt).</translation> </message> @@ -41657,7 +41692,7 @@ <translation>Einstellungen...</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="909"/> + <location filename="QScintilla/Terminal.py" line="916"/> <source>No shell has been configured.</source> <translation>Es ist keine Shell konfiguriert.</translation> </message>
--- a/i18n/eric5_en.ts Fri Jan 20 18:54:06 2012 +0100 +++ b/i18n/eric5_en.ts Sat Jan 21 15:01:53 2012 +0100 @@ -6730,7 +6730,7 @@ <context> <name>Editor</name> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source>Open File</source> <translation type="unfinished"></translation> </message> @@ -6820,7 +6820,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6014"/> + <location filename="QScintilla/Editor.py" line="6024"/> <source>Check spelling...</source> <translation type="unfinished"></translation> </message> @@ -7070,7 +7070,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4267"/> + <location filename="QScintilla/Editor.py" line="4277"/> <source>Enable breakpoint</source> <translation type="unfinished"></translation> </message> @@ -7185,362 +7185,362 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>Modification of Read Only file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <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="2186"/> + <location filename="QScintilla/Editor.py" line="2189"/> <source>Printing...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2203"/> + <location filename="QScintilla/Editor.py" line="2206"/> <source>Printing completed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2205"/> - <source>Error while printing</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="2208"/> + <source>Error while printing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2211"/> <source>Printing aborted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source>File Modified</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <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="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source>Save File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2508"/> + <location filename="QScintilla/Editor.py" line="2511"/> <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="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <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="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <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="4270"/> + <location filename="QScintilla/Editor.py" line="4280"/> <source>Disable breakpoint</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>Show Code Coverage Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4629"/> + <location filename="QScintilla/Editor.py" line="4639"/> <source>All lines have been covered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>There is no coverage file available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Please select a profile file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>Syntax Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>No syntax error message available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>py3flakes Warning</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>No py3flakes warning message available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Macro Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Select a macro name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5108"/> + <location filename="QScintilla/Editor.py" line="5118"/> <source>Load macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Macro files (*.macro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source>Error loading macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5122"/> + <location filename="QScintilla/Editor.py" line="5132"/> <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="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Save macro file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source>Save macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <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="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source>Error saving macro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <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="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Start Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Macro recording is already active. Start new?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Macro Recording</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Enter name of the macro:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5332"/> + <location filename="QScintilla/Editor.py" line="5342"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5341"/> + <location filename="QScintilla/Editor.py" line="5351"/> <source>File changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5479"/> + <location filename="QScintilla/Editor.py" line="5489"/> <source>{0} (ro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5614"/> + <location filename="QScintilla/Editor.py" line="5624"/> <source>Resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5616"/> + <location filename="QScintilla/Editor.py" line="5626"/> <source>Add file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5618"/> + <location filename="QScintilla/Editor.py" line="5628"/> <source>Add files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5620"/> + <location filename="QScintilla/Editor.py" line="5630"/> <source>Add aliased file...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5622"/> + <location filename="QScintilla/Editor.py" line="5632"/> <source>Add localized resource...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5625"/> + <location filename="QScintilla/Editor.py" line="5635"/> <source>Add resource frame</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5643"/> + <location filename="QScintilla/Editor.py" line="5653"/> <source>Add file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5659"/> + <location filename="QScintilla/Editor.py" line="5669"/> <source>Add file resources</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Add aliased file resource</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Package Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Include class attributes?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Imports Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Include imports from external modules?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Include module names?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6016"/> + <location filename="QScintilla/Editor.py" line="6026"/> <source>Add to dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6018"/> + <location filename="QScintilla/Editor.py" line="6028"/> <source>Ignore All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5024"/> + <location filename="QScintilla/Editor.py" line="5034"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5030"/> + <location filename="QScintilla/Editor.py" line="5040"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5337"/> + <location filename="QScintilla/Editor.py" line="5347"/> <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="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <source>Activating Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <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="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Activating Calltip Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> @@ -9556,112 +9556,112 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="124"/> <source>Fonts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="130"/> <source>Select, whether the monospaced font should be used as default</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="133"/> <source>Use monospaced as default</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="143"/> <source>Default Text</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="79"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="156"/> <source>Press to select the default font for the editor's text</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="159"/> <source>Default Text Font</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="89"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="166"/> <source>Press to select the font to be used as the monospaced font</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="92"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="169"/> <source>Monospaced Font</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="102"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="179"/> <source>Monospaced Text</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="118"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="195"/> <source>Margins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="126"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="203"/> <source>Select whether line numbers margin should be shown.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="129"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="206"/> <source>Show Line Numbers Margin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="136"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="213"/> <source>Select whether the fold margin should be shown.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="139"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="216"/> <source>Show Fold Margin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="146"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="223"/> <source>Select to show unified margins (like eric4 < 4.3.0)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="149"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="226"/> <source>Show unified margins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="160"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="237"/> <source>Linenumbers width:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="170"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> <source>Move to set the width of the linenumbers margin.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="192"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="269"/> <source>Displays the selected width of the linenumbers margin.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="212"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="289"/> <source>Folding style:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="225"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="302"/> <source>Select the folding style to be used in the folding margin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="228"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="305"/> <source><b>Folding style</b> <p>Select the desired folding style to be used in the folding margin.</p> <p>The available styles are: @@ -9676,407 +9676,407 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="242"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="319"/> <source>Plain</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="324"/> <source>Circled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="252"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="329"/> <source>Boxed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="334"/> <source>Circled Tree</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="262"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="339"/> <source>Boxed Tree</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="267"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="344"/> <source>Arrow</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="272"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="349"/> <source>Arrow Tree</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="284"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="361"/> <source>Margins foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="297"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="374"/> <source>Select the foreground colour for the margins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="307"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="384"/> <source>Margins background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="320"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="397"/> <source>Select the background colour for the margins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="330"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="407"/> <source>Foldmargin background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="343"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="420"/> <source>Select the background colour for the foldmargin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="353"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="430"/> <source>Foldmarkers foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="366"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="443"/> <source>Select the foreground colour of the foldmarkers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="376"/> - <source>Foldmarkers background:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="389"/> - <source>Select the background colour of the foldmarkers</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="403"/> - <source>Press to select the font for the editor line numbers</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="406"/> - <source>Line Numbers Font</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="422"/> - <source>2345</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="453"/> + <source>Foldmarkers background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="466"/> + <source>Select the background colour of the foldmarkers</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="480"/> + <source>Press to select the font for the editor line numbers</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="483"/> + <source>Line Numbers Font</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="499"/> + <source>2345</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="530"/> <source>Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="461"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="538"/> <source>Select to use custom selection colours</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="464"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="541"/> <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="467"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="544"/> <source>Use custom selection colours</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="474"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="551"/> <source>Select, if selected text should be colourized by the lexer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="477"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="554"/> <source>Colourize selected text</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="484"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="561"/> <source>Select to extend selection to end of line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="487"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="564"/> <source>Extend selection to end of line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="498"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="575"/> <source>Selection foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="511"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="588"/> <source>Select the foreground colour for the selection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="521"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="598"/> <source>Selection background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="534"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="611"/> <source>Select the background colour for the selection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="549"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="626"/> <source>Caret</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="555"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="632"/> <source>Select, whether the caretline should be highlighted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="558"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="635"/> <source>Caretline visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="567"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="644"/> <source>Caret width:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="574"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="651"/> <source>Select caret width (1, 2 or 3 pixels)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="607"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="684"/> <source>Caret foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="620"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="697"/> <source>Select the colour for the caret.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="630"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="707"/> <source>Caretline background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="643"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="720"/> <source>Select the background colour for the line containing the caret.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="658"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="735"/> <source>Debugging Line Markers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="664"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="741"/> <source>Current line marker:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="677"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="754"/> <source>Select the colour for the current line marker.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="687"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="764"/> <source>Error line marker:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="700"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="777"/> <source>Select the colour for the error line marker.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="713"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="790"/> <source>Braces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="796"/> <source>Select whether matching and bad braces shall be highlighted.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="722"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="799"/> <source>Highlight braces</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="729"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="806"/> <source>Matched braces:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="742"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="819"/> <source>Select the colour for highlighting matching braces.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="752"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="829"/> <source>Matched braces background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="765"/> - <source>Select the background colour for highlighting matching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="781"/> - <source>Unmatched brace:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="788"/> - <source>Select the colour for highlighting nonmatching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="804"/> - <source>Unmatched brace background:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="811"/> - <source>Select the background colour for highlighting nonmatching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="824"/> - <source>End of Line</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="832"/> - <source>Select whether end of line shall be shown</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="835"/> - <source>Show End of Line</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> + <source>Select the background colour for highlighting matching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="858"/> + <source>Unmatched brace:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="865"/> + <source>Select the colour for highlighting nonmatching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="881"/> + <source>Unmatched brace background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="888"/> + <source>Select the background colour for highlighting nonmatching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="901"/> + <source>End of Line</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="909"/> + <source>Select whether end of line shall be shown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="912"/> + <source>Show End of Line</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="919"/> <source>Select, whether long lines should be wrapped</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="845"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="922"/> <source>Wrap long lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="854"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="931"/> <source>Edge Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="898"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="975"/> <source>Select the colour for the edge marker.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="908"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="985"/> <source>Background colour:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="998"/> <source>Move to set the edge column.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="949"/> - <source>Displays the selected tab width.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="965"/> - <source>Column number:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="972"/> - <source>Mode:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="986"/> - <source>Disabled</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="991"/> - <source>Draw Line</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="996"/> - <source>Change Background Colour</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1010"/> - <source>Zoom</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1016"/> - <source>Initial zoom factor:</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> + <source>Displays the selected tab width.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1042"/> + <source>Column number:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <source>Mode:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1063"/> + <source>Disabled</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1068"/> + <source>Draw Line</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <source>Change Background Colour</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1087"/> + <source>Zoom</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1093"/> + <source>Initial zoom factor:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> <source>Move to set the initial zoom factor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1048"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1125"/> <source>Displays the selected initial zoom factor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1285"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1362"/> <source>Various</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1182"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1259"/> <source>Select whether whitspace characters shall be shown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1185"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1262"/> <source>Show Whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1291"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1368"/> <source>Select to show a minimalistic context menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1294"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1371"/> <source>Show minimal context menu</source> <translation type="unfinished"></translation> </message> @@ -10086,95 +10086,130 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1067"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> <source>Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1150"/> <source>Select to enable the display of annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1153"/> <source>Show annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1083"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1160"/> <source>Warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1134"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1211"/> <source>Press to select the foreground colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1137"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1214"/> <source>Foreground</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1221"/> <source>Press to select the background colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1147"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1224"/> <source>Background</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1189"/> <source>Warning: There might be an error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1128"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1205"/> <source>Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1157"/> - <source>Error: There is an error.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1176"/> - <source>Whitespace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1194"/> - <source>Whitespace size:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1201"/> - <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="1234"/> + <source>Error: There is an error.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1253"/> + <source>Whitespace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1271"/> + <source>Whitespace size:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1278"/> + <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="1311"/> <source>Whitespace foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1324"/> <source>Select the foreground colour for visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1334"/> <source>Whitespace background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1270"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> <source>Select the background colour for visible whitespace</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <source>Select to set the colour of the edit area different to the default style</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <source>Override edit area colours</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <source>Edit area foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <source>Select the foreground colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="95"/> + <source>Edit area background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="111"/> + <source>Select the background colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colours</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -24778,7 +24813,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2278"/> + <location filename="QScintilla/MiniEditor.py" line="2282"/> <source>Untitled</source> <translation type="unfinished"></translation> </message> @@ -24793,67 +24828,67 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2244"/> + <location filename="QScintilla/MiniEditor.py" line="2248"/> <source>Printing...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2260"/> + <location filename="QScintilla/MiniEditor.py" line="2264"/> <source>Printing completed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2262"/> + <location filename="QScintilla/MiniEditor.py" line="2266"/> <source>Error while printing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2265"/> + <location filename="QScintilla/MiniEditor.py" line="2269"/> <source>Printing aborted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2318"/> + <location filename="QScintilla/MiniEditor.py" line="2322"/> <source>Select all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2319"/> + <location filename="QScintilla/MiniEditor.py" line="2323"/> <source>Deselect all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2330"/> + <location filename="QScintilla/MiniEditor.py" line="2334"/> <source>Languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2333"/> + <location filename="QScintilla/MiniEditor.py" line="2337"/> <source>No Language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2352"/> + <location filename="QScintilla/MiniEditor.py" line="2356"/> <source>Guessed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2372"/> + <location filename="QScintilla/MiniEditor.py" line="2376"/> <source>Alternatives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2369"/> + <location filename="QScintilla/MiniEditor.py" line="2373"/> <source>Alternatives ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Pygments Lexer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished"></translation> </message> @@ -27168,27 +27203,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="971"/> + <location filename="Preferences/__init__.py" line="976"/> <source>Export Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Import Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -33369,59 +33404,59 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select the history entry to execute (most recent shown last).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="541"/> + <location filename="QScintilla/Shell.py" line="548"/> <source>Passive Debug Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="542"/> + <location filename="QScintilla/Shell.py" line="549"/> <source> Not connected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="544"/> + <location filename="QScintilla/Shell.py" line="551"/> <source>No.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="546"/> + <location filename="QScintilla/Shell.py" line="553"/> <source>{0} on {1}, {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="607"/> + <location filename="QScintilla/Shell.py" line="614"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="615"/> + <location filename="QScintilla/Shell.py" line="622"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1158"/> + <location filename="QScintilla/Shell.py" line="1165"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source>Drop Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> @@ -41243,17 +41278,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select the history entry to execute (most recent shown last).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="909"/> + <location filename="QScintilla/Terminal.py" line="916"/> <source>No shell has been configured.</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_es.ts Fri Jan 20 18:54:06 2012 +0100 +++ b/i18n/eric5_es.ts Sat Jan 21 15:01:53 2012 +0100 @@ -6849,7 +6849,7 @@ <context> <name>Editor</name> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source>Open File</source> <translation>Abrir archivo</translation> </message> @@ -7124,7 +7124,7 @@ <translation>Editar punto de interrupción...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4267"/> + <location filename="QScintilla/Editor.py" line="4277"/> <source>Enable breakpoint</source> <translation>Activar punto de interrupción</translation> </message> @@ -7184,162 +7184,162 @@ <translation>No se ha proporcionado un formato de exportación. Abortando...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>Modification of Read Only file</source> <translation>Modificación de un archivo de solo lectura</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Usted está intentando modificar un archivo solo lectura. Por favor guarde en otro archivo primero.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2186"/> + <location filename="QScintilla/Editor.py" line="2189"/> <source>Printing...</source> <translation>Imprimiendo...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2203"/> + <location filename="QScintilla/Editor.py" line="2206"/> <source>Printing completed</source> <translation>Impresión completa</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2205"/> - <source>Error while printing</source> - <translation>Error al imprimir</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="2208"/> + <source>Error while printing</source> + <translation>Error al imprimir</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2211"/> <source>Printing aborted</source> <translation>Impresión cancelada</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source>File Modified</source> <translation>Archivo modificado</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source>Save File</source> <translation>Guardar archivo</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion</source> <translation>Autocompletar</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Autocompletar no está disponible porque no hay origen de datos para autocompletar.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4270"/> + <location filename="QScintilla/Editor.py" line="4280"/> <source>Disable breakpoint</source> <translation>Deshabilitar punto de interrupción</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Code Coverage</source> <translation>Cobertura de codigo</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Please select a coverage file</source> <translation>Por favor seleccione un archivo de cobertura</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>Show Code Coverage Annotations</source> <translation>Mostrar Anotaciones de Cobertura de Código</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4629"/> + <location filename="QScintilla/Editor.py" line="4639"/> <source>All lines have been covered.</source> <translation>Todas las líneas han sido cubiertas.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>There is no coverage file available.</source> <translation>No hay archivo de cobertura disponible.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Profile Data</source> <translation>Datos de profiling</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Please select a profile file</source> <translation>Por favor seleccione un archivo de profiling</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>Syntax Error</source> <translation>Error de sintaxis</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>No syntax error message available.</source> <translation>No hay mensajes de error de sintaxis disponibles.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Macro Name</source> <translation>Nombre de macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Select a macro name:</source> <translation>Seleccione un nombre de macro:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5108"/> + <location filename="QScintilla/Editor.py" line="5118"/> <source>Load macro file</source> <translation>Cargar archivo de macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Macro files (*.macro)</source> <translation>Archivos de Macro (*.macro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source>Error loading macro</source> <translation>Error al cargar macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Save macro file</source> <translation>Guardar archivo de macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source>Save macro</source> <translation>Guardar macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source>Error saving macro</source> <translation>Error al guardar macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Start Macro Recording</source> <translation>Comenzar grabación de macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Macro recording is already active. Start new?</source> <translation>Grabación de macro ya está activada. ¿Comenzar una nueva?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Macro Recording</source> <translation>Grabando macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Enter name of the macro:</source> <translation>Introduzca el nombre de la macro:</translation> </message> @@ -7349,87 +7349,87 @@ <translation type="obsolete"><br><b>Advertencia:</b> Perderá los cambios si lo reabre.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5341"/> + <location filename="QScintilla/Editor.py" line="5351"/> <source>File changed</source> <translation>Archivo modificado</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source>Drop Error</source> <translation>Error al soltar</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5614"/> + <location filename="QScintilla/Editor.py" line="5624"/> <source>Resources</source> <translation>Recursos</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5616"/> + <location filename="QScintilla/Editor.py" line="5626"/> <source>Add file...</source> <translation>Añadir archivo...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5618"/> + <location filename="QScintilla/Editor.py" line="5628"/> <source>Add files...</source> <translation>Añadir archivos...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5620"/> + <location filename="QScintilla/Editor.py" line="5630"/> <source>Add aliased file...</source> <translation>Añadir archivo con un alias...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5622"/> + <location filename="QScintilla/Editor.py" line="5632"/> <source>Add localized resource...</source> <translation>Añadir recursos localizados...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5625"/> + <location filename="QScintilla/Editor.py" line="5635"/> <source>Add resource frame</source> <translation>Añadir ventana de recursos</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5643"/> + <location filename="QScintilla/Editor.py" line="5653"/> <source>Add file resource</source> <translation>Añadir archivo de recursos</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5659"/> + <location filename="QScintilla/Editor.py" line="5669"/> <source>Add file resources</source> <translation>Añadir archivo de recursos</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Add aliased file resource</source> <translation>Añadir archivo de recursos con un alias</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Package Diagram</source> <translation>Digrama de paquetes</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Include class attributes?</source> <translation>¿Incluir atributos de clase?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Imports Diagram</source> <translation>Diagrama de imports</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Include imports from external modules?</source> <translation>¿Incluir los imports de módulos externos?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Application Diagram</source> <translation>Diagrama de aplicación</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Include module names?</source> <translation>¿Incluir nombres de módulos?</translation> </message> @@ -7504,7 +7504,7 @@ <translation>Seleccionar el Analizador Léxico de Pygments.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6014"/> + <location filename="QScintilla/Editor.py" line="6024"/> <source>Check spelling...</source> <translation>Corrección ortográfica...</translation> </message> @@ -7514,12 +7514,12 @@ <translation>Corrección ortográfica de la selección...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6016"/> + <location filename="QScintilla/Editor.py" line="6026"/> <source>Add to dictionary</source> <translation>Añadir al diccionario</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6018"/> + <location filename="QScintilla/Editor.py" line="6028"/> <source>Ignore All</source> <translation>Ignorar Todo</translation> </message> @@ -7544,52 +7544,52 @@ <translation>Alternativas ({0})</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>El archivo <b>{0}</b> tiene cambios sin guardar.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>El archivo<b>{0}</b> no puede ser abierto.<br />Causa: {1}</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2508"/> + <location filename="QScintilla/Editor.py" line="2511"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>El archivo <b>{0}</b> no puede ser guardado.<br>Causa: {1}</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5122"/> + <location filename="QScintilla/Editor.py" line="5132"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de macro <b>{0}</b> no se puede leer.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>El archivo de macro <b>{0}</b> está dañado</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de macro <b>{0}</b> no se puede escribir.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5332"/> + <location filename="QScintilla/Editor.py" line="5342"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation><p>El archivo <b>{0}</b> ha cambiado mientras estaba abierto en eric5. ¿Desea volver a cargarlo?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5479"/> + <location filename="QScintilla/Editor.py" line="5489"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> no es un archivo.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Alias for file <b>{0}</b>:</source> <translation>Alias para el archivo <b>{0}</b>:</translation> </message> @@ -7614,57 +7614,57 @@ <translation>Limpiar advertencias</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>py3flakes Warning</source> <translation>Advertencia de py3flakes</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>No py3flakes warning message available.</source> <translation>No hay un mensaje de advertencia de py3flakes disponible.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>El archivo <b>{0}</b> ya existe. ¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>El archivo de macro <b>{0}</b> ya existe. ¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5024"/> + <location filename="QScintilla/Editor.py" line="5034"/> <source>Warning: {0}</source> <translation>Advertencia: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5030"/> + <location filename="QScintilla/Editor.py" line="5040"/> <source>Error: {0}</source> <translation>Error: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5337"/> + <location filename="QScintilla/Editor.py" line="5347"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Advertencia:</b> Perderá los cambios si lo reabre.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <source>Activating Auto-Completion Provider</source> <translation>Activando el Proveedor de Autocompletado</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <source>Auto-completion provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation>El proveedor de autocompletado no puede ser conectado porque ya hay uno activo. Por favor revise la configuración.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Activating Calltip Provider</source> <translation>Activando Proveedor de Calltip</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation>El proveedor de calltip no puede ser conectado porque ya hay uno activo. Por favor revise la configuración.</translation> </message> @@ -9696,117 +9696,117 @@ <translation><b>Configurar estilos del editor</b></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="124"/> <source>Fonts</source> <translation>Fuentes</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="130"/> <source>Select, whether the monospaced font should be used as default</source> <translation>Seleccionar si la fuente monoespacio se debe usar por defecto</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="133"/> <source>Use monospaced as default</source> <translation>Usar monoespacio por defecto</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="143"/> <source>Default Text</source> <translation>Texto por Defecto</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="79"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="156"/> <source>Press to select the default font for the editor's text</source> <translation>Pulse para seleccionar la fuente por defecto del editor de texto</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="159"/> <source>Default Text Font</source> <translation>Fuente de texto por defecto</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="89"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="166"/> <source>Press to select the font to be used as the monospaced font</source> <translation>Pulse para seleccionar la fuente para utilizar como fuente monoespacio</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="92"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="169"/> <source>Monospaced Font</source> <translation>Fuente Monoespacio</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="403"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="480"/> <source>Press to select the font for the editor line numbers</source> <translation>Pulse para seleccionar la fuente para números de línea en el editor</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="406"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="483"/> <source>Line Numbers Font</source> <translation>Fuente para números de Línea</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="102"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="179"/> <source>Monospaced Text</source> <translation>Texto Monoespaciado</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="422"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="499"/> <source>2345</source> <translation>2345</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="118"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="195"/> <source>Margins</source> <translation>Márgenes</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="126"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="203"/> <source>Select whether line numbers margin should be shown.</source> <translation>Seleccionar si el margen para números de línea debe ser mostrado.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="129"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="206"/> <source>Show Line Numbers Margin</source> <translation>Mostrar margen para números de Línea</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="136"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="213"/> <source>Select whether the fold margin should be shown.</source> <translation>Seleccionar si el margen de plegado debe ser mostrado.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="139"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="216"/> <source>Show Fold Margin</source> <translation>Mostrar margen de plegado</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="160"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="237"/> <source>Linenumbers width:</source> <translation>Ancho de números de línea:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="170"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> <source>Move to set the width of the linenumbers margin.</source> <translation>Mover para establecer la anchura del margen para números de línea.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="192"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="269"/> <source>Displays the selected width of the linenumbers margin.</source> <translation>Muestra la anchura seleccionada para el margen de números de línea.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="212"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="289"/> <source>Folding style:</source> <translation>Estilo de plegado:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="225"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="302"/> <source>Select the folding style to be used in the folding margin</source> <translation>Seleccionar el estilo de plegado a utilizar en el margen de plegado</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="228"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="305"/> <source><b>Folding style</b> <p>Select the desired folding style to be used in the folding margin.</p> <p>The available styles are: @@ -9831,402 +9831,402 @@ </p></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="242"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="319"/> <source>Plain</source> <translation>Plano</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="324"/> <source>Circled</source> <translation>Con círculo</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="252"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="329"/> <source>Boxed</source> <translation>Con Caja</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="334"/> <source>Circled Tree</source> <translation>Árbol con Círculo</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="262"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="339"/> <source>Boxed Tree</source> <translation>Árbol con Caja</translation> </message> <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="530"/> + <source>Selection</source> + <translation>Selección</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="538"/> + <source>Select to use custom selection colours</source> + <translation>Seleccione para usar colores personalizados para la selección</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="541"/> + <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> + <translation><b>Usar colores personalizados para la selección</b><p>Seleccione esta entrada para utilizar colores personalizados de selección en las ventanas de edición y shell. Los colores para el primer plano y para el fondo se definen en la página de colores</p></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="544"/> + <source>Use custom selection colours</source> + <translation>Usar colores personalizados para la selección</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="551"/> + <source>Select, if selected text should be colourized by the lexer.</source> + <translation>Seleccione si el texto seleccionado debe ser coloreado por el analizador léxico.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="554"/> + <source>Colourize selected text</source> + <translation>Colorizar texto seleccionado</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="561"/> + <source>Select to extend selection to end of line</source> + <translation>Seleccionar para extender la selección hasta el final de la línea</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="564"/> + <source>Extend selection to end of line</source> + <translation>Extender selección hasta el final de la línea</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="575"/> + <source>Selection foreground:</source> + <translation>Primer plano de la selección:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="588"/> + <source>Select the foreground colour for the selection.</source> + <translation>Seleccionar el color de primer plano para la selección.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="598"/> + <source>Selection background:</source> + <translation>Color de fondo de la selección:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="611"/> + <source>Select the background colour for the selection.</source> + <translation>Seleccione el color de fondo para la selección.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="626"/> + <source>Caret</source> + <translation>Punto de inserción de texto</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="632"/> + <source>Select, whether the caretline should be highlighted</source> + <translation>Seleccionar si la línea con el punto de inserción de texto debe ser resaltada</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="635"/> + <source>Caretline visible</source> + <translation>Punto de inserción de texto visible</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="644"/> + <source>Caret width:</source> + <translation>Anchura del punto de inserción de texto:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="651"/> + <source>Select caret width (1, 2 or 3 pixels)</source> + <translation>Seleccionar ancho del punto de inserción de texto (1, 2 o 3 píxeles)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="684"/> + <source>Caret foreground:</source> + <translation>Color de primer plano para el punto de inserción de texto:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="697"/> + <source>Select the colour for the caret.</source> + <translation>Seleccionar el color para el punto de inserción de texto.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="707"/> + <source>Caretline background:</source> + <translation>Color de fondo para la línea con el punto de inserción de texto:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="720"/> + <source>Select the background colour for the line containing the caret.</source> + <translation>Seleccionar el color de fondo para la línea que contiene el punto de inserción de texto.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="741"/> + <source>Current line marker:</source> + <translation>Marcador de línea actual:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="754"/> + <source>Select the colour for the current line marker.</source> + <translation>Seleccionar el color para el marcador de línea actual.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="764"/> + <source>Error line marker:</source> + <translation>Marcador de línea con error:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="777"/> + <source>Select the colour for the error line marker.</source> + <translation>Seleccionar el color para el marcador de línea con error.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="790"/> + <source>Braces</source> + <translation>Llaves ( '{' y '}' )</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="796"/> + <source>Select whether matching and bad braces shall be highlighted.</source> + <translation>Seleccionar si las llaves coincidentes y las que no se han de resaltar.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="799"/> + <source>Highlight braces</source> + <translation>Resaltar llaves</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="806"/> + <source>Matched braces:</source> + <translation>Llaves coincidentes:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="819"/> + <source>Select the colour for highlighting matching braces.</source> + <translation>Seleccione el color de resaltado de llaves coincidentes.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="829"/> + <source>Matched braces background:</source> + <translation>Fondo de llaves coincidentes:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> + <source>Select the background colour for highlighting matching braces.</source> + <translation>Seleccione el color de fondo para resaltar llaves coincidentes.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="858"/> + <source>Unmatched brace:</source> + <translation>Llave sin coincidencia:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="865"/> + <source>Select the colour for highlighting nonmatching braces.</source> + <translation>Seleccione el color de resaltado de llaves sin coincidencia.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="881"/> + <source>Unmatched brace background:</source> + <translation>Fondo de llaves sin coincidencia:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="888"/> + <source>Select the background colour for highlighting nonmatching braces.</source> + <translation>Seleccione el color de fondo para resaltar llaves sin coincidencia.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="901"/> + <source>End of Line</source> + <translation>Final de Línea</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="909"/> + <source>Select whether end of line shall be shown</source> + <translation>Seleccionar si el final de línea debe ser mostrado</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="912"/> + <source>Show End of Line</source> + <translation>Mostrar final de línea</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="919"/> + <source>Select, whether long lines should be wrapped</source> + <translation>Seleccionar si las líneas largas se deben partir</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="922"/> + <source>Wrap long lines</source> + <translation>Partir líneas largas</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="931"/> + <source>Edge Mode</source> + <translation>Modo del Borde</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="975"/> + <source>Select the colour for the edge marker.</source> + <translation>Seleccionar el color para el marcador del borde.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="985"/> + <source>Background colour:</source> + <translation>Color de fondo:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="998"/> + <source>Move to set the edge column.</source> + <translation>Mover para establecer la columna del borde.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> + <source>Displays the selected tab width.</source> + <translation>Muestra el ancho de tabulación seleccionado.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1042"/> + <source>Column number:</source> + <translation>Número de columnas:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <source>Mode:</source> + <translation>Modo:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1063"/> + <source>Disabled</source> + <translation>Deshabilitado</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1068"/> + <source>Draw Line</source> + <translation>Dibujar línea</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <source>Change Background Colour</source> + <translation>Cambiar color de fondo</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1362"/> + <source>Various</source> + <translation>Varios</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1259"/> + <source>Select whether whitspace characters shall be shown</source> + <translation>Seleccionar si los caracteres de espacio en blanco deben ser mostrados</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1262"/> + <source>Show Whitespace</source> + <translation>Mostrar espacios en blanco</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1368"/> + <source>Select to show a minimalistic context menu</source> + <translation>Seleccionar mostrar un menú de contexto minimalista</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1371"/> + <source>Show minimal context menu</source> + <translation>Mostrar menú de contexto minimalista</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="361"/> + <source>Margins foreground:</source> + <translation>Color de primer plano para márgenes:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="374"/> + <source>Select the foreground colour for the margins</source> + <translation>Seleccionar el color de primer plano para los márgenes</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="384"/> + <source>Margins background:</source> + <translation>Color de fondo para los márgenes:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="397"/> + <source>Select the background colour for the margins</source> + <translation>Seleccione el color de fondo para los márgenes</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="407"/> + <source>Foldmargin background:</source> + <translation>Color de fondo para los pliegues de los márgenes:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="420"/> + <source>Select the background colour for the foldmargin</source> + <translation>Seleccione el color de fondo para los pliegues de los márgenes</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="223"/> + <source>Select to show unified margins (like eric4 < 4.3.0)</source> + <translation>Seleccionar para mostrar márgenes unificados (como eric4 < 4.3.0)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="226"/> + <source>Show unified margins</source> + <translation>Mostrar márgenes unificados</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="735"/> + <source>Debugging Line Markers</source> + <translation>Marcadores de Línea de Depuración</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1087"/> + <source>Zoom</source> + <translation>Zoom</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1093"/> + <source>Initial zoom factor:</source> + <translation>Factor de zoom inicial:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> + <source>Move to set the initial zoom factor</source> + <translation>Mover para establecer el factor de zoom inicial</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1125"/> + <source>Displays the selected initial zoom factor</source> + <translation>Muestra el factor de zoom inicial seleccionado</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="344"/> + <source>Arrow</source> + <translation>Flecha</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="349"/> + <source>Arrow Tree</source> + <translation>Árbol de flechas</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="430"/> + <source>Foldmarkers foreground:</source> + <translation>Color de primer plano para marcadores de plegado:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="443"/> + <source>Select the foreground colour of the foldmarkers</source> + <translation>Seleccionar el color de primer plano para los marcadores de plegado</translation> + </message> + <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="453"/> - <source>Selection</source> - <translation>Selección</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="461"/> - <source>Select to use custom selection colours</source> - <translation>Seleccione para usar colores personalizados para la selección</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="464"/> - <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> - <translation><b>Usar colores personalizados para la selección</b><p>Seleccione esta entrada para utilizar colores personalizados de selección en las ventanas de edición y shell. Los colores para el primer plano y para el fondo se definen en la página de colores</p></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="467"/> - <source>Use custom selection colours</source> - <translation>Usar colores personalizados para la selección</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="474"/> - <source>Select, if selected text should be colourized by the lexer.</source> - <translation>Seleccione si el texto seleccionado debe ser coloreado por el analizador léxico.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="477"/> - <source>Colourize selected text</source> - <translation>Colorizar texto seleccionado</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="484"/> - <source>Select to extend selection to end of line</source> - <translation>Seleccionar para extender la selección hasta el final de la línea</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="487"/> - <source>Extend selection to end of line</source> - <translation>Extender selección hasta el final de la línea</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="498"/> - <source>Selection foreground:</source> - <translation>Primer plano de la selección:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="511"/> - <source>Select the foreground colour for the selection.</source> - <translation>Seleccionar el color de primer plano para la selección.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="521"/> - <source>Selection background:</source> - <translation>Color de fondo de la selección:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="534"/> - <source>Select the background colour for the selection.</source> - <translation>Seleccione el color de fondo para la selección.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="549"/> - <source>Caret</source> - <translation>Punto de inserción de texto</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="555"/> - <source>Select, whether the caretline should be highlighted</source> - <translation>Seleccionar si la línea con el punto de inserción de texto debe ser resaltada</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="558"/> - <source>Caretline visible</source> - <translation>Punto de inserción de texto visible</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="567"/> - <source>Caret width:</source> - <translation>Anchura del punto de inserción de texto:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="574"/> - <source>Select caret width (1, 2 or 3 pixels)</source> - <translation>Seleccionar ancho del punto de inserción de texto (1, 2 o 3 píxeles)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="607"/> - <source>Caret foreground:</source> - <translation>Color de primer plano para el punto de inserción de texto:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="620"/> - <source>Select the colour for the caret.</source> - <translation>Seleccionar el color para el punto de inserción de texto.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="630"/> - <source>Caretline background:</source> - <translation>Color de fondo para la línea con el punto de inserción de texto:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="643"/> - <source>Select the background colour for the line containing the caret.</source> - <translation>Seleccionar el color de fondo para la línea que contiene el punto de inserción de texto.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="664"/> - <source>Current line marker:</source> - <translation>Marcador de línea actual:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="677"/> - <source>Select the colour for the current line marker.</source> - <translation>Seleccionar el color para el marcador de línea actual.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="687"/> - <source>Error line marker:</source> - <translation>Marcador de línea con error:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="700"/> - <source>Select the colour for the error line marker.</source> - <translation>Seleccionar el color para el marcador de línea con error.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="713"/> - <source>Braces</source> - <translation>Llaves ( '{' y '}' )</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> - <source>Select whether matching and bad braces shall be highlighted.</source> - <translation>Seleccionar si las llaves coincidentes y las que no se han de resaltar.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="722"/> - <source>Highlight braces</source> - <translation>Resaltar llaves</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="729"/> - <source>Matched braces:</source> - <translation>Llaves coincidentes:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="742"/> - <source>Select the colour for highlighting matching braces.</source> - <translation>Seleccione el color de resaltado de llaves coincidentes.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="752"/> - <source>Matched braces background:</source> - <translation>Fondo de llaves coincidentes:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="765"/> - <source>Select the background colour for highlighting matching braces.</source> - <translation>Seleccione el color de fondo para resaltar llaves coincidentes.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="781"/> - <source>Unmatched brace:</source> - <translation>Llave sin coincidencia:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="788"/> - <source>Select the colour for highlighting nonmatching braces.</source> - <translation>Seleccione el color de resaltado de llaves sin coincidencia.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="804"/> - <source>Unmatched brace background:</source> - <translation>Fondo de llaves sin coincidencia:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="811"/> - <source>Select the background colour for highlighting nonmatching braces.</source> - <translation>Seleccione el color de fondo para resaltar llaves sin coincidencia.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="824"/> - <source>End of Line</source> - <translation>Final de Línea</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="832"/> - <source>Select whether end of line shall be shown</source> - <translation>Seleccionar si el final de línea debe ser mostrado</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="835"/> - <source>Show End of Line</source> - <translation>Mostrar final de línea</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> - <source>Select, whether long lines should be wrapped</source> - <translation>Seleccionar si las líneas largas se deben partir</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="845"/> - <source>Wrap long lines</source> - <translation>Partir líneas largas</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="854"/> - <source>Edge Mode</source> - <translation>Modo del Borde</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="898"/> - <source>Select the colour for the edge marker.</source> - <translation>Seleccionar el color para el marcador del borde.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="908"/> - <source>Background colour:</source> - <translation>Color de fondo:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> - <source>Move to set the edge column.</source> - <translation>Mover para establecer la columna del borde.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="949"/> - <source>Displays the selected tab width.</source> - <translation>Muestra el ancho de tabulación seleccionado.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="965"/> - <source>Column number:</source> - <translation>Número de columnas:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="972"/> - <source>Mode:</source> - <translation>Modo:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="986"/> - <source>Disabled</source> - <translation>Deshabilitado</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="991"/> - <source>Draw Line</source> - <translation>Dibujar línea</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="996"/> - <source>Change Background Colour</source> - <translation>Cambiar color de fondo</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1285"/> - <source>Various</source> - <translation>Varios</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1182"/> - <source>Select whether whitspace characters shall be shown</source> - <translation>Seleccionar si los caracteres de espacio en blanco deben ser mostrados</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1185"/> - <source>Show Whitespace</source> - <translation>Mostrar espacios en blanco</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1291"/> - <source>Select to show a minimalistic context menu</source> - <translation>Seleccionar mostrar un menú de contexto minimalista</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1294"/> - <source>Show minimal context menu</source> - <translation>Mostrar menú de contexto minimalista</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="284"/> - <source>Margins foreground:</source> - <translation>Color de primer plano para márgenes:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="297"/> - <source>Select the foreground colour for the margins</source> - <translation>Seleccionar el color de primer plano para los márgenes</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="307"/> - <source>Margins background:</source> - <translation>Color de fondo para los márgenes:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="320"/> - <source>Select the background colour for the margins</source> - <translation>Seleccione el color de fondo para los márgenes</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="330"/> - <source>Foldmargin background:</source> - <translation>Color de fondo para los pliegues de los márgenes:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="343"/> - <source>Select the background colour for the foldmargin</source> - <translation>Seleccione el color de fondo para los pliegues de los márgenes</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="146"/> - <source>Select to show unified margins (like eric4 < 4.3.0)</source> - <translation>Seleccionar para mostrar márgenes unificados (como eric4 < 4.3.0)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="149"/> - <source>Show unified margins</source> - <translation>Mostrar márgenes unificados</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="658"/> - <source>Debugging Line Markers</source> - <translation>Marcadores de Línea de Depuración</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1010"/> - <source>Zoom</source> - <translation>Zoom</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1016"/> - <source>Initial zoom factor:</source> - <translation>Factor de zoom inicial:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> - <source>Move to set the initial zoom factor</source> - <translation>Mover para establecer el factor de zoom inicial</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1048"/> - <source>Displays the selected initial zoom factor</source> - <translation>Muestra el factor de zoom inicial seleccionado</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="267"/> - <source>Arrow</source> - <translation>Flecha</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="272"/> - <source>Arrow Tree</source> - <translation>Árbol de flechas</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="353"/> - <source>Foldmarkers foreground:</source> - <translation>Color de primer plano para marcadores de plegado:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="366"/> - <source>Select the foreground colour of the foldmarkers</source> - <translation>Seleccionar el color de primer plano para los marcadores de plegado</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="376"/> <source>Foldmarkers background:</source> <translation>Color de fondo para marcadores de plegado:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="466"/> <source>Select the background colour of the foldmarkers</source> <translation>Seleccionar el color de fondo para los marcadores de plegado</translation> </message> @@ -10236,95 +10236,135 @@ <translation><b>Nota:</b> Las fuentes y colores de los resaltadores de sintaxis deben ser configurados en la página de estilos de resaltado de sintaxis.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1067"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> <source>Annotations</source> <translation>Anotaciones</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1150"/> <source>Select to enable the display of annotations</source> <translation>Seleccionar para habilitar la visualización de anotaciones</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1153"/> <source>Show annotations</source> <translation>Mostrar anotaciones</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1083"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1160"/> <source>Warnings</source> <translation>Advertencias</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1134"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1211"/> <source>Press to select the foreground colour</source> <translation>Pulse para seleccionar el color de primer plano</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1137"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1214"/> <source>Foreground</source> <translation>Primer plano</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1221"/> <source>Press to select the background colour</source> <translation>Pulse para seleccionar el color de fondo </translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1147"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1224"/> <source>Background</source> <translation>Fondo</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1189"/> <source>Warning: There might be an error.</source> <translation>Advertencia: podría haber un error.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1128"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1205"/> <source>Errors</source> <translation>Errores</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1157"/> - <source>Error: There is an error.</source> - <translation>Error: hay un error.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1176"/> - <source>Whitespace</source> - <translation>Espacios en blanco</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1194"/> - <source>Whitespace size:</source> - <translation>Tamaño de espacio en blanco:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1201"/> - <source>Select the size of the dots used to represent visible whitespace</source> - <translation>Seleccionar el tamaño de los puntos utilizados para visualizar espacios en blanco</translation> - </message> - <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1234"/> + <source>Error: There is an error.</source> + <translation>Error: hay un error.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1253"/> + <source>Whitespace</source> + <translation>Espacios en blanco</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1271"/> + <source>Whitespace size:</source> + <translation>Tamaño de espacio en blanco:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1278"/> + <source>Select the size of the dots used to represent visible whitespace</source> + <translation>Seleccionar el tamaño de los puntos utilizados para visualizar espacios en blanco</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1311"/> <source>Whitespace foreground:</source> <translation>Color de primer plano para espacios en blanco:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1324"/> <source>Select the foreground colour for visible whitespace</source> <translation>Seleccionar el color de primer plano para espacios en blanco visibles</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1334"/> <source>Whitespace background:</source> <translation>Color de fondo para espacios en blanco:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1270"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> <source>Select the background colour for visible whitespace</source> <translation>Seleccionar el color de fondo para espacios en blanco visibles</translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colour</source> + <translation type="obsolete">Color</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <source>Select to set the colour of the edit area different to the default style</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <source>Override edit area colours</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <source>Edit area foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <source>Select the foreground colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="95"/> + <source>Edit area background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="111"/> + <source>Select the background colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colours</source> + <translation type="unfinished">Colores</translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -25315,7 +25355,7 @@ <translation>Archivo guardado</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2278"/> + <location filename="QScintilla/MiniEditor.py" line="2282"/> <source>Untitled</source> <translation>Sin título</translation> </message> @@ -25325,22 +25365,22 @@ <translation>Mini Editor</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2318"/> + <location filename="QScintilla/MiniEditor.py" line="2322"/> <source>Select all</source> <translation>Seleccionar todo</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2319"/> + <location filename="QScintilla/MiniEditor.py" line="2323"/> <source>Deselect all</source> <translation>Deseleccionar todo</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2330"/> + <location filename="QScintilla/MiniEditor.py" line="2334"/> <source>Languages</source> <translation>Lenguajes</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2333"/> + <location filename="QScintilla/MiniEditor.py" line="2337"/> <source>No Language</source> <translation>Ningún Lenguaje</translation> </message> @@ -25371,22 +25411,22 @@ <translation>Imprime el archivo actual</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2244"/> + <location filename="QScintilla/MiniEditor.py" line="2248"/> <source>Printing...</source> <translation>Imprimiendo...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2260"/> + <location filename="QScintilla/MiniEditor.py" line="2264"/> <source>Printing completed</source> <translation>Impresión completa</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2262"/> + <location filename="QScintilla/MiniEditor.py" line="2266"/> <source>Error while printing</source> <translation>Error mientras se imprimía</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2265"/> + <location filename="QScintilla/MiniEditor.py" line="2269"/> <source>Printing aborted</source> <translation>Impresión cancelada</translation> </message> @@ -25411,22 +25451,22 @@ <translation><b>Presentación Preliminar</b><p>Presentación preliminar del texto de ayuda mostrado.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2352"/> + <location filename="QScintilla/MiniEditor.py" line="2356"/> <source>Guessed</source> <translation>Suposición</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2372"/> + <location filename="QScintilla/MiniEditor.py" line="2376"/> <source>Alternatives</source> <translation>Alternativas</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Pygments Lexer</source> <translation>Analizador Léxico de Pygments</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Select the Pygments lexer to apply.</source> <translation>Seleccionar el Analizador Léxico de Pygments a aplicar.</translation> </message> @@ -25476,7 +25516,7 @@ <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2369"/> + <location filename="QScintilla/MiniEditor.py" line="2373"/> <source>Alternatives ({0})</source> <translation>Alternativas ({0})</translation> </message> @@ -27804,27 +27844,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="971"/> + <location filename="Preferences/__init__.py" line="976"/> <source>Export Preferences</source> <translation>Exportar Preferencias</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Import Preferences</source> <translation>Importar Preferencias</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Properties File (*.ini);;All Files (*)</source> <translation>Archivo de Propiedades (*.ini);;Todos los archivos (*)</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select Python2 Interpreter</source> <translation>Seleccionar Intérprete de Python2</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select the Python2 interpreter to be used:</source> <translation>Seleccionar el intérprete de Python2 a utilizar:</translation> </message> @@ -34123,17 +34163,17 @@ <translation>Restaurar y borrar</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="541"/> + <location filename="QScintilla/Shell.py" line="548"/> <source>Passive Debug Mode</source> <translation>Modo de depuración pasiva</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="544"/> + <location filename="QScintilla/Shell.py" line="551"/> <source>No.</source> <translation>No.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source>Drop Error</source> <translation>Error al soltar</translation> </message> @@ -34153,17 +34193,17 @@ <translation>Mostrar</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select History</source> <translation>Seleccionar historial</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Seleccionar la entrada del historial a ejecutar (las más recientes mostradas en último lugar).</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="542"/> + <location filename="QScintilla/Shell.py" line="549"/> <source> Not connected</source> <translation>No conectado</translation> @@ -34179,29 +34219,29 @@ <translation>Cortar</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="546"/> + <location filename="QScintilla/Shell.py" line="553"/> <source>{0} on {1}, {2}</source> <translation>{0} en {1}, {2}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="607"/> + <location filename="QScintilla/Shell.py" line="614"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="615"/> + <location filename="QScintilla/Shell.py" line="622"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1158"/> + <location filename="QScintilla/Shell.py" line="1165"/> <source>Shell language "{0}" not supported. </source> <translation>Lenguaje de Shell "{0}" no soportado. </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> no es un archivo.</p></translation> </message> @@ -42201,12 +42241,12 @@ <translation>Reiniciar</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select History</source> <translation>Seleccionar historial</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Seleccionar la entrada del historial a ejecutar (las más recientes mostradas en último lugar).</translation> </message> @@ -42216,7 +42256,7 @@ <translation>Configurar...</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="909"/> + <location filename="QScintilla/Terminal.py" line="916"/> <source>No shell has been configured.</source> <translation>No se ha configurado la shell.</translation> </message>
--- a/i18n/eric5_fr.ts Fri Jan 20 18:54:06 2012 +0100 +++ b/i18n/eric5_fr.ts Sat Jan 21 15:01:53 2012 +0100 @@ -7732,7 +7732,7 @@ <translation>Éditer le point d'arrêt...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4267"/> + <location filename="QScintilla/Editor.py" line="4277"/> <source>Enable breakpoint</source> <translation>Activer le point d'arrêt</translation> </message> @@ -7762,137 +7762,137 @@ <translation>Le click principal place les points d'arrêts</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>Modification of Read Only file</source> <translation>Modification de la lecture seule</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Le fichier est en lecture seule. Sauvez d'abord votre fichier sous un autre nom.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2186"/> + <location filename="QScintilla/Editor.py" line="2189"/> <source>Printing...</source> <translation>Impression....</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2203"/> + <location filename="QScintilla/Editor.py" line="2206"/> <source>Printing completed</source> <translation>Impression terminée</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2205"/> - <source>Error while printing</source> - <translation>Erreur durant l'impression</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="2208"/> + <source>Error while printing</source> + <translation>Erreur durant l'impression</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2211"/> <source>Printing aborted</source> <translation>Impression abandonnée</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source>Open File</source> <translation>Ouvrir Fichier</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source>Save File</source> <translation>Enregistrer Fichier</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source>File Modified</source> <translation>Fichier Modifié</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion</source> <translation>Autocompletion</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>L'autocompletion n'est pas disponible car aucune source d'autocomplétion n'est définie.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4270"/> + <location filename="QScintilla/Editor.py" line="4280"/> <source>Disable breakpoint</source> <translation>Désactiver le point d'arrêt</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Code Coverage</source> <translation>Code Coverage</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Please select a coverage file</source> <translation>Sélectionner un fichier coverage</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Profile Data</source> <translation>Profiler de données</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Please select a profile file</source> <translation>Sélectionner un fichier profile</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Macro Name</source> <translation>Nom de la macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Select a macro name:</source> <translation>Sélectionner un nom de macro:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Macro files (*.macro)</source> <translation>Fichier Macro (*.macro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5108"/> + <location filename="QScintilla/Editor.py" line="5118"/> <source>Load macro file</source> <translation>Charger un fichier macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source>Error loading macro</source> <translation>Erreur lors du chargement de la macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Save macro file</source> <translation>Enregistrer le fichier macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source>Save macro</source> <translation>Enregistrer la macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source>Error saving macro</source> <translation>Erreur lors de l'enregistrement de la macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Start Macro Recording</source> <translation>Démarrer l'enregistrement de la macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Macro Recording</source> <translation>Enregistrement de macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Enter name of the macro:</source> <translation>Entrer le nom de la macro:</translation> </message> @@ -7902,7 +7902,7 @@ <translation type="obsolete"><br><b>Warning:</b> Toutes les modifications seront écrasées en réouvrant le fichier.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5341"/> + <location filename="QScintilla/Editor.py" line="5351"/> <source>File changed</source> <translation>Fichier modifié</translation> </message> @@ -7942,7 +7942,7 @@ <translation type="obsolete">Prière de sélectionner un rapport Cyclops à supprimer</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> @@ -7952,12 +7952,12 @@ <translation>Afficher le message d'erreur de syntaxe</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>Syntax Error</source> <translation>Erreur de syntaxe</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>No syntax error message available.</source> <translation>Aucun message d'erreur de syntaxe..</translation> </message> @@ -7987,17 +7987,17 @@ <translation>Ligne non executée précédente</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>Show Code Coverage Annotations</source> <translation>Afficher les annotations de Code Coverage</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4629"/> + <location filename="QScintilla/Editor.py" line="4639"/> <source>All lines have been covered.</source> <translation>Toutes les lignes ont été executées.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>There is no coverage file available.</source> <translation>Impossible de trouver le fichier de coverage.</translation> </message> @@ -8097,42 +8097,42 @@ <translation type="obsolete">%1 (ro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5614"/> + <location filename="QScintilla/Editor.py" line="5624"/> <source>Resources</source> <translation>Ressources</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5616"/> + <location filename="QScintilla/Editor.py" line="5626"/> <source>Add file...</source> <translation>Ajouter un fichier...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5618"/> + <location filename="QScintilla/Editor.py" line="5628"/> <source>Add files...</source> <translation>Ajouter des fichiers...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5620"/> + <location filename="QScintilla/Editor.py" line="5630"/> <source>Add aliased file...</source> <translation>Ajouter un fichier alias...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5622"/> + <location filename="QScintilla/Editor.py" line="5632"/> <source>Add localized resource...</source> <translation>Ajouter une ressource localisée...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5643"/> + <location filename="QScintilla/Editor.py" line="5653"/> <source>Add file resource</source> <translation>Ajoute un fichier ressource</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5659"/> + <location filename="QScintilla/Editor.py" line="5669"/> <source>Add file resources</source> <translation>Ajoute des fichiers ressources</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Add aliased file resource</source> <translation>Ajoute un alias de fichier ressource</translation> </message> @@ -8142,32 +8142,32 @@ <translation type="obsolete">Alias pour le fichier <b>%1</b>:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Package Diagram</source> <translation>Diagramme de package</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Include class attributes?</source> <translation>Inclure les attributs de classes ?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Application Diagram</source> <translation>Diagramme de l'application</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Include module names?</source> <translation>Inclure les noms de modules ?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5625"/> + <location filename="QScintilla/Editor.py" line="5635"/> <source>Add resource frame</source> <translation>Ajouter un cadre ressource</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Macro recording is already active. Start new?</source> <translation>L'enregistrement de macro est déjà actif. En démarrer une nouvelle ?</translation> </message> @@ -8222,12 +8222,12 @@ <translation>Aucun format d'exportation indiqué. Abandon...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Imports Diagram</source> <translation>Diagramme des modules</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Include imports from external modules?</source> <translation>Inclure l'importation de modules externes?</translation> </message> @@ -8307,7 +8307,7 @@ <translation>Sélectionne l'analyseur Pygments à appliquer.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6014"/> + <location filename="QScintilla/Editor.py" line="6024"/> <source>Check spelling...</source> <translation>Correction orthographique...</translation> </message> @@ -8317,12 +8317,12 @@ <translation>Correction orthographique de la sélection...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6016"/> + <location filename="QScintilla/Editor.py" line="6026"/> <source>Add to dictionary</source> <translation>Ajouter au dictionnaire</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6018"/> + <location filename="QScintilla/Editor.py" line="6028"/> <source>Ignore All</source> <translation>Tout ignorer</translation> </message> @@ -8347,52 +8347,52 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <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="2508"/> + <location filename="QScintilla/Editor.py" line="2511"/> <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="5122"/> + <location filename="QScintilla/Editor.py" line="5132"/> <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="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <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="5332"/> + <location filename="QScintilla/Editor.py" line="5342"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5479"/> + <location filename="QScintilla/Editor.py" line="5489"/> <source>{0} (ro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished"></translation> </message> @@ -8417,57 +8417,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>py3flakes Warning</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>No py3flakes warning message available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <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="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <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="5024"/> + <location filename="QScintilla/Editor.py" line="5034"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5030"/> + <location filename="QScintilla/Editor.py" line="5040"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5337"/> + <location filename="QScintilla/Editor.py" line="5347"/> <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="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <source>Activating Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <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="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Activating Calltip Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> @@ -10529,118 +10529,118 @@ <translation><b>Configuration des styles</b></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="124"/> <source>Fonts</source> <translation>Polices</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="130"/> <source>Select, whether the monospaced font should be used as default</source> <translation>Cocher pour utiliser une police monospacée par défaut</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="133"/> <source>Use monospaced as default</source> <translation>Police monospacée par défaut</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="143"/> <source>Default Text</source> <translation>Texte par défaut</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="79"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="156"/> <source>Press to select the default font for the editor's text</source> <translation>Cliquer pour sélectionner la police par défaut de l'éditeur de texte</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="159"/> <source>Default Text Font</source> <translation>Police par défaut</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="89"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="166"/> <source>Press to select the font to be used as the monospaced font</source> <translation>Cliquer pour choisir une police monospacée (les caractères auront tous la même largeur)</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="92"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="169"/> <source>Monospaced Font</source> <translation>Police monospacée</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="403"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="480"/> <source>Press to select the font for the editor line numbers</source> <translation>Cliquer pour choisir une police pour les numéros de ligne</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="406"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="483"/> <source>Line Numbers Font</source> <translation>Police des numéros de ligne</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="102"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="179"/> <source>Monospaced Text</source> <translation>Texte monospacé</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="422"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="499"/> <source>2345</source> <translation>2345</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="118"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="195"/> <source>Margins</source> <translation>Marges</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="126"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="203"/> <source>Select whether line numbers margin should be shown.</source> <translation>Indique si la colonne donnant les numéros de ligne doit être affichée.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="129"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="206"/> <source>Show Line Numbers Margin</source> <translation>Afficher les numéros de ligne</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="136"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="213"/> <source>Select whether the fold margin should be shown.</source> <translation>Sélectionne si la marge de pliage de code doit être affichée.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="139"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="216"/> <source>Show Fold Margin</source> <translation>Afficher la marge de contraction de code</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="160"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="237"/> <source>Linenumbers width:</source> <translation>Largeur de marge pour les numéros de ligne:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="170"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> <source>Move to set the width of the linenumbers margin.</source> <translation>Déplacer le curseur pour changer la largeur de marge des numéros de ligne.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="192"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="269"/> <source>Displays the selected width of the linenumbers margin.</source> <translation>Affiche la largeur sélectionnée pour la colonne donnant les numéros de ligne.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="212"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="289"/> <source>Folding style:</source> <translation>Type de pliage de code:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="225"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="302"/> <source>Select the folding style to be used in the folding margin</source> <translation>Sélectionner un style pour le pliage de code</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="228"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="305"/> <source><b>Folding style</b> <p>Select the desired folding style to be used in the folding margin.</p> <p>The available styles are: @@ -10665,402 +10665,402 @@ </p></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="242"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="319"/> <source>Plain</source> <translation>Brut</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="324"/> <source>Circled</source> <translation>Cerclé</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="252"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="329"/> <source>Boxed</source> <translation>Carré</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="334"/> <source>Circled Tree</source> <translation>Cerclé, Arborecent</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="262"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="339"/> <source>Boxed Tree</source> <translation>Carré, Arborescent</translation> </message> <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="530"/> + <source>Selection</source> + <translation>Sélection</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="538"/> + <source>Select to use custom selection colours</source> + <translation>Cocher pour utiliser des couleurs de sélection personalisées</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="541"/> + <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> + <translation><b>Utiliser des couleurs personalisées pour la sélection</b><p>Cocher cette case pour utiliser des couleurs personalisées pour la sélection de texte dans l'éditeur et dans la fenêtre shell. Les couleurs de police et d'arrière plan pour la sélection sont définies dans la section Couleur.</p></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="544"/> + <source>Use custom selection colours</source> + <translation>Utiliser des couleurs personlisées pour la sélection de texte</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="551"/> + <source>Select, if selected text should be colourized by the lexer.</source> + <translation>Cocher si le texte sélectionné doit etre colorié par l'analyseur syntaxique.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="554"/> + <source>Colourize selected text</source> + <translation>Colorier le texte sélectionné</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="561"/> + <source>Select to extend selection to end of line</source> + <translation>Cocher pour étendre la sélection à la fin de la ligne</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="564"/> + <source>Extend selection to end of line</source> + <translation>Extension de la sélection à la fin de la ligne</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="575"/> + <source>Selection foreground:</source> + <translation>Couleur des caractères:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="588"/> + <source>Select the foreground colour for the selection.</source> + <translation>Couleur des caractères pour la sélection.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="598"/> + <source>Selection background:</source> + <translation>Couleur de fond:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="611"/> + <source>Select the background colour for the selection.</source> + <translation>Sélectionne la couleur de fond pour les caractères sélectionnés.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="626"/> + <source>Caret</source> + <translation>Curseur</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="632"/> + <source>Select, whether the caretline should be highlighted</source> + <translation>Cocher, si la ligne du curseur doit être colorée de façon spécifique</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="635"/> + <source>Caretline visible</source> + <translation>Ligne du curseur visible</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="644"/> + <source>Caret width:</source> + <translation>Largeur du curseur:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="651"/> + <source>Select caret width (1, 2 or 3 pixels)</source> + <translation>Sélectionner une largeur de curseur (1, 2 or 3 pixels)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="684"/> + <source>Caret foreground:</source> + <translation>Curseur:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="697"/> + <source>Select the colour for the caret.</source> + <translation>Couleur pour le curseur.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="707"/> + <source>Caretline background:</source> + <translation>Ligne du curseur:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="720"/> + <source>Select the background colour for the line containing the caret.</source> + <translation>Sélection de la couleur de fond pour la ligne contenant le curseur.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="741"/> + <source>Current line marker:</source> + <translation>Ligne courante (debug):</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="754"/> + <source>Select the colour for the current line marker.</source> + <translation>Sélectionne la couleur de la ligne courante quand elle est marquée automatiquement.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="764"/> + <source>Error line marker:</source> + <translation>Ligne d'erreur:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="777"/> + <source>Select the colour for the error line marker.</source> + <translation>Sélectionne la couleur pour les lignes ayant une erreur.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="790"/> + <source>Braces</source> + <translation>Parenthèses</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="796"/> + <source>Select whether matching and bad braces shall be highlighted.</source> + <translation>Indique si bonnes et mauvaises parenthèses doivent être colorées.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="799"/> + <source>Highlight braces</source> + <translation>Coloration des parenthèses</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="806"/> + <source>Matched braces:</source> + <translation>Fermeture valide des parenthèses:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="819"/> + <source>Select the colour for highlighting matching braces.</source> + <translation>Sélectionne la couleur des parenthèses correctement fermées.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="829"/> + <source>Matched braces background:</source> + <translation>Couleur de fond:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> + <source>Select the background colour for highlighting matching braces.</source> + <translation>Sélectionner une couleur de fond pour surligner le texte des parenthèses correctement refermées.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="858"/> + <source>Unmatched brace:</source> + <translation>Parenthèse non refermée:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="865"/> + <source>Select the colour for highlighting nonmatching braces.</source> + <translation>Sélectionne la couleur des parenthèses mal fermées.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="881"/> + <source>Unmatched brace background:</source> + <translation>Couleur de fond:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="888"/> + <source>Select the background colour for highlighting nonmatching braces.</source> + <translation>Sélectionner une couleur de fond pour surligner le texte des parenthèses non refermées.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="901"/> + <source>End of Line</source> + <translation>Fins de lignes</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="909"/> + <source>Select whether end of line shall be shown</source> + <translation>Indique si les caractères "fin de ligne" (EOL) doivent être affichés</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="912"/> + <source>Show End of Line</source> + <translation>Afficher les caractères de fin de ligne (EOL)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="919"/> + <source>Select, whether long lines should be wrapped</source> + <translation>Sélectionner pour passer automatiquement à la ligne lors de l'affichage des longues lignes</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="922"/> + <source>Wrap long lines</source> + <translation>Retour à la ligne automatique</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="931"/> + <source>Edge Mode</source> + <translation>Bordure de fin de ligne</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="975"/> + <source>Select the colour for the edge marker.</source> + <translation>Sélectionner la couleur de la bordure.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="985"/> + <source>Background colour:</source> + <translation>Couleur de fond:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="998"/> + <source>Move to set the edge column.</source> + <translation>Déplacer pour choisir la colonne de bordure.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> + <source>Displays the selected tab width.</source> + <translation>Affiche la largeur des tabulations.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1042"/> + <source>Column number:</source> + <translation>Numéro de colonne:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <source>Mode:</source> + <translation>Mode:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1063"/> + <source>Disabled</source> + <translation>Désactivé</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1068"/> + <source>Draw Line</source> + <translation>Ligne verticale</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <source>Change Background Colour</source> + <translation>Changement de la couleur de fond</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1362"/> + <source>Various</source> + <translation>Divers</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1259"/> + <source>Select whether whitspace characters shall be shown</source> + <translation>Sélectionne si les espaces doivent être affichés explicitement</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1262"/> + <source>Show Whitespace</source> + <translation>Affiche explicitement les espaces</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1368"/> + <source>Select to show a minimalistic context menu</source> + <translation>Cocher pour utiliser un menu contextuel réduit</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1371"/> + <source>Show minimal context menu</source> + <translation>Afficher un menu contextuel minimal</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="361"/> + <source>Margins foreground:</source> + <translation>Couleur des numéros de ligne</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="374"/> + <source>Select the foreground colour for the margins</source> + <translation>Sélection de la couleur des numéros de ligne dans la marge</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="384"/> + <source>Margins background:</source> + <translation>Couleur de fond des marges :</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="397"/> + <source>Select the background colour for the margins</source> + <translation>Sélection de la couleur de fond pour les marges</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="407"/> + <source>Foldmargin background:</source> + <translation>Couleur de la marge de pliage de code : </translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="420"/> + <source>Select the background colour for the foldmargin</source> + <translation>Sélectionne la couleur de la marge de pliage de code</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="223"/> + <source>Select to show unified margins (like eric4 < 4.3.0)</source> + <translation>Cocher pour afficher des marges unfifiées (comme dans eric4 < 4.3.0)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="226"/> + <source>Show unified margins</source> + <translation>Afficher des marges unifiées</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="735"/> + <source>Debugging Line Markers</source> + <translation>Marquage des lignes déboguées</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1087"/> + <source>Zoom</source> + <translation type="unfinished">Zoom</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1093"/> + <source>Initial zoom factor:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> + <source>Move to set the initial zoom factor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1125"/> + <source>Displays the selected initial zoom factor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="344"/> + <source>Arrow</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="349"/> + <source>Arrow Tree</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="430"/> + <source>Foldmarkers foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="443"/> + <source>Select the foreground colour of the foldmarkers</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="453"/> - <source>Selection</source> - <translation>Sélection</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="461"/> - <source>Select to use custom selection colours</source> - <translation>Cocher pour utiliser des couleurs de sélection personalisées</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="464"/> - <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> - <translation><b>Utiliser des couleurs personalisées pour la sélection</b><p>Cocher cette case pour utiliser des couleurs personalisées pour la sélection de texte dans l'éditeur et dans la fenêtre shell. Les couleurs de police et d'arrière plan pour la sélection sont définies dans la section Couleur.</p></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="467"/> - <source>Use custom selection colours</source> - <translation>Utiliser des couleurs personlisées pour la sélection de texte</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="474"/> - <source>Select, if selected text should be colourized by the lexer.</source> - <translation>Cocher si le texte sélectionné doit etre colorié par l'analyseur syntaxique.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="477"/> - <source>Colourize selected text</source> - <translation>Colorier le texte sélectionné</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="484"/> - <source>Select to extend selection to end of line</source> - <translation>Cocher pour étendre la sélection à la fin de la ligne</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="487"/> - <source>Extend selection to end of line</source> - <translation>Extension de la sélection à la fin de la ligne</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="498"/> - <source>Selection foreground:</source> - <translation>Couleur des caractères:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="511"/> - <source>Select the foreground colour for the selection.</source> - <translation>Couleur des caractères pour la sélection.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="521"/> - <source>Selection background:</source> - <translation>Couleur de fond:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="534"/> - <source>Select the background colour for the selection.</source> - <translation>Sélectionne la couleur de fond pour les caractères sélectionnés.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="549"/> - <source>Caret</source> - <translation>Curseur</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="555"/> - <source>Select, whether the caretline should be highlighted</source> - <translation>Cocher, si la ligne du curseur doit être colorée de façon spécifique</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="558"/> - <source>Caretline visible</source> - <translation>Ligne du curseur visible</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="567"/> - <source>Caret width:</source> - <translation>Largeur du curseur:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="574"/> - <source>Select caret width (1, 2 or 3 pixels)</source> - <translation>Sélectionner une largeur de curseur (1, 2 or 3 pixels)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="607"/> - <source>Caret foreground:</source> - <translation>Curseur:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="620"/> - <source>Select the colour for the caret.</source> - <translation>Couleur pour le curseur.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="630"/> - <source>Caretline background:</source> - <translation>Ligne du curseur:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="643"/> - <source>Select the background colour for the line containing the caret.</source> - <translation>Sélection de la couleur de fond pour la ligne contenant le curseur.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="664"/> - <source>Current line marker:</source> - <translation>Ligne courante (debug):</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="677"/> - <source>Select the colour for the current line marker.</source> - <translation>Sélectionne la couleur de la ligne courante quand elle est marquée automatiquement.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="687"/> - <source>Error line marker:</source> - <translation>Ligne d'erreur:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="700"/> - <source>Select the colour for the error line marker.</source> - <translation>Sélectionne la couleur pour les lignes ayant une erreur.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="713"/> - <source>Braces</source> - <translation>Parenthèses</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> - <source>Select whether matching and bad braces shall be highlighted.</source> - <translation>Indique si bonnes et mauvaises parenthèses doivent être colorées.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="722"/> - <source>Highlight braces</source> - <translation>Coloration des parenthèses</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="729"/> - <source>Matched braces:</source> - <translation>Fermeture valide des parenthèses:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="742"/> - <source>Select the colour for highlighting matching braces.</source> - <translation>Sélectionne la couleur des parenthèses correctement fermées.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="752"/> - <source>Matched braces background:</source> - <translation>Couleur de fond:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="765"/> - <source>Select the background colour for highlighting matching braces.</source> - <translation>Sélectionner une couleur de fond pour surligner le texte des parenthèses correctement refermées.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="781"/> - <source>Unmatched brace:</source> - <translation>Parenthèse non refermée:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="788"/> - <source>Select the colour for highlighting nonmatching braces.</source> - <translation>Sélectionne la couleur des parenthèses mal fermées.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="804"/> - <source>Unmatched brace background:</source> - <translation>Couleur de fond:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="811"/> - <source>Select the background colour for highlighting nonmatching braces.</source> - <translation>Sélectionner une couleur de fond pour surligner le texte des parenthèses non refermées.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="824"/> - <source>End of Line</source> - <translation>Fins de lignes</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="832"/> - <source>Select whether end of line shall be shown</source> - <translation>Indique si les caractères "fin de ligne" (EOL) doivent être affichés</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="835"/> - <source>Show End of Line</source> - <translation>Afficher les caractères de fin de ligne (EOL)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> - <source>Select, whether long lines should be wrapped</source> - <translation>Sélectionner pour passer automatiquement à la ligne lors de l'affichage des longues lignes</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="845"/> - <source>Wrap long lines</source> - <translation>Retour à la ligne automatique</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="854"/> - <source>Edge Mode</source> - <translation>Bordure de fin de ligne</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="898"/> - <source>Select the colour for the edge marker.</source> - <translation>Sélectionner la couleur de la bordure.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="908"/> - <source>Background colour:</source> - <translation>Couleur de fond:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> - <source>Move to set the edge column.</source> - <translation>Déplacer pour choisir la colonne de bordure.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="949"/> - <source>Displays the selected tab width.</source> - <translation>Affiche la largeur des tabulations.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="965"/> - <source>Column number:</source> - <translation>Numéro de colonne:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="972"/> - <source>Mode:</source> - <translation>Mode:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="986"/> - <source>Disabled</source> - <translation>Désactivé</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="991"/> - <source>Draw Line</source> - <translation>Ligne verticale</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="996"/> - <source>Change Background Colour</source> - <translation>Changement de la couleur de fond</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1285"/> - <source>Various</source> - <translation>Divers</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1182"/> - <source>Select whether whitspace characters shall be shown</source> - <translation>Sélectionne si les espaces doivent être affichés explicitement</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1185"/> - <source>Show Whitespace</source> - <translation>Affiche explicitement les espaces</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1291"/> - <source>Select to show a minimalistic context menu</source> - <translation>Cocher pour utiliser un menu contextuel réduit</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1294"/> - <source>Show minimal context menu</source> - <translation>Afficher un menu contextuel minimal</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="284"/> - <source>Margins foreground:</source> - <translation>Couleur des numéros de ligne</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="297"/> - <source>Select the foreground colour for the margins</source> - <translation>Sélection de la couleur des numéros de ligne dans la marge</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="307"/> - <source>Margins background:</source> - <translation>Couleur de fond des marges :</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="320"/> - <source>Select the background colour for the margins</source> - <translation>Sélection de la couleur de fond pour les marges</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="330"/> - <source>Foldmargin background:</source> - <translation>Couleur de la marge de pliage de code : </translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="343"/> - <source>Select the background colour for the foldmargin</source> - <translation>Sélectionne la couleur de la marge de pliage de code</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="146"/> - <source>Select to show unified margins (like eric4 < 4.3.0)</source> - <translation>Cocher pour afficher des marges unfifiées (comme dans eric4 < 4.3.0)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="149"/> - <source>Show unified margins</source> - <translation>Afficher des marges unifiées</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="658"/> - <source>Debugging Line Markers</source> - <translation>Marquage des lignes déboguées</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1010"/> - <source>Zoom</source> - <translation type="unfinished">Zoom</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1016"/> - <source>Initial zoom factor:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> - <source>Move to set the initial zoom factor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1048"/> - <source>Displays the selected initial zoom factor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="267"/> - <source>Arrow</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="272"/> - <source>Arrow Tree</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="353"/> - <source>Foldmarkers foreground:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="366"/> - <source>Select the foreground colour of the foldmarkers</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="376"/> <source>Foldmarkers background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="466"/> <source>Select the background colour of the foldmarkers</source> <translation type="unfinished"></translation> </message> @@ -11070,95 +11070,135 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1067"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> <source>Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1150"/> <source>Select to enable the display of annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1153"/> <source>Show annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1083"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1160"/> <source>Warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1134"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1211"/> <source>Press to select the foreground colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1137"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1214"/> <source>Foreground</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1221"/> <source>Press to select the background colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1147"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1224"/> <source>Background</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1189"/> <source>Warning: There might be an error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1128"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1205"/> <source>Errors</source> <translation type="unfinished">Erreurs</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1157"/> - <source>Error: There is an error.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1176"/> - <source>Whitespace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1194"/> - <source>Whitespace size:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1201"/> - <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="1234"/> + <source>Error: There is an error.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1253"/> + <source>Whitespace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1271"/> + <source>Whitespace size:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1278"/> + <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="1311"/> <source>Whitespace foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1324"/> <source>Select the foreground colour for visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1334"/> <source>Whitespace background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1270"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> <source>Select the background colour for visible whitespace</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colour</source> + <translation type="obsolete">Couleur</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <source>Select to set the colour of the edit area different to the default style</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <source>Override edit area colours</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <source>Edit area foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <source>Select the foreground colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="95"/> + <source>Edit area background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="111"/> + <source>Select the background colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colours</source> + <translation type="unfinished">Couleurs</translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -26866,7 +26906,7 @@ <translation type="obsolete">Impossible d'écrire le fichier %1:%2.</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2278"/> + <location filename="QScintilla/MiniEditor.py" line="2282"/> <source>Untitled</source> <translation>SansTitre</translation> </message> @@ -26881,22 +26921,22 @@ <translation>Mini éditeur</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2318"/> + <location filename="QScintilla/MiniEditor.py" line="2322"/> <source>Select all</source> <translation>Tout sélectionner</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2319"/> + <location filename="QScintilla/MiniEditor.py" line="2323"/> <source>Deselect all</source> <translation>Tout déselectionner</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2330"/> + <location filename="QScintilla/MiniEditor.py" line="2334"/> <source>Languages</source> <translation>Langages</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2333"/> + <location filename="QScintilla/MiniEditor.py" line="2337"/> <source>No Language</source> <translation>Pas de langage</translation> </message> @@ -26988,22 +27028,22 @@ <translation>Imprime le fichier courant</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2244"/> + <location filename="QScintilla/MiniEditor.py" line="2248"/> <source>Printing...</source> <translation>Impression....</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2260"/> + <location filename="QScintilla/MiniEditor.py" line="2264"/> <source>Printing completed</source> <translation>Impression terminée</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2262"/> + <location filename="QScintilla/MiniEditor.py" line="2266"/> <source>Error while printing</source> <translation>Erreur durant l'impression</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2265"/> + <location filename="QScintilla/MiniEditor.py" line="2269"/> <source>Printing aborted</source> <translation>Impression abandonnée</translation> </message> @@ -27028,12 +27068,12 @@ <translation><b>Aperçu avant impression</b><p>Aperçu avant impression du fichier courant.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2352"/> + <location filename="QScintilla/MiniEditor.py" line="2356"/> <source>Guessed</source> <translation>Suggestion</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2372"/> + <location filename="QScintilla/MiniEditor.py" line="2376"/> <source>Alternatives</source> <translation>Alternatives</translation> </message> @@ -27043,12 +27083,12 @@ <translation type="obsolete">Alternatives (%1)</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Pygments Lexer</source> <translation>Analyseur Pygments</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Select the Pygments lexer to apply.</source> <translation>Sélectionne l'analyseur Pygments à appliquer.</translation> </message> @@ -27098,7 +27138,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2369"/> + <location filename="QScintilla/MiniEditor.py" line="2373"/> <source>Alternatives ({0})</source> <translation type="unfinished"></translation> </message> @@ -29717,27 +29757,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="971"/> + <location filename="Preferences/__init__.py" line="976"/> <source>Export Preferences</source> <translation>Export des préférences</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Import Preferences</source> <translation>Import des préférences</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -37011,12 +37051,12 @@ <translation>Effacer et réinitialiser</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="544"/> + <location filename="QScintilla/Shell.py" line="551"/> <source>No.</source> <translation>Non.</translation> </message> @@ -37047,7 +37087,7 @@ <translation type="obsolete">Langage shell "%1" non supporté.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="541"/> + <location filename="QScintilla/Shell.py" line="548"/> <source>Passive Debug Mode</source> <translation>Mode débogueur passif</translation> </message> @@ -37077,17 +37117,17 @@ <translation>Afficher</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select History</source> <translation>Historique</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Sélectionner une entrée à executer (la plus récente est à la fin).</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="542"/> + <location filename="QScintilla/Shell.py" line="549"/> <source> Not connected</source> <translation>Non connexté</translation> @@ -37103,28 +37143,28 @@ <translation type="unfinished">Couper</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="546"/> + <location filename="QScintilla/Shell.py" line="553"/> <source>{0} on {1}, {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="607"/> + <location filename="QScintilla/Shell.py" line="614"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="615"/> + <location filename="QScintilla/Shell.py" line="622"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1158"/> + <location filename="QScintilla/Shell.py" line="1165"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> @@ -45657,12 +45697,12 @@ <translation>Réinitialiser</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select History</source> <translation>Historique</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Sélectionner une entrée à executer (la plus récente est à la fin).</translation> </message> @@ -45672,7 +45712,7 @@ <translation>Configuration...</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="909"/> + <location filename="QScintilla/Terminal.py" line="916"/> <source>No shell has been configured.</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_it.ts Fri Jan 20 18:54:06 2012 +0100 +++ b/i18n/eric5_it.ts Sat Jan 21 15:01:53 2012 +0100 @@ -7005,7 +7005,7 @@ <translation>Modifica Breakpoint...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4267"/> + <location filename="QScintilla/Editor.py" line="4277"/> <source>Enable breakpoint</source> <translation>Abilita breakpoint</translation> </message> @@ -7035,142 +7035,142 @@ <translation>Toggle Breakpoint LMB</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>Modification of Read Only file</source> <translation>Modifica di un file di sola lettura</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Stai tentando di modificare un file in sola lettura. Per favore prima salva come un file diverso.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2186"/> + <location filename="QScintilla/Editor.py" line="2189"/> <source>Printing...</source> <translation>In stampa...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2203"/> + <location filename="QScintilla/Editor.py" line="2206"/> <source>Printing completed</source> <translation>Stampa completata</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2205"/> - <source>Error while printing</source> - <translation>Errore durante la stampa</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="2208"/> + <source>Error while printing</source> + <translation>Errore durante la stampa</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2211"/> <source>Printing aborted</source> <translation>Stampa annullata</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source>Open File</source> <translation>Apri File</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source>Save File</source> <translation>Salva file</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source>File Modified</source> <translation>File modificato</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion</source> <translation>Autocompletamento</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>L'autocomplentamento non è disponibile perchè non ci sono fonti impostate.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4270"/> + <location filename="QScintilla/Editor.py" line="4280"/> <source>Disable breakpoint</source> <translation>Disabilita breakpoint</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Code Coverage</source> <translation>Analisi codice</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Please select a coverage file</source> <translation>Per favore seleziona un file per l'analisi</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Profile Data</source> <translation>Profilazione dati</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Please select a profile file</source> <translation>Per favore seleziona un file per la profilazione</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Macro Name</source> <translation>Nome Macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Select a macro name:</source> <translation>Seleziona un nome per la macro:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Macro files (*.macro)</source> <translation>File Macro (*.macro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5108"/> + <location filename="QScintilla/Editor.py" line="5118"/> <source>Load macro file</source> <translation>Carica un file di macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source>Error loading macro</source> <translation>Errore nel caricamento della macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Save macro file</source> <translation>Salva un file di macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source>Save macro</source> <translation>Salva macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source>Error saving macro</source> <translation>Errore nel salvataggio della macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Start Macro Recording</source> <translation>Avvia registrazione della macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Macro Recording</source> <translation>Registrazione Macro</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Enter name of the macro:</source> <translation>Inserisci un nome per la macro:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5341"/> + <location filename="QScintilla/Editor.py" line="5351"/> <source>File changed</source> <translation>File modificato</translation> </message> @@ -7190,7 +7190,7 @@ <translation>Elimina errori di sintassi</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source>Drop Error</source> <translation>Errore Drop</translation> </message> @@ -7200,12 +7200,12 @@ <translation>Mostra i messaggi degli errori di sintassi</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>Syntax Error</source> <translation>Errore di sintassi</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>No syntax error message available.</source> <translation>Nessun messaggio degli errori di sintassi disponibile.</translation> </message> @@ -7235,17 +7235,17 @@ <translation>File non analizzato precedente</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>Show Code Coverage Annotations</source> <translation>Mostra le annotazioni dell'analisi del codice</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4629"/> + <location filename="QScintilla/Editor.py" line="4639"/> <source>All lines have been covered.</source> <translation>Tutte le linee sono state analizzate.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>There is no coverage file available.</source> <translation>Non ci sono file di analisi disponibili.</translation> </message> @@ -7285,72 +7285,72 @@ <translation>Nessun linguaggio</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5614"/> + <location filename="QScintilla/Editor.py" line="5624"/> <source>Resources</source> <translation>Risorse</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5616"/> + <location filename="QScintilla/Editor.py" line="5626"/> <source>Add file...</source> <translation>Aggiungi file...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5618"/> + <location filename="QScintilla/Editor.py" line="5628"/> <source>Add files...</source> <translation>Aggiungi files...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5620"/> + <location filename="QScintilla/Editor.py" line="5630"/> <source>Add aliased file...</source> <translation>Aggiungi file sinonimo...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5622"/> + <location filename="QScintilla/Editor.py" line="5632"/> <source>Add localized resource...</source> <translation>Aggiungi una risorsa localizzata...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5643"/> + <location filename="QScintilla/Editor.py" line="5653"/> <source>Add file resource</source> <translation>Aggiungi un file risorse</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5659"/> + <location filename="QScintilla/Editor.py" line="5669"/> <source>Add file resources</source> <translation>Aggiundi dei file risorse</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Add aliased file resource</source> <translation>Aggiungi file sinonimo delle risorse</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Package Diagram</source> <translation>Diagrammi del package</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Include class attributes?</source> <translation>Includi gli attributi della classe ?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Application Diagram</source> <translation>Diagrammi dell'applicazione</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Include module names?</source> <translation>Includi i nomi dei moduli ?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5625"/> + <location filename="QScintilla/Editor.py" line="5635"/> <source>Add resource frame</source> <translation>Aggiungi riquadro delle risorse</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Macro recording is already active. Start new?</source> <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation> </message> @@ -7400,12 +7400,12 @@ <translation>Nessun formato di export impostato. Annullamento...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Imports Diagram</source> <translation>Importa diagrammi</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Include imports from external modules?</source> <translation>Includi gli import dai moduli esterni ?</translation> </message> @@ -7480,7 +7480,7 @@ <translation>Selezione l'analizzatore lessicale di Pygments da applicare.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6014"/> + <location filename="QScintilla/Editor.py" line="6024"/> <source>Check spelling...</source> <translation>Controllo sillabazione...</translation> </message> @@ -7490,12 +7490,12 @@ <translation>Controllo sillabazione della selezione...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6016"/> + <location filename="QScintilla/Editor.py" line="6026"/> <source>Add to dictionary</source> <translation>Aggiungi al dizionario</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6018"/> + <location filename="QScintilla/Editor.py" line="6028"/> <source>Ignore All</source> <translation>Ignora tutto</translation> </message> @@ -7520,52 +7520,52 @@ <translation>Alternative ({0})</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Il file <b>{0}</b> contiene modifiche non salvate.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere aperto.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2508"/> + <location filename="QScintilla/Editor.py" line="2511"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5122"/> + <location filename="QScintilla/Editor.py" line="5132"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Il file macro <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Il file macro <b>{0}</b> è danneggiato.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Il file macro <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5332"/> + <location filename="QScintilla/Editor.py" line="5342"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation><p>Il file <b>{0}</b> è stato modificato mentre era aperto in eric5. Rileggerlo ?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5479"/> + <location filename="QScintilla/Editor.py" line="5489"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> non è un file.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Alias for file <b>{0}</b>:</source> <translation>Alias per il file <b>{0}</b>:</translation> </message> @@ -7590,57 +7590,57 @@ <translation>Pulisci warning</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>py3flakes Warning</source> <translation>Warning py3flakes</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>No py3flakes warning message available.</source> <translation>Nessun warning py3flakes disponibile.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Il file delle macro <b>{0}</b> esiste già.Sovrascriverlo ?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5024"/> + <location filename="QScintilla/Editor.py" line="5034"/> <source>Warning: {0}</source> <translation>Attenzione: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5030"/> + <location filename="QScintilla/Editor.py" line="5040"/> <source>Error: {0}</source> <translation>Errore: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5337"/> + <location filename="QScintilla/Editor.py" line="5347"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Attenzione:</b> con la riapertura le modifiche andranno perse.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <source>Activating Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <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="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Activating Calltip Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> @@ -9668,117 +9668,117 @@ <translation><b>Configura stili dell'editor</b></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="124"/> <source>Fonts</source> <translation>Fonts</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="130"/> <source>Select, whether the monospaced font should be used as default</source> <translation>Seleziona, nel caso il font prespaziato debba essere usato come default</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="133"/> <source>Use monospaced as default</source> <translation>Usa font prespaziato come default</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="143"/> <source>Default Text</source> <translation>Testo di default</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="79"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="156"/> <source>Press to select the default font for the editor's text</source> <translation>Premi per selezionare il font di default per il testo dell'editor</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="159"/> <source>Default Text Font</source> <translation>Font di default del testo</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="89"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="166"/> <source>Press to select the font to be used as the monospaced font</source> <translation>Premi per selezionare un font da usare a larghezza fissa</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="92"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="169"/> <source>Monospaced Font</source> <translation>Font a larghezza fissa</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="403"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="480"/> <source>Press to select the font for the editor line numbers</source> <translation>Premi per selezionare il font per i numeri di linea dell'editor</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="406"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="483"/> <source>Line Numbers Font</source> <translation>Font Numeri linea</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="102"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="179"/> <source>Monospaced Text</source> <translation>Testo prespaziato</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="422"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="499"/> <source>2345</source> <translation>2345</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="118"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="195"/> <source>Margins</source> <translation>Margini</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="126"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="203"/> <source>Select whether line numbers margin should be shown.</source> <translation>Seleziona nel caso il margine per i numeri di linea debba essere mostrato.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="129"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="206"/> <source>Show Line Numbers Margin</source> <translation>Mostra il margine per i numeri di linea</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="136"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="213"/> <source>Select whether the fold margin should be shown.</source> <translation>Seleziona se il margine per la compressione deve essere mostrato.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="139"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="216"/> <source>Show Fold Margin</source> <translation>Mostra margine di compressione</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="160"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="237"/> <source>Linenumbers width:</source> <translation>Larghezza numeri di riga:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="170"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> <source>Move to set the width of the linenumbers margin.</source> <translation>Muovi per impostare la larghezza del margine per il numero di linea.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="192"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="269"/> <source>Displays the selected width of the linenumbers margin.</source> <translation>Mostra la larghezza del margine per il numero di linea impostato.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="212"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="289"/> <source>Folding style:</source> <translation>Stile compressione:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="225"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="302"/> <source>Select the folding style to be used in the folding margin</source> <translation>Selezione lo stile di compressione da usare nel margine</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="228"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="305"/> <source><b>Folding style</b> <p>Select the desired folding style to be used in the folding margin.</p> <p>The available styles are: @@ -9803,402 +9803,402 @@ </p></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="242"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="319"/> <source>Plain</source> <translation>Semplice</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="324"/> <source>Circled</source> <translation>Cerchiato</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="252"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="329"/> <source>Boxed</source> <translation>Squadrato</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="334"/> <source>Circled Tree</source> <translation>Albero cerchiato</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="262"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="339"/> <source>Boxed Tree</source> <translation>Albero squadrato</translation> </message> <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="530"/> + <source>Selection</source> + <translation>Selezione</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="538"/> + <source>Select to use custom selection colours</source> + <translation>Selezione per usare colori personalizzati per la selezione</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="541"/> + <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> + <translation><b>Usa colori personalizzati per la selezione</b><p>Seleziona per poter usare colori personalizzati per la selezione nella finestra dell'editor e nella shell. I colori per la selezione del primo piano e dello sfondo sono definiti sulla pagina dei colori.</p></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="544"/> + <source>Use custom selection colours</source> + <translation>Usa colori personalizzati per le selezione</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="551"/> + <source>Select, if selected text should be colourized by the lexer.</source> + <translation>Seleziona, se il testo selezionato deve essere colorato dall'analizzatore lessicale.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="554"/> + <source>Colourize selected text</source> + <translation>Colora testo selezionato</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="561"/> + <source>Select to extend selection to end of line</source> + <translation>Seleziona per estendere la selezione fino alla fine della linea</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="564"/> + <source>Extend selection to end of line</source> + <translation>Estendi selezione fino alla fine della linea</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="575"/> + <source>Selection foreground:</source> + <translation>Selezione primo piano:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="588"/> + <source>Select the foreground colour for the selection.</source> + <translation>Seleziona il colore di primo piano per la selezione.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="598"/> + <source>Selection background:</source> + <translation>Selezione sfondo:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="611"/> + <source>Select the background colour for the selection.</source> + <translation>Seleziona il colore di sfondo per la selezione.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="626"/> + <source>Caret</source> + <translation>Caret</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="632"/> + <source>Select, whether the caretline should be highlighted</source> + <translation>Seleziona, se il caret deve essere evidenziato</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="635"/> + <source>Caretline visible</source> + <translation>Caretline visibile</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="644"/> + <source>Caret width:</source> + <translation>Larghezza Caret:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="651"/> + <source>Select caret width (1, 2 or 3 pixels)</source> + <translation>Selezione larghezza caret (1, 2 o 3 pixel)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="684"/> + <source>Caret foreground:</source> + <translation>Primo piano Caret:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="697"/> + <source>Select the colour for the caret.</source> + <translation>Seleziona il colore per il caret.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="707"/> + <source>Caretline background:</source> + <translation>Sfondo caretline:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="720"/> + <source>Select the background colour for the line containing the caret.</source> + <translation>Seleziona il colore di sfondo per una linea contenente il caret.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="741"/> + <source>Current line marker:</source> + <translation>Marcatore di linea corrente:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="754"/> + <source>Select the colour for the current line marker.</source> + <translation>Seleziona il colore per il marcatore di linea corrente.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="764"/> + <source>Error line marker:</source> + <translation>Marcatori linea errore:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="777"/> + <source>Select the colour for the error line marker.</source> + <translation>Seleziona il colore per il marcatore di linea di errore.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="790"/> + <source>Braces</source> + <translation>Parentesi</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="796"/> + <source>Select whether matching and bad braces shall be highlighted.</source> + <translation>Seleziona nel caso parentesi bilanciate e non bialnciate debbano essere evidenziate.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="799"/> + <source>Highlight braces</source> + <translation>Evidenzia parentesi</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="806"/> + <source>Matched braces:</source> + <translation>Parentesi bilanciate:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="819"/> + <source>Select the colour for highlighting matching braces.</source> + <translation>Seleziona il colore di evidenziazione delle parentesi bilanciate.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="829"/> + <source>Matched braces background:</source> + <translation>Sfondo parentesi bilanciate:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> + <source>Select the background colour for highlighting matching braces.</source> + <translation>Seleziona il colore di sfondo per evidenziare le parentesi bilanciate.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="858"/> + <source>Unmatched brace:</source> + <translation>Parentesi non bilanciate::</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="865"/> + <source>Select the colour for highlighting nonmatching braces.</source> + <translation>Seleziona il colore per evidenziare parentesi non bilanciate.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="881"/> + <source>Unmatched brace background:</source> + <translation>Sfondo parentesi non bilanciate:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="888"/> + <source>Select the background colour for highlighting nonmatching braces.</source> + <translation>Seleziona il colore di sfondo per l'evidenziazione delle parentesi non bilanciate.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="901"/> + <source>End of Line</source> + <translation>Fine linea</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="909"/> + <source>Select whether end of line shall be shown</source> + <translation>Selezione nel caso il fine linea debba essere mostrato</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="912"/> + <source>Show End of Line</source> + <translation>Mostra fine linea</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="919"/> + <source>Select, whether long lines should be wrapped</source> + <translation>Seleziona, nel caso le linee lunghe debbano essere impaginate</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="922"/> + <source>Wrap long lines</source> + <translation>Dividi linee lunghe</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="931"/> + <source>Edge Mode</source> + <translation>Modo Edge</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="975"/> + <source>Select the colour for the edge marker.</source> + <translation>Seleziona il colore per il marcatore del bordo.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="985"/> + <source>Background colour:</source> + <translation>Colore di sfondo:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="998"/> + <source>Move to set the edge column.</source> + <translation>Muovi per impostare la colonna del bordo.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> + <source>Displays the selected tab width.</source> + <translation>Mostra la larghezza attuare del tab.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1042"/> + <source>Column number:</source> + <translation>Numero colonna:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <source>Mode:</source> + <translation>Modo:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1063"/> + <source>Disabled</source> + <translation>Disabilitato</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1068"/> + <source>Draw Line</source> + <translation>Disegna linea</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <source>Change Background Colour</source> + <translation>Cambia colore di sfondo</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1362"/> + <source>Various</source> + <translation>Vari</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1259"/> + <source>Select whether whitspace characters shall be shown</source> + <translation>Seleziona nel caso gli spaci devono essere mostrati</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1262"/> + <source>Show Whitespace</source> + <translation>Mostra spazi</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1368"/> + <source>Select to show a minimalistic context menu</source> + <translation>Seleziona per mostrare un menù di contesto minimale</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1371"/> + <source>Show minimal context menu</source> + <translation>Mostra menù di contesto minimale</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="361"/> + <source>Margins foreground:</source> + <translation>Primo piano per i margini:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="374"/> + <source>Select the foreground colour for the margins</source> + <translation>Seleziona il colore di primo piano per i margini</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="384"/> + <source>Margins background:</source> + <translation>Sfondo margini:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="397"/> + <source>Select the background colour for the margins</source> + <translation>Seleziona il colore di sfondo per i margini</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="407"/> + <source>Foldmargin background:</source> + <translation>Sfondo margine di compressione:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="420"/> + <source>Select the background colour for the foldmargin</source> + <translation>Seleziona il colore di sfondo per il margine di compressione</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="223"/> + <source>Select to show unified margins (like eric4 < 4.3.0)</source> + <translation>Selezione per mostrare i margini unificati (come eric4 < 4.3.0)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="226"/> + <source>Show unified margins</source> + <translation>Mostra margini unificati</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="735"/> + <source>Debugging Line Markers</source> + <translation>Marcatori linea di debug</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1087"/> + <source>Zoom</source> + <translation>Zoom</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1093"/> + <source>Initial zoom factor:</source> + <translation>Fattore di zoom iniziale:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> + <source>Move to set the initial zoom factor</source> + <translation>Muovi per impostare il fattore iniziale dello zoom</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1125"/> + <source>Displays the selected initial zoom factor</source> + <translation>Mostra il fattore di zoom iniziale selezionato</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="344"/> + <source>Arrow</source> + <translation>Freccia</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="349"/> + <source>Arrow Tree</source> + <translation>Albero con frecce</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="430"/> + <source>Foldmarkers foreground:</source> + <translation>Foldmarkers foreground:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="443"/> + <source>Select the foreground colour of the foldmarkers</source> + <translation>Seleziona il colore di foreground per i foldmarkers</translation> + </message> + <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="453"/> - <source>Selection</source> - <translation>Selezione</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="461"/> - <source>Select to use custom selection colours</source> - <translation>Selezione per usare colori personalizzati per la selezione</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="464"/> - <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> - <translation><b>Usa colori personalizzati per la selezione</b><p>Seleziona per poter usare colori personalizzati per la selezione nella finestra dell'editor e nella shell. I colori per la selezione del primo piano e dello sfondo sono definiti sulla pagina dei colori.</p></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="467"/> - <source>Use custom selection colours</source> - <translation>Usa colori personalizzati per le selezione</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="474"/> - <source>Select, if selected text should be colourized by the lexer.</source> - <translation>Seleziona, se il testo selezionato deve essere colorato dall'analizzatore lessicale.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="477"/> - <source>Colourize selected text</source> - <translation>Colora testo selezionato</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="484"/> - <source>Select to extend selection to end of line</source> - <translation>Seleziona per estendere la selezione fino alla fine della linea</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="487"/> - <source>Extend selection to end of line</source> - <translation>Estendi selezione fino alla fine della linea</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="498"/> - <source>Selection foreground:</source> - <translation>Selezione primo piano:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="511"/> - <source>Select the foreground colour for the selection.</source> - <translation>Seleziona il colore di primo piano per la selezione.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="521"/> - <source>Selection background:</source> - <translation>Selezione sfondo:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="534"/> - <source>Select the background colour for the selection.</source> - <translation>Seleziona il colore di sfondo per la selezione.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="549"/> - <source>Caret</source> - <translation>Caret</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="555"/> - <source>Select, whether the caretline should be highlighted</source> - <translation>Seleziona, se il caret deve essere evidenziato</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="558"/> - <source>Caretline visible</source> - <translation>Caretline visibile</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="567"/> - <source>Caret width:</source> - <translation>Larghezza Caret:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="574"/> - <source>Select caret width (1, 2 or 3 pixels)</source> - <translation>Selezione larghezza caret (1, 2 o 3 pixel)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="607"/> - <source>Caret foreground:</source> - <translation>Primo piano Caret:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="620"/> - <source>Select the colour for the caret.</source> - <translation>Seleziona il colore per il caret.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="630"/> - <source>Caretline background:</source> - <translation>Sfondo caretline:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="643"/> - <source>Select the background colour for the line containing the caret.</source> - <translation>Seleziona il colore di sfondo per una linea contenente il caret.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="664"/> - <source>Current line marker:</source> - <translation>Marcatore di linea corrente:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="677"/> - <source>Select the colour for the current line marker.</source> - <translation>Seleziona il colore per il marcatore di linea corrente.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="687"/> - <source>Error line marker:</source> - <translation>Marcatori linea errore:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="700"/> - <source>Select the colour for the error line marker.</source> - <translation>Seleziona il colore per il marcatore di linea di errore.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="713"/> - <source>Braces</source> - <translation>Parentesi</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> - <source>Select whether matching and bad braces shall be highlighted.</source> - <translation>Seleziona nel caso parentesi bilanciate e non bialnciate debbano essere evidenziate.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="722"/> - <source>Highlight braces</source> - <translation>Evidenzia parentesi</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="729"/> - <source>Matched braces:</source> - <translation>Parentesi bilanciate:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="742"/> - <source>Select the colour for highlighting matching braces.</source> - <translation>Seleziona il colore di evidenziazione delle parentesi bilanciate.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="752"/> - <source>Matched braces background:</source> - <translation>Sfondo parentesi bilanciate:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="765"/> - <source>Select the background colour for highlighting matching braces.</source> - <translation>Seleziona il colore di sfondo per evidenziare le parentesi bilanciate.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="781"/> - <source>Unmatched brace:</source> - <translation>Parentesi non bilanciate::</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="788"/> - <source>Select the colour for highlighting nonmatching braces.</source> - <translation>Seleziona il colore per evidenziare parentesi non bilanciate.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="804"/> - <source>Unmatched brace background:</source> - <translation>Sfondo parentesi non bilanciate:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="811"/> - <source>Select the background colour for highlighting nonmatching braces.</source> - <translation>Seleziona il colore di sfondo per l'evidenziazione delle parentesi non bilanciate.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="824"/> - <source>End of Line</source> - <translation>Fine linea</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="832"/> - <source>Select whether end of line shall be shown</source> - <translation>Selezione nel caso il fine linea debba essere mostrato</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="835"/> - <source>Show End of Line</source> - <translation>Mostra fine linea</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> - <source>Select, whether long lines should be wrapped</source> - <translation>Seleziona, nel caso le linee lunghe debbano essere impaginate</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="845"/> - <source>Wrap long lines</source> - <translation>Dividi linee lunghe</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="854"/> - <source>Edge Mode</source> - <translation>Modo Edge</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="898"/> - <source>Select the colour for the edge marker.</source> - <translation>Seleziona il colore per il marcatore del bordo.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="908"/> - <source>Background colour:</source> - <translation>Colore di sfondo:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> - <source>Move to set the edge column.</source> - <translation>Muovi per impostare la colonna del bordo.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="949"/> - <source>Displays the selected tab width.</source> - <translation>Mostra la larghezza attuare del tab.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="965"/> - <source>Column number:</source> - <translation>Numero colonna:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="972"/> - <source>Mode:</source> - <translation>Modo:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="986"/> - <source>Disabled</source> - <translation>Disabilitato</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="991"/> - <source>Draw Line</source> - <translation>Disegna linea</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="996"/> - <source>Change Background Colour</source> - <translation>Cambia colore di sfondo</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1285"/> - <source>Various</source> - <translation>Vari</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1182"/> - <source>Select whether whitspace characters shall be shown</source> - <translation>Seleziona nel caso gli spaci devono essere mostrati</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1185"/> - <source>Show Whitespace</source> - <translation>Mostra spazi</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1291"/> - <source>Select to show a minimalistic context menu</source> - <translation>Seleziona per mostrare un menù di contesto minimale</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1294"/> - <source>Show minimal context menu</source> - <translation>Mostra menù di contesto minimale</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="284"/> - <source>Margins foreground:</source> - <translation>Primo piano per i margini:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="297"/> - <source>Select the foreground colour for the margins</source> - <translation>Seleziona il colore di primo piano per i margini</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="307"/> - <source>Margins background:</source> - <translation>Sfondo margini:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="320"/> - <source>Select the background colour for the margins</source> - <translation>Seleziona il colore di sfondo per i margini</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="330"/> - <source>Foldmargin background:</source> - <translation>Sfondo margine di compressione:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="343"/> - <source>Select the background colour for the foldmargin</source> - <translation>Seleziona il colore di sfondo per il margine di compressione</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="146"/> - <source>Select to show unified margins (like eric4 < 4.3.0)</source> - <translation>Selezione per mostrare i margini unificati (come eric4 < 4.3.0)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="149"/> - <source>Show unified margins</source> - <translation>Mostra margini unificati</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="658"/> - <source>Debugging Line Markers</source> - <translation>Marcatori linea di debug</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1010"/> - <source>Zoom</source> - <translation>Zoom</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1016"/> - <source>Initial zoom factor:</source> - <translation>Fattore di zoom iniziale:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> - <source>Move to set the initial zoom factor</source> - <translation>Muovi per impostare il fattore iniziale dello zoom</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1048"/> - <source>Displays the selected initial zoom factor</source> - <translation>Mostra il fattore di zoom iniziale selezionato</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="267"/> - <source>Arrow</source> - <translation>Freccia</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="272"/> - <source>Arrow Tree</source> - <translation>Albero con frecce</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="353"/> - <source>Foldmarkers foreground:</source> - <translation>Foldmarkers foreground:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="366"/> - <source>Select the foreground colour of the foldmarkers</source> - <translation>Seleziona il colore di foreground per i foldmarkers</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="376"/> <source>Foldmarkers background:</source> <translation>Foldmarkers background:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="466"/> <source>Select the background colour of the foldmarkers</source> <translation>Seleziona il colore di sfondo per il foldmarkers</translation> </message> @@ -10208,95 +10208,135 @@ <translation><b>Nota:</b>Font e colori dell'evidenziatore di sintassi devono essere configurati sulla sua pagina.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1067"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> <source>Annotations</source> <translation>Annotazioni</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1150"/> <source>Select to enable the display of annotations</source> <translation>Seleziona per abilitare la visualizzazione delle annotazioni</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1153"/> <source>Show annotations</source> <translation>Mostra annotazioni</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1083"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1160"/> <source>Warnings</source> <translation>Warnings</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1134"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1211"/> <source>Press to select the foreground colour</source> <translation>Premi per selezionare il colore di primo piano</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1137"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1214"/> <source>Foreground</source> <translation>Primo piano</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1221"/> <source>Press to select the background colour</source> <translation>Premi per selezionare il colore di sfondo</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1147"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1224"/> <source>Background</source> <translation>Sfondo</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1189"/> <source>Warning: There might be an error.</source> <translation>Attenzione: potrebbe esserci un errore.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1128"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1205"/> <source>Errors</source> <translation>Errori</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1157"/> - <source>Error: There is an error.</source> - <translation>Errore: C'è un errore.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1176"/> - <source>Whitespace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1194"/> - <source>Whitespace size:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1201"/> - <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="1234"/> + <source>Error: There is an error.</source> + <translation>Errore: C'è un errore.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1253"/> + <source>Whitespace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1271"/> + <source>Whitespace size:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1278"/> + <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="1311"/> <source>Whitespace foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1324"/> <source>Select the foreground colour for visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1334"/> <source>Whitespace background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1270"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> <source>Select the background colour for visible whitespace</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colour</source> + <translation type="obsolete">Colore</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <source>Select to set the colour of the edit area different to the default style</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <source>Override edit area colours</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <source>Edit area foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <source>Select the foreground colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="95"/> + <source>Edit area background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="111"/> + <source>Select the background colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colours</source> + <translation type="unfinished">Colori</translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -25158,7 +25198,7 @@ <translation>File caricato</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2278"/> + <location filename="QScintilla/MiniEditor.py" line="2282"/> <source>Untitled</source> <translation>Senza titolo</translation> </message> @@ -25168,22 +25208,22 @@ <translation>Mini Editor</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2318"/> + <location filename="QScintilla/MiniEditor.py" line="2322"/> <source>Select all</source> <translation>Seleziona tutti</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2319"/> + <location filename="QScintilla/MiniEditor.py" line="2323"/> <source>Deselect all</source> <translation>Deseleziona tutti</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2330"/> + <location filename="QScintilla/MiniEditor.py" line="2334"/> <source>Languages</source> <translation>Linguaggi</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2333"/> + <location filename="QScintilla/MiniEditor.py" line="2337"/> <source>No Language</source> <translation>Nessun linguaggio</translation> </message> @@ -25270,22 +25310,22 @@ <translation>Stampa il file corrente</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2244"/> + <location filename="QScintilla/MiniEditor.py" line="2248"/> <source>Printing...</source> <translation>In stampa...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2260"/> + <location filename="QScintilla/MiniEditor.py" line="2264"/> <source>Printing completed</source> <translation>Stampa completata</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2262"/> + <location filename="QScintilla/MiniEditor.py" line="2266"/> <source>Error while printing</source> <translation>Errore durante la stampa</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2265"/> + <location filename="QScintilla/MiniEditor.py" line="2269"/> <source>Printing aborted</source> <translation>Stampa interrota</translation> </message> @@ -25310,22 +25350,22 @@ <translation><b>Anteprima di stampa</b><p>Anteprima di stampa del file corrente.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2352"/> + <location filename="QScintilla/MiniEditor.py" line="2356"/> <source>Guessed</source> <translation>Indovinato</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2372"/> + <location filename="QScintilla/MiniEditor.py" line="2376"/> <source>Alternatives</source> <translation>Alternativo</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Pygments Lexer</source> <translation>Analizzatore lessicale Pygments</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Select the Pygments lexer to apply.</source> <translation>Selezione l'analizzatore lessicale di Pygments da applicare.</translation> </message> @@ -25375,7 +25415,7 @@ <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2369"/> + <location filename="QScintilla/MiniEditor.py" line="2373"/> <source>Alternatives ({0})</source> <translation>Alternative ({0})</translation> </message> @@ -27705,27 +27745,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="971"/> + <location filename="Preferences/__init__.py" line="976"/> <source>Export Preferences</source> <translation>Esporta Preferenze</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Import Preferences</source> <translation>Importa Preferenze</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Properties File (*.ini);;All Files (*)</source> <translation>File proprietà (*.ini);;Tutti i file(*)</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -33963,12 +34003,12 @@ <translation>Resetta e pulisci</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source>Drop Error</source> <translation>Drop Error</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="544"/> + <location filename="QScintilla/Shell.py" line="551"/> <source>No.</source> <translation>No.</translation> </message> @@ -33983,7 +34023,7 @@ <translation><b>La finestra Shell</b><p>Questo è un semplice interprete che viene eseguito in una finestra. L'interprete è quello usato per eseguire il programma sotto debug. Significa che puoi eseguire qualsiasi comando mentre il programma in debug viene eseguito.</p><p>Puoi usare i tasti cursore mentre inserisci i comandi. C'è inoltre una cronologia dei comandi che può essere richiamata usando i tanti su e giù. Premendo i tasti su e giù dopo che del testo è stato inserito verrà avviata una ricerca incrementale.</p><p>La shell ha alcuni comandi speciali. 'reset' uccide la shell e ne avvia una nuova. 'clear' pulisce la finestra della shell. 'start' è usato per cambiare il linguaggio della shell e deve essere seguito da uno dei linguaggi supportati. I linguaggi supportati sono elencati dal comando 'languages'. Questi comandi (eccetto 'languages') sono disponibili tramite un menù contestuale.</p><p>Premendo il tasto Tab dopo aver inserito del testo verrà mostrata una lista di possibili comandi. L'elemento rilevante può essere selezionato dalla lista. Se solo un elemento è disponibile, sarà inserito automaticamente.</p><p>In modalità di debug passiva la shell è disponibile solo dopo che il programma debuggato si è connesso all'IDE fino a quando è terminato. Questo viene indicato da un prompt differente e dal titolo della finestra.</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="541"/> + <location filename="QScintilla/Shell.py" line="548"/> <source>Passive Debug Mode</source> <translation>Passive Debug Mode</translation> </message> @@ -34003,17 +34043,17 @@ <translation>Mostra</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select History</source> <translation>Selezione cronologia</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Seleziona l'elemento dalla cronologia da esegurie (i più recenti sono gli ultimi).</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="542"/> + <location filename="QScintilla/Shell.py" line="549"/> <source> Not connected</source> <translation> @@ -34030,29 +34070,29 @@ <translation>Taglia</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="546"/> + <location filename="QScintilla/Shell.py" line="553"/> <source>{0} on {1}, {2}</source> <translation></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="607"/> + <location filename="QScintilla/Shell.py" line="614"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="615"/> + <location filename="QScintilla/Shell.py" line="622"/> <source>StdErr: {0}</source> <translation>StdErr: {0*</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1158"/> + <location filename="QScintilla/Shell.py" line="1165"/> <source>Shell language "{0}" not supported. </source> <translation>Il linguaggio "{0}" della shell non è supportato. </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> non è un file.</p></translation> </message> @@ -42050,12 +42090,12 @@ <translation>Resetta</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select History</source> <translation>Seleziona Cronologia</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Seleziona l'elemento della cronologia da eseguire (il più recente è l'ultimo).</translation> </message> @@ -42065,7 +42105,7 @@ <translation>Configura...</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="909"/> + <location filename="QScintilla/Terminal.py" line="916"/> <source>No shell has been configured.</source> <translation>Nessuna shell è stata configurata.</translation> </message>
--- a/i18n/eric5_ru.ts Fri Jan 20 18:54:06 2012 +0100 +++ b/i18n/eric5_ru.ts Sat Jan 21 15:01:53 2012 +0100 @@ -6990,47 +6990,47 @@ <translation>Печать</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>Modification of Read Only file</source> <translation>Редактирование файла, открытого только на чтение</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Попытка редактирования файла, открытого только на чтение. Пожалуйста, сначала сохраните изменения в другой файл.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2186"/> + <location filename="QScintilla/Editor.py" line="2189"/> <source>Printing...</source> <translation>Печать...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2203"/> + <location filename="QScintilla/Editor.py" line="2206"/> <source>Printing completed</source> <translation>Печать завершена</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2205"/> - <source>Error while printing</source> - <translation>Ошибка печати</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="2208"/> + <source>Error while printing</source> + <translation>Ошибка печати</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2211"/> <source>Printing aborted</source> <translation>Печать отменена</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source>Open File</source> <translation>Открыть файл</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source>Save File</source> <translation>Сохранить файл</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source>File Modified</source> <translation>Файл изменён</translation> </message> @@ -7040,7 +7040,7 @@ <translation type="obsolete"><br><b>Предупреждение:</b> При переоткрытии все изменения будут потеряны.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5341"/> + <location filename="QScintilla/Editor.py" line="5351"/> <source>File changed</source> <translation>Файл изменён</translation> </message> @@ -7085,7 +7085,7 @@ <translation>Редактировать точку останова...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4267"/> + <location filename="QScintilla/Editor.py" line="4277"/> <source>Enable breakpoint</source> <translation>Разрешить точку останова</translation> </message> @@ -7115,82 +7115,82 @@ <translation>Левая клавиша мыши ставит точки останова</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4270"/> + <location filename="QScintilla/Editor.py" line="4280"/> <source>Disable breakpoint</source> <translation>Запретить точку останова</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Code Coverage</source> <translation>Охват кода</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Please select a coverage file</source> <translation>Пожалуйста, выберите файл для информации охвата</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Macro Name</source> <translation>Имя макроса</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Select a macro name:</source> <translation>Задайте имя макроса:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Macro files (*.macro)</source> <translation>Макросы (*.macro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5108"/> + <location filename="QScintilla/Editor.py" line="5118"/> <source>Load macro file</source> <translation>Загрузить макрос</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source>Error loading macro</source> <translation>Ошибка при загрузке макроса</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Save macro file</source> <translation>Сохранить файл с макросами</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source>Save macro</source> <translation>Сохранить макрос</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source>Error saving macro</source> <translation>Ошибка при сохранении макроса</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Start Macro Recording</source> <translation>Начало записи макроса</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Macro Recording</source> <translation>Запись макроса</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Enter name of the macro:</source> <translation>Задайте имя макроса:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Profile Data</source> <translation>Данные профайлера</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Please select a profile file</source> <translation>Пожалуйста, выберите файл профиля</translation> </message> @@ -7200,12 +7200,12 @@ <translation>Автозавершение разрешено</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion</source> <translation>Автозавершение</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Автозавершение недоступно, так как не задан источник автозавершения.</translation> </message> @@ -7240,7 +7240,7 @@ <translation>Автосохранение разрешено</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> @@ -7250,12 +7250,12 @@ <translation>Показать сообщение о синтаксической ошибке</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>Syntax Error</source> <translation>Синтаксическая ошибка</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>No syntax error message available.</source> <translation>Нет сообщения о синтаксической ошибке.</translation> </message> @@ -7285,42 +7285,42 @@ <translation>Предыдущая невыполняемая строка</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>Show Code Coverage Annotations</source> <translation>Показать аннотации по охвату</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4629"/> + <location filename="QScintilla/Editor.py" line="4639"/> <source>All lines have been covered.</source> <translation>Все строки выполняются.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>There is no coverage file available.</source> <translation>Нет файла с информацией по охвату.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>В файле <b>{0}</b> есть несохранённые изменения.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5122"/> + <location filename="QScintilla/Editor.py" line="5132"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл с макросами: <b>{0}</b></p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Файл с макросами <b>{0}</b> повреждён</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл с макросами: <b>{0}</b></p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> не является файлом</p></translation> </message> @@ -7365,82 +7365,82 @@ <translation>Нет языка</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5479"/> + <location filename="QScintilla/Editor.py" line="5489"/> <source>{0} (ro)</source> <translation>{0} (только чтение)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5614"/> + <location filename="QScintilla/Editor.py" line="5624"/> <source>Resources</source> <translation>Ресурсы</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5616"/> + <location filename="QScintilla/Editor.py" line="5626"/> <source>Add file...</source> <translation>Добавить файл...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5618"/> + <location filename="QScintilla/Editor.py" line="5628"/> <source>Add files...</source> <translation>Добавить файлы...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5620"/> + <location filename="QScintilla/Editor.py" line="5630"/> <source>Add aliased file...</source> <translation>Добавить файл под другим именем...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5622"/> + <location filename="QScintilla/Editor.py" line="5632"/> <source>Add localized resource...</source> <translation>Добавить локализованный ресурс...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5643"/> + <location filename="QScintilla/Editor.py" line="5653"/> <source>Add file resource</source> <translation>Добавить файл ресурсов</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5659"/> + <location filename="QScintilla/Editor.py" line="5669"/> <source>Add file resources</source> <translation>Добавить файлы ресурсов</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Add aliased file resource</source> <translation>Добавить файл ресурсов под другим именем</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Alias for file <b>{0}</b>:</source> <translation>Другое имя для файла <b>{0}</b>:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Package Diagram</source> <translation>Диаграмма пакетов</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Include class attributes?</source> <translation>Включать атрибуты класса?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Application Diagram</source> <translation>Диаграмма приложения</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Include module names?</source> <translation>Включать имена модулей?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5625"/> + <location filename="QScintilla/Editor.py" line="5635"/> <source>Add resource frame</source> <translation>Добавить фрагмент ресурсов</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Macro recording is already active. Start new?</source> <translation>Запись макроса уже идёт. Начать новую запись?</translation> </message> @@ -7495,12 +7495,12 @@ <translation>Не задан формат экспорта. Отмена...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Imports Diagram</source> <translation>Диаграмма импортов</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Include imports from external modules?</source> <translation>Включать импорты из внешних модулей?</translation> </message> @@ -7580,7 +7580,7 @@ <translation>Задайте язык лексического анализатора.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6014"/> + <location filename="QScintilla/Editor.py" line="6024"/> <source>Check spelling...</source> <translation>Проверка орфографии...</translation> </message> @@ -7590,12 +7590,12 @@ <translation>Проверка орфографии подсвеченного участка...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6016"/> + <location filename="QScintilla/Editor.py" line="6026"/> <source>Add to dictionary</source> <translation>Добавить в слварь</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6018"/> + <location filename="QScintilla/Editor.py" line="6028"/> <source>Ignore All</source> <translation>Игнорировать всё</translation> </message> @@ -7605,17 +7605,17 @@ <translation>Удалить из словаря</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2508"/> + <location filename="QScintilla/Editor.py" line="2511"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Невозможно сохранить файл <b>{0}</b>:<br>Причина: {1}.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5332"/> + <location filename="QScintilla/Editor.py" line="5342"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation><p>Файл <b>{0}</b> был изменён, будучи открытым в eric5. Обновить?</p></translation> </message> @@ -7640,57 +7640,57 @@ <translation>Очистить предупреждения</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>py3flakes Warning</source> <translation>py3flakes предупреждения</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>No py3flakes warning message available.</source> <translation>py3flakes предупреждений не найдено.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Файл <b>{0}</b> уже сущеструет. Переписать?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Макро <b>{0}</b> уже сущеструет. Переписать?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5024"/> + <location filename="QScintilla/Editor.py" line="5034"/> <source>Warning: {0}</source> <translation>Предупреждение: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5030"/> + <location filename="QScintilla/Editor.py" line="5040"/> <source>Error: {0}</source> <translation>Ошибка: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5337"/> + <location filename="QScintilla/Editor.py" line="5347"/> <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="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <source>Activating Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <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="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Activating Calltip Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> @@ -9718,147 +9718,147 @@ <context> <name>EditorStylesPage</name> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="212"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="289"/> <source>Folding style:</source> <translation>Стиль сворачивания:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="225"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="302"/> <source>Select the folding style to be used in the folding margin</source> <translation>Какой стиль сворачивания будет использован</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="242"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="319"/> <source>Plain</source> <translation>Обычный</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="324"/> <source>Circled</source> <translation>Окружности</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="252"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="329"/> <source>Boxed</source> <translation>Квадраты</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="334"/> <source>Circled Tree</source> <translation>Дерево с окружностями</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="262"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="339"/> <source>Boxed Tree</source> <translation>Дерево с квадратами</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="130"/> <source>Select, whether the monospaced font should be used as default</source> <translation>Следует ли использовать по умолчанию моноширинный шрифт</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="133"/> <source>Use monospaced as default</source> <translation>Использовать моноширинный шрифт по умолчанию</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="89"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="166"/> <source>Press to select the font to be used as the monospaced font</source> <translation>Задайте шрифт, который будет использован как моноширинный</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="92"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="169"/> <source>Monospaced Font</source> <translation>Моноширинный шрифт</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="403"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="480"/> <source>Press to select the font for the editor line numbers</source> <translation>Нажмите для выбора шрифта для номеров строк в редакторе</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="406"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="483"/> <source>Line Numbers Font</source> <translation>Шрифт для номеров строк</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="555"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="632"/> <source>Select, whether the caretline should be highlighted</source> <translation>Будет ли подсвечиваться текущая строка</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="558"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="635"/> <source>Caretline visible</source> <translation>Подсветка текущей строки</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="474"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="551"/> <source>Select, if selected text should be colourized by the lexer.</source> <translation>Будет ли лексический анализатор подсвечивать выделенный текст другим цветом.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="477"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="554"/> <source>Colourize selected text</source> <translation>Изменять цвет выделенного текста</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="567"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="644"/> <source>Caret width:</source> <translation>Ширина каретки:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="574"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="651"/> <source>Select caret width (1, 2 or 3 pixels)</source> <translation>Задайте ширину каретки (1, 2 или 3 пикселя)</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="854"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="931"/> <source>Edge Mode</source> <translation>Правая граница</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="898"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="975"/> <source>Select the colour for the edge marker.</source> <translation>Задайте цвет для отображения правой границы.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="908"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="985"/> <source>Background colour:</source> <translation>Цвет фона:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="998"/> <source>Move to set the edge column.</source> <translation>Задайте положение правой границы.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="949"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> <source>Displays the selected tab width.</source> <translation>Выбранная ширина табуляции.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="965"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1042"/> <source>Column number:</source> <translation>Колонка:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="972"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> <source>Mode:</source> <translation>Режим:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="986"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1063"/> <source>Disabled</source> <translation>Отключено</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="991"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1068"/> <source>Draw Line</source> <translation>Рисовать линию</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="996"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> <source>Change Background Colour</source> <translation>Изменить цвет фона</translation> </message> @@ -9868,113 +9868,113 @@ <translation><b>Настроить стили редактора</b></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="422"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="499"/> <source>2345</source> <translation>2345</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="102"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="179"/> <source>Monospaced Text</source> <translation>Моноширинный текст</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="159"/> <source>Default Text Font</source> <translation>Шрифт по-умолчанию</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="143"/> <source>Default Text</source> <translation>Обычный текст</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="79"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="156"/> <source>Press to select the default font for the editor's text</source> <translation>Задать шрифт по-умолчанию</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="461"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="538"/> <source>Select to use custom selection colours</source> <translation>Использовать собственные цвета выделения</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="464"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="541"/> <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> <translation><b>Собственные цвета выделения</b> <p>Выберите эту пометку, чтобы использовать собственные цвета для выделения в окнах редактора и оболочки. Цвета выделения устанавливаются на странице настройки цветов.</p></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="467"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="544"/> <source>Use custom selection colours</source> <translation>Использовать собственные цвета для выделения</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="124"/> <source>Fonts</source> <translation>Шрифты</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="453"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="530"/> <source>Selection</source> <translation>Выделение</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="484"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="561"/> <source>Select to extend selection to end of line</source> <translation>Раздвинуть выделение до конца строки</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="487"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="564"/> <source>Extend selection to end of line</source> <translation>Раздвинуть выделение до конца строки</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="549"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="626"/> <source>Caret</source> <translation>Каретка</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="118"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="195"/> <source>Margins</source> <translation>Границы</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="126"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="203"/> <source>Select whether line numbers margin should be shown.</source> <translation>Будут ли показываться номера строк.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="129"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="206"/> <source>Show Line Numbers Margin</source> <translation>Показывать номера строк</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="136"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="213"/> <source>Select whether the fold margin should be shown.</source> <translation>Надо ли показывать полосу свёртки.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="139"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="216"/> <source>Show Fold Margin</source> <translation>Показать полосу свёртки</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="160"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="237"/> <source>Linenumbers width:</source> <translation>Ширина номера строки:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="170"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> <source>Move to set the width of the linenumbers margin.</source> <translation>Задайте ширину поля для номеров строк.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="192"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="269"/> <source>Displays the selected width of the linenumbers margin.</source> <translation>Выбранная ширина края номеров линий.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="228"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="305"/> <source><b>Folding style</b> <p>Select the desired folding style to be used in the folding margin.</p> <p>The available styles are: @@ -9999,262 +9999,262 @@ </p></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="498"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="575"/> <source>Selection foreground:</source> <translation>Цвет выделения:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="511"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="588"/> <source>Select the foreground colour for the selection.</source> <translation>Задайте цвет выделения.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="521"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="598"/> <source>Selection background:</source> <translation>Фон выделения:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="534"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="611"/> <source>Select the background colour for the selection.</source> <translation>Задайте фон для выделенного текста.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="607"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="684"/> <source>Caret foreground:</source> <translation>Цвет каретки:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="620"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="697"/> <source>Select the colour for the caret.</source> <translation>Задайте цвет курсора.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="630"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="707"/> <source>Caretline background:</source> <translation>Фон каретки:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="643"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="720"/> <source>Select the background colour for the line containing the caret.</source> <translation>Задайте фон для текущей строки.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="664"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="741"/> <source>Current line marker:</source> <translation>Отметка текущей строки:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="677"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="754"/> <source>Select the colour for the current line marker.</source> <translation>Выберите цвет для пометки текущей строки.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="687"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="764"/> <source>Error line marker:</source> <translation>Отметка ошибочной строки:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="700"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="777"/> <source>Select the colour for the error line marker.</source> <translation>Выберите цвет для пометки ошибочной строки.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="713"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="790"/> <source>Braces</source> <translation>Фигурные скобки</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="796"/> <source>Select whether matching and bad braces shall be highlighted.</source> <translation>Будут ли подсвечиваться парные и неверно расставленные скобки.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="722"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="799"/> <source>Highlight braces</source> <translation>Подсвечивать скобки</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="729"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="806"/> <source>Matched braces:</source> <translation>Парные скобки:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="742"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="819"/> <source>Select the colour for highlighting matching braces.</source> <translation>Выберите цвет для выделения парных скобок.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="752"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="829"/> <source>Matched braces background:</source> <translation>Цвет фона для закрытой скобки:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="765"/> - <source>Select the background colour for highlighting matching braces.</source> - <translation>Задайте цвет фона для подсветки закрытых скобок.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="781"/> - <source>Unmatched brace:</source> - <translation>Непарная скобка:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="788"/> - <source>Select the colour for highlighting nonmatching braces.</source> - <translation>Выберите цвет для выделения непарных скобок.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="804"/> - <source>Unmatched brace background:</source> - <translation>Цвет фона для незакрытой скобки:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="811"/> - <source>Select the background colour for highlighting nonmatching braces.</source> - <translation>Задайте цвет фона для подсветки незакрытых скобок.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="824"/> - <source>End of Line</source> - <translation>Конц строки</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="832"/> - <source>Select whether end of line shall be shown</source> - <translation>Надо ли показывать концы строк</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="835"/> - <source>Show End of Line</source> - <translation>Показать концы строк</translation> - </message> - <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> + <source>Select the background colour for highlighting matching braces.</source> + <translation>Задайте цвет фона для подсветки закрытых скобок.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="858"/> + <source>Unmatched brace:</source> + <translation>Непарная скобка:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="865"/> + <source>Select the colour for highlighting nonmatching braces.</source> + <translation>Выберите цвет для выделения непарных скобок.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="881"/> + <source>Unmatched brace background:</source> + <translation>Цвет фона для незакрытой скобки:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="888"/> + <source>Select the background colour for highlighting nonmatching braces.</source> + <translation>Задайте цвет фона для подсветки незакрытых скобок.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="901"/> + <source>End of Line</source> + <translation>Конц строки</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="909"/> + <source>Select whether end of line shall be shown</source> + <translation>Надо ли показывать концы строк</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="912"/> + <source>Show End of Line</source> + <translation>Показать концы строк</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="919"/> <source>Select, whether long lines should be wrapped</source> <translation>Следует ли переносить длинные строки</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="845"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="922"/> <source>Wrap long lines</source> <translation>Переносить длинные строки</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1285"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1362"/> <source>Various</source> <translation>Разное</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1182"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1259"/> <source>Select whether whitspace characters shall be shown</source> <translation>Будут ли показываться провельные символы</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1185"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1262"/> <source>Show Whitespace</source> <translation>Показывать пробелы</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1291"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1368"/> <source>Select to show a minimalistic context menu</source> <translation>Показать минималистичное контекстное меню</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1294"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1371"/> <source>Show minimal context menu</source> <translation>Показать минималистичное контекстное меню</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="284"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="361"/> <source>Margins foreground:</source> <translation>Цвет границ:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="297"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="374"/> <source>Select the foreground colour for the margins</source> <translation>Цвет границ</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="307"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="384"/> <source>Margins background:</source> <translation>Фоновый цвет границ:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="320"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="397"/> <source>Select the background colour for the margins</source> <translation>Фоновый цвет границ</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="330"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="407"/> <source>Foldmargin background:</source> <translation>Фоновый цвет границ свертки:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="343"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="420"/> <source>Select the background colour for the foldmargin</source> <translation>Фоновый цвет границ свертки</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="146"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="223"/> <source>Select to show unified margins (like eric4 < 4.3.0)</source> <translation>Показывать объединенные границы (как в eric4 < 4.3.0)</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="149"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="226"/> <source>Show unified margins</source> <translation>Показывать объединенные границы</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="658"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="735"/> <source>Debugging Line Markers</source> <translation>Отметка текущей строки отладчика</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1010"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1087"/> <source>Zoom</source> <translation>Масштаб</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1016"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1093"/> <source>Initial zoom factor:</source> <translation>Начальный масштаб:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> <source>Move to set the initial zoom factor</source> <translation>Установить начальный масштаб</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1048"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1125"/> <source>Displays the selected initial zoom factor</source> <translation>Показать начальный масштаб</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="267"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="344"/> <source>Arrow</source> <translation>Стрелка</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="272"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="349"/> <source>Arrow Tree</source> <translation>Дерево со стрелками</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="353"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="430"/> <source>Foldmarkers foreground:</source> <translation>Цвет маркеров папок:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="366"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="443"/> <source>Select the foreground colour of the foldmarkers</source> <translation>Задайте цвет маркеров папок</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="376"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="453"/> <source>Foldmarkers background:</source> <translation>Фоновый цвет маркеров папок:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="466"/> <source>Select the background colour of the foldmarkers</source> <translation>Задайте фоновый цвет маркеров папок</translation> </message> @@ -10264,95 +10264,135 @@ <translation>Внимание: Шрифты и цвета для подсветки синтаксиса можно сконфигурировать на странице стилей для подсветки синтаксиса.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1067"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> <source>Annotations</source> <translation>Примечания</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1150"/> <source>Select to enable the display of annotations</source> <translation>Разрешить показ примечаний</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1153"/> <source>Show annotations</source> <translation>Показать примечания</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1083"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1160"/> <source>Warnings</source> <translation>Предупреждения</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1134"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1211"/> <source>Press to select the foreground colour</source> <translation>Задать цвет</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1137"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1214"/> <source>Foreground</source> <translation>Цвет</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1221"/> <source>Press to select the background colour</source> <translation>Задать цвет фона</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1147"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1224"/> <source>Background</source> <translation>Фон</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1189"/> <source>Warning: There might be an error.</source> <translation>Предупреждение: Возможна ошибка.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1128"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1205"/> <source>Errors</source> <translation>Ошибки</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1157"/> - <source>Error: There is an error.</source> - <translation>Ошибка.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1176"/> - <source>Whitespace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1194"/> - <source>Whitespace size:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1201"/> - <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="1234"/> + <source>Error: There is an error.</source> + <translation>Ошибка.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1253"/> + <source>Whitespace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1271"/> + <source>Whitespace size:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1278"/> + <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="1311"/> <source>Whitespace foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1324"/> <source>Select the foreground colour for visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1334"/> <source>Whitespace background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1270"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> <source>Select the background colour for visible whitespace</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colour</source> + <translation type="obsolete">Цвет</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <source>Select to set the colour of the edit area different to the default style</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <source>Override edit area colours</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <source>Edit area foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <source>Select the foreground colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="95"/> + <source>Edit area background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="111"/> + <source>Select the background colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colours</source> + <translation type="unfinished">Цвета</translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -25289,7 +25329,7 @@ <translation>Файл загружен</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2278"/> + <location filename="QScintilla/MiniEditor.py" line="2282"/> <source>Untitled</source> <translation>Без имени</translation> </message> @@ -25304,22 +25344,22 @@ <translation>Мини-редактор</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2318"/> + <location filename="QScintilla/MiniEditor.py" line="2322"/> <source>Select all</source> <translation>Выбрать всё</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2319"/> + <location filename="QScintilla/MiniEditor.py" line="2323"/> <source>Deselect all</source> <translation>Снять выделение</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2330"/> + <location filename="QScintilla/MiniEditor.py" line="2334"/> <source>Languages</source> <translation>Языки</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2333"/> + <location filename="QScintilla/MiniEditor.py" line="2337"/> <source>No Language</source> <translation>Нет языка</translation> </message> @@ -25407,22 +25447,22 @@ <translation>Распечатать текущий файл</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2244"/> + <location filename="QScintilla/MiniEditor.py" line="2248"/> <source>Printing...</source> <translation>Печать...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2260"/> + <location filename="QScintilla/MiniEditor.py" line="2264"/> <source>Printing completed</source> <translation>Печать завершена</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2262"/> + <location filename="QScintilla/MiniEditor.py" line="2266"/> <source>Error while printing</source> <translation>Ошибка печати</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2265"/> + <location filename="QScintilla/MiniEditor.py" line="2269"/> <source>Printing aborted</source> <translation>Печать отменена</translation> </message> @@ -25447,27 +25487,27 @@ <translation><b>Предварительный просмотр печати</b><p>Предварительный просмотр печати текущего файла.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2352"/> + <location filename="QScintilla/MiniEditor.py" line="2356"/> <source>Guessed</source> <translation>Догадки</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2372"/> + <location filename="QScintilla/MiniEditor.py" line="2376"/> <source>Alternatives</source> <translation>Альтернативы</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2369"/> + <location filename="QScintilla/MiniEditor.py" line="2373"/> <source>Alternatives ({0})</source> <translation>Альтернативы ({0})</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Pygments Lexer</source> <translation>Pygments лексер</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Select the Pygments lexer to apply.</source> <translation>Задайте язык лексического анализатора.</translation> </message> @@ -27845,27 +27885,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="971"/> + <location filename="Preferences/__init__.py" line="976"/> <source>Export Preferences</source> <translation>Экспорт предпочтений</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Import Preferences</source> <translation>Импорт предпочтений</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Properties File (*.ini);;All Files (*)</source> <translation>Файлы свойств (*.ini);;Все файлы (*)</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -34110,17 +34150,17 @@ <translation>Переинициализировать и очистить</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="544"/> + <location filename="QScintilla/Shell.py" line="551"/> <source>No.</source> <translation>Нет.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> не является файлом</p></translation> </message> @@ -34130,7 +34170,7 @@ <translation>Начало</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="546"/> + <location filename="QScintilla/Shell.py" line="553"/> <source>{0} on {1}, {2}</source> <translation>{0} в {1}, {2}</translation> </message> @@ -34144,24 +34184,24 @@ <p>В режиме пассивной отладки оболочка доступна только после того, как отлаживаемая программа подключится к IDE и до её завершения. Это отображается иным приглашением и другим заголовком окна.</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1158"/> + <location filename="QScintilla/Shell.py" line="1165"/> <source>Shell language "{0}" not supported. </source> <translation>Язык оболочки "{0}" не поддерживается. </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="541"/> + <location filename="QScintilla/Shell.py" line="548"/> <source>Passive Debug Mode</source> <translation>Режим пассивной отладки</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="607"/> + <location filename="QScintilla/Shell.py" line="614"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="615"/> + <location filename="QScintilla/Shell.py" line="622"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> @@ -34181,17 +34221,17 @@ <translation>Показать</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select History</source> <translation>Выберите историю</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Выберите одну из предыдущих команд для выполнения.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="542"/> + <location filename="QScintilla/Shell.py" line="549"/> <source> Not connected</source> <translation>Нет соединения</translation> @@ -42221,12 +42261,12 @@ <translation>Сбросить</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select History</source> <translation>Выберите историю</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Выберите одну из предыдущих команд для выполнения.</translation> </message> @@ -42236,7 +42276,7 @@ <translation>Настроить...</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="909"/> + <location filename="QScintilla/Terminal.py" line="916"/> <source>No shell has been configured.</source> <translation>shell не настроен.</translation> </message>
--- a/i18n/eric5_tr.ts Fri Jan 20 18:54:06 2012 +0100 +++ b/i18n/eric5_tr.ts Sat Jan 21 15:01:53 2012 +0100 @@ -6948,7 +6948,7 @@ <context> <name>Editor</name> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source>Open File</source> <translation>Dosya Aç</translation> </message> @@ -7038,7 +7038,7 @@ <translation>Tüm seçimi iptal et</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6014"/> + <location filename="QScintilla/Editor.py" line="6024"/> <source>Check spelling...</source> <translation>Yazım Kontrolü...</translation> </message> @@ -7288,7 +7288,7 @@ <translation>Bekleme noktasını düzenle...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4267"/> + <location filename="QScintilla/Editor.py" line="4277"/> <source>Enable breakpoint</source> <translation>Beklemenoktasını etkinleştir</translation> </message> @@ -7403,57 +7403,57 @@ <translation>Kullanmak için Pygment lexer seç.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>Modification of Read Only file</source> <translation>Yalnızca okunabilir dosyada değişiklik</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Yalnızca okunabilir bir dosyayı değiştirmeşe çalışıyorsunuz. Lütfen önce farklı bir isimde kaydediniz.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2186"/> + <location filename="QScintilla/Editor.py" line="2189"/> <source>Printing...</source> <translation>Yazılıyor...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2203"/> + <location filename="QScintilla/Editor.py" line="2206"/> <source>Printing completed</source> <translation>Yazdırma tamalandı</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2205"/> - <source>Error while printing</source> - <translation>Yazdırılırken hata</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="2208"/> + <source>Error while printing</source> + <translation>Yazdırılırken hata</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2211"/> <source>Printing aborted</source> <translation>Yazdırma iptal edildi</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source>File Modified</source> <translation>Dosya Değiştirildi</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p><b>{0}</b>dosyasında kaydedilmemiş değişiklikler var.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Dosya <b>{0}</b> açılamıyor.</p><p>Sebep: {1}</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source>Save File</source> <translation>Dosyayı Kaydet</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2508"/> + <location filename="QScintilla/Editor.py" line="2511"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Dosya <b>{0}</b> kaydedilemiyor.</p><p>Sebep: {1}</p></translation> </message> @@ -7463,117 +7463,117 @@ <translation type="obsolete"><p><b>{0}</b> dosyası zaten var.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion</source> <translation>Otomatik tamamlama</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Otomatiktamamlama uygun değil çünkü bu otomatiktamamlama kaynağı değil.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4270"/> + <location filename="QScintilla/Editor.py" line="4280"/> <source>Disable breakpoint</source> <translation>Durmanoktasını iptal et</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Code Coverage</source> <translation>Kod Koruyucu</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Please select a coverage file</source> <translation>Lütfen bir koruyucu dosya seçiniz</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>Show Code Coverage Annotations</source> <translation>Kodların Dipnotunu Göster</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4629"/> + <location filename="QScintilla/Editor.py" line="4639"/> <source>All lines have been covered.</source> <translation>Tüm satırlar korumaya alındı.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>There is no coverage file available.</source> <translation>Hazırda koruma dosyası yok.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Profile Data</source> <translation>Veri Kesiti</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Please select a profile file</source> <translation>Lütfen kesit dosyasını seçiniz</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>Syntax Error</source> <translation>Sözdizimi Hatası</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>No syntax error message available.</source> <translation>Uygun söz dizimi hata mesajı yok.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>py3flakes Warning</source> <translation>Py3Parçaları Uyarısı</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>No py3flakes warning message available.</source> <translation>Hazırda Pyparçaları "uyarı mesajı" yok.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Macro Name</source> <translation>Makro Adı</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Select a macro name:</source> <translation>Bir makro ismi seç:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5108"/> + <location filename="QScintilla/Editor.py" line="5118"/> <source>Load macro file</source> <translation>Makro dosyasını yükle</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Macro files (*.macro)</source> <translation>Makro dosyaları (*.macro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source>Error loading macro</source> <translation>Makronun yüklenmesinde hata</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5122"/> + <location filename="QScintilla/Editor.py" line="5132"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Makro dosyası <b>{0}</b> okunamıyor.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Makro dosyası <b>{0}</b> bozuk.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Save macro file</source> <translation>Makro Dosyasını Kaydet</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source>Save macro</source> <translation>Makro Kaydet</translation> </message> @@ -7583,37 +7583,37 @@ <translation type="obsolete"><p>Makro dosyası <b>{0}</b> zaten açık.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source>Error saving macro</source> <translation>Makronun kaydedilmesinde hata</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Makro dosyası <b>{0}</b> yazılamıyor.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Start Macro Recording</source> <translation>Makro Kaydı Başladı</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Macro recording is already active. Start new?</source> <translation>Makro kaydı şuan aktif. Yeniden başlasın mı?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Macro Recording</source> <translation>Makro Kaydediliyor</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Enter name of the macro:</source> <translation>Makronun ismini gir:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5332"/> + <location filename="QScintilla/Editor.py" line="5342"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation><p>Eric5 ile açıldıktan sonra <b>{0}</b> dosyasında değişiklik olmuş. Yeniden açılsın mı?</p></translation> </message> @@ -7623,157 +7623,157 @@ <translation type="obsolete"><br><b>Uyarı:</b> Yapılan değişiklikleri yeniden açarken kaybedebilirsiniz.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5341"/> + <location filename="QScintilla/Editor.py" line="5351"/> <source>File changed</source> <translation>Dosya değiştirilmiş</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5479"/> + <location filename="QScintilla/Editor.py" line="5489"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> bir dosya değil.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5614"/> + <location filename="QScintilla/Editor.py" line="5624"/> <source>Resources</source> <translation>Kaynaklar</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5616"/> + <location filename="QScintilla/Editor.py" line="5626"/> <source>Add file...</source> <translation>Dosya ekle...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5618"/> + <location filename="QScintilla/Editor.py" line="5628"/> <source>Add files...</source> <translation>Dosyaları ekle...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5620"/> + <location filename="QScintilla/Editor.py" line="5630"/> <source>Add aliased file...</source> <translation>Kısaltmalar dosyasına ekle...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5622"/> + <location filename="QScintilla/Editor.py" line="5632"/> <source>Add localized resource...</source> <translation>Yaral kaynak ekle...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5625"/> + <location filename="QScintilla/Editor.py" line="5635"/> <source>Add resource frame</source> <translation>Çerçeve kaynağı ekle</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5643"/> + <location filename="QScintilla/Editor.py" line="5653"/> <source>Add file resource</source> <translation>Dosya kaynağını ekle</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5659"/> + <location filename="QScintilla/Editor.py" line="5669"/> <source>Add file resources</source> <translation>Dosya kaynaklarını ekle</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Add aliased file resource</source> <translation>Kısaltmalar dosyası kaynağını ekle</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Alias for file <b>{0}</b>:</source> <translation><b>{0} dosyası için takma ad</b>:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Package Diagram</source> <translation>Paket Şeması</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Include class attributes?</source> <translation>Sınıf nitelikleri dahil edilsin mi?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Imports Diagram</source> <translation>Şemayı İçe Aktar</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Include imports from external modules?</source> <translation>Harici modüllerdan içe aktarım dahil edilsin mi?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Application Diagram</source> <translation>Uygulama Şeması</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Include module names?</source> <translation>Modül isimleri dahil edilsin mi?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6016"/> + <location filename="QScintilla/Editor.py" line="6026"/> <source>Add to dictionary</source> <translation>Sözlüğe ekle</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6018"/> + <location filename="QScintilla/Editor.py" line="6028"/> <source>Ignore All</source> <translation>Hepsini Yoksay</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p><b>{0}</b> dosyası halen mevcut. Üzerine yazılsın mı?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5024"/> + <location filename="QScintilla/Editor.py" line="5034"/> <source>Warning: {0}</source> <translation>Dikkat: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5030"/> + <location filename="QScintilla/Editor.py" line="5040"/> <source>Error: {0}</source> <translation>Hata: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Makro dosyası <b>{0}</b> zaten var. Üzerine yazılsın mı?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5337"/> + <location filename="QScintilla/Editor.py" line="5347"/> <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="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <source>Activating Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <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="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Activating Calltip Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> @@ -9815,112 +9815,112 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="124"/> <source>Fonts</source> <translation>Yazı Tipleri</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="130"/> <source>Select, whether the monospaced font should be used as default</source> <translation>Varsayılan yazı tipi olarak tekhacimli yazıtipinin olup olmayacağını, seçiniz</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="133"/> <source>Use monospaced as default</source> <translation>Tek hacimi varsayılan olarak kullan</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="143"/> <source>Default Text</source> <translation>Varsayılan Metin</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="79"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="156"/> <source>Press to select the default font for the editor's text</source> <translation>Düzenleyici metninin varsayılan yazı tipini seçmek için basınız</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="159"/> <source>Default Text Font</source> <translation>Varsayılan Metin Yazı Tipi</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="89"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="166"/> <source>Press to select the font to be used as the monospaced font</source> <translation>Kululnulan yazı tipini tek hacimli yazıtipi olarak seçmek için basınız</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="92"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="169"/> <source>Monospaced Font</source> <translation>Tek Hacimli Yazıtipi</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="102"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="179"/> <source>Monospaced Text</source> <translation>Tek Hacimli Metin</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="118"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="195"/> <source>Margins</source> <translation>Sınırlar</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="126"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="203"/> <source>Select whether line numbers margin should be shown.</source> <translation>Satır numaralarının gösterilip gösterilmeyeceğini seç.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="129"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="206"/> <source>Show Line Numbers Margin</source> <translation>Satır Numanalarını Kenarda Göster</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="136"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="213"/> <source>Select whether the fold margin should be shown.</source> <translation>katlama sınırının gösterilip göbterilmeyeceğini seçiniz.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="139"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="216"/> <source>Show Fold Margin</source> <translation>Katlama sınırını göster</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="146"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="223"/> <source>Select to show unified margins (like eric4 < 4.3.0)</source> <translation>Birleştirmi sınırlarını göstermek için seçiniz (eric4 < 4.3.0 gibi)</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="149"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="226"/> <source>Show unified margins</source> <translation>Birleştirme sınırını göster</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="160"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="237"/> <source>Linenumbers width:</source> <translation>Satır Numarası ile:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="170"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> <source>Move to set the width of the linenumbers margin.</source> <translation>Kenardaki Satırnumarlarının genişliğini ayarlamak için taşı.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="192"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="269"/> <source>Displays the selected width of the linenumbers margin.</source> <translation>kenarsatırnumaralarının seçilen genişliğini göster.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="212"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="289"/> <source>Folding style:</source> <translation>Klasör stili:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="225"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="302"/> <source>Select the folding style to be used in the folding margin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="228"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="305"/> <source><b>Folding style</b> <p>Select the desired folding style to be used in the folding margin.</p> <p>The available styles are: @@ -9935,500 +9935,540 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="242"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="319"/> <source>Plain</source> <translation>Sade</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="324"/> <source>Circled</source> <translation>Darireye alınmış</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="252"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="329"/> <source>Boxed</source> <translation>Kutulu</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="334"/> <source>Circled Tree</source> <translation>Çevrelenmiş ağaç yapısı</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="262"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="339"/> <source>Boxed Tree</source> <translation>Kutulu Ağaç</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="284"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="361"/> <source>Margins foreground:</source> <translation>Önalan sınırları:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="297"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="374"/> <source>Select the foreground colour for the margins</source> <translation>Kenarlar için önalan rengini seç</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="307"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="384"/> <source>Margins background:</source> <translation>Arkaalan sınırları:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="320"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="397"/> <source>Select the background colour for the margins</source> <translation>Kenarlar için arkaalan rengini seç</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="330"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="407"/> <source>Foldmargin background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="343"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="420"/> <source>Select the background colour for the foldmargin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="403"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="480"/> <source>Press to select the font for the editor line numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="406"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="483"/> <source>Line Numbers Font</source> <translation>Satır Numaralarının Yazı Tipi</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="422"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="499"/> <source>2345</source> <translation>2345</translation> </message> <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="530"/> + <source>Selection</source> + <translation>Seçim</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="538"/> + <source>Select to use custom selection colours</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="541"/> + <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="544"/> + <source>Use custom selection colours</source> + <translation>Özel seçim renklerini kullan</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="551"/> + <source>Select, if selected text should be colourized by the lexer.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="554"/> + <source>Colourize selected text</source> + <translation>Seçilen metni renklendir</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="561"/> + <source>Select to extend selection to end of line</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="564"/> + <source>Extend selection to end of line</source> + <translation>Seçimi satırın sonuna kadar aşağı genişlet</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="575"/> + <source>Selection foreground:</source> + <translation>Seçim önalanı:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="588"/> + <source>Select the foreground colour for the selection.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="598"/> + <source>Selection background:</source> + <translation>Seçim arkaalanı:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="611"/> + <source>Select the background colour for the selection.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="626"/> + <source>Caret</source> + <translation>Düzeltme İmi</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="632"/> + <source>Select, whether the caretline should be highlighted</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="635"/> + <source>Caretline visible</source> + <translation>Düzeltme imi görünür</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="644"/> + <source>Caret width:</source> + <translation>Düzeltme imi genişliği:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="651"/> + <source>Select caret width (1, 2 or 3 pixels)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="684"/> + <source>Caret foreground:</source> + <translation>Düzeltme imi önalan:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="697"/> + <source>Select the colour for the caret.</source> + <translation>Düzeltme imi için renk seçiniz.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="707"/> + <source>Caretline background:</source> + <translation>Düzeltme imi çizgisi arkaalan:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="720"/> + <source>Select the background colour for the line containing the caret.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="735"/> + <source>Debugging Line Markers</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="741"/> + <source>Current line marker:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="754"/> + <source>Select the colour for the current line marker.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="764"/> + <source>Error line marker:</source> + <translation>Hatalı satır işaretleyicisi:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="777"/> + <source>Select the colour for the error line marker.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="790"/> + <source>Braces</source> + <translation>Köşeli ayraçlar</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="796"/> + <source>Select whether matching and bad braces shall be highlighted.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="799"/> + <source>Highlight braces</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="806"/> + <source>Matched braces:</source> + <translation>Eşleşen Köşeli ayraçlar:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="819"/> + <source>Select the colour for highlighting matching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="829"/> + <source>Matched braces background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> + <source>Select the background colour for highlighting matching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="858"/> + <source>Unmatched brace:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="865"/> + <source>Select the colour for highlighting nonmatching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="881"/> + <source>Unmatched brace background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="888"/> + <source>Select the background colour for highlighting nonmatching braces.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="901"/> + <source>End of Line</source> + <translation>Satırın Sonu</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="909"/> + <source>Select whether end of line shall be shown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="912"/> + <source>Show End of Line</source> + <translation>Satır Sonunu Göster</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="919"/> + <source>Select, whether long lines should be wrapped</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="922"/> + <source>Wrap long lines</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="931"/> + <source>Edge Mode</source> + <translation>Köşe Modu</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="975"/> + <source>Select the colour for the edge marker.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="985"/> + <source>Background colour:</source> + <translation>Arkaalan rengi:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="998"/> + <source>Move to set the edge column.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> + <source>Displays the selected tab width.</source> + <translation>Seçilen sekme genişliğini göster.</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1042"/> + <source>Column number:</source> + <translation>Sütun numarası:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <source>Mode:</source> + <translation>Mod:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1063"/> + <source>Disabled</source> + <translation>Onaylanmamış</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1068"/> + <source>Draw Line</source> + <translation>Çizgi Çizimi</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <source>Change Background Colour</source> + <translation>Arkaalan Rengini Değiştir</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1087"/> + <source>Zoom</source> + <translation>Büyüt</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1093"/> + <source>Initial zoom factor:</source> + <translation>Başlangıç büyütme katsayısı:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> + <source>Move to set the initial zoom factor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1125"/> + <source>Displays the selected initial zoom factor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1362"/> + <source>Various</source> + <translation>Çeşitli</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1259"/> + <source>Select whether whitspace characters shall be shown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1262"/> + <source>Show Whitespace</source> + <translation>Boş Alanları Göster</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1368"/> + <source>Select to show a minimalistic context menu</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1371"/> + <source>Show minimal context menu</source> + <translation>Enaz açılır menüyü göster</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="344"/> + <source>Arrow</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="349"/> + <source>Arrow Tree</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="430"/> + <source>Foldmarkers foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="443"/> + <source>Select the foreground colour of the foldmarkers</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="453"/> - <source>Selection</source> - <translation>Seçim</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="461"/> - <source>Select to use custom selection colours</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="464"/> - <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="467"/> - <source>Use custom selection colours</source> - <translation>Özel seçim renklerini kullan</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="474"/> - <source>Select, if selected text should be colourized by the lexer.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="477"/> - <source>Colourize selected text</source> - <translation>Seçilen metni renklendir</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="484"/> - <source>Select to extend selection to end of line</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="487"/> - <source>Extend selection to end of line</source> - <translation>Seçimi satırın sonuna kadar aşağı genişlet</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="498"/> - <source>Selection foreground:</source> - <translation>Seçim önalanı:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="511"/> - <source>Select the foreground colour for the selection.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="521"/> - <source>Selection background:</source> - <translation>Seçim arkaalanı:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="534"/> - <source>Select the background colour for the selection.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="549"/> - <source>Caret</source> - <translation>Düzeltme İmi</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="555"/> - <source>Select, whether the caretline should be highlighted</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="558"/> - <source>Caretline visible</source> - <translation>Düzeltme imi görünür</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="567"/> - <source>Caret width:</source> - <translation>Düzeltme imi genişliği:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="574"/> - <source>Select caret width (1, 2 or 3 pixels)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="607"/> - <source>Caret foreground:</source> - <translation>Düzeltme imi önalan:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="620"/> - <source>Select the colour for the caret.</source> - <translation>Düzeltme imi için renk seçiniz.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="630"/> - <source>Caretline background:</source> - <translation>Düzeltme imi çizgisi arkaalan:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="643"/> - <source>Select the background colour for the line containing the caret.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="658"/> - <source>Debugging Line Markers</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="664"/> - <source>Current line marker:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="677"/> - <source>Select the colour for the current line marker.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="687"/> - <source>Error line marker:</source> - <translation>Hatalı satır işaretleyicisi:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="700"/> - <source>Select the colour for the error line marker.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="713"/> - <source>Braces</source> - <translation>Köşeli ayraçlar</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> - <source>Select whether matching and bad braces shall be highlighted.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="722"/> - <source>Highlight braces</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="729"/> - <source>Matched braces:</source> - <translation>Eşleşen Köşeli ayraçlar:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="742"/> - <source>Select the colour for highlighting matching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="752"/> - <source>Matched braces background:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="765"/> - <source>Select the background colour for highlighting matching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="781"/> - <source>Unmatched brace:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="788"/> - <source>Select the colour for highlighting nonmatching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="804"/> - <source>Unmatched brace background:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="811"/> - <source>Select the background colour for highlighting nonmatching braces.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="824"/> - <source>End of Line</source> - <translation>Satırın Sonu</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="832"/> - <source>Select whether end of line shall be shown</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="835"/> - <source>Show End of Line</source> - <translation>Satır Sonunu Göster</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> - <source>Select, whether long lines should be wrapped</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="845"/> - <source>Wrap long lines</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="854"/> - <source>Edge Mode</source> - <translation>Köşe Modu</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="898"/> - <source>Select the colour for the edge marker.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="908"/> - <source>Background colour:</source> - <translation>Arkaalan rengi:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> - <source>Move to set the edge column.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="949"/> - <source>Displays the selected tab width.</source> - <translation>Seçilen sekme genişliğini göster.</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="965"/> - <source>Column number:</source> - <translation>Sütun numarası:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="972"/> - <source>Mode:</source> - <translation>Mod:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="986"/> - <source>Disabled</source> - <translation>Onaylanmamış</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="991"/> - <source>Draw Line</source> - <translation>Çizgi Çizimi</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="996"/> - <source>Change Background Colour</source> - <translation>Arkaalan Rengini Değiştir</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1010"/> - <source>Zoom</source> - <translation>Büyüt</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1016"/> - <source>Initial zoom factor:</source> - <translation>Başlangıç büyütme katsayısı:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> - <source>Move to set the initial zoom factor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1048"/> - <source>Displays the selected initial zoom factor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1285"/> - <source>Various</source> - <translation>Çeşitli</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1182"/> - <source>Select whether whitspace characters shall be shown</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1185"/> - <source>Show Whitespace</source> - <translation>Boş Alanları Göster</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1291"/> - <source>Select to show a minimalistic context menu</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1294"/> - <source>Show minimal context menu</source> - <translation>Enaz açılır menüyü göster</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="267"/> - <source>Arrow</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="272"/> - <source>Arrow Tree</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="353"/> - <source>Foldmarkers foreground:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="366"/> - <source>Select the foreground colour of the foldmarkers</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="376"/> <source>Foldmarkers background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="466"/> <source>Select the background colour of the foldmarkers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1067"/> - <source>Annotations</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> - <source>Select to enable the display of annotations</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> - <source>Show annotations</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1083"/> - <source>Warnings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1134"/> - <source>Press to select the foreground colour</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1137"/> - <source>Foreground</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> + <source>Annotations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1150"/> + <source>Select to enable the display of annotations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1153"/> + <source>Show annotations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1160"/> + <source>Warnings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1211"/> + <source>Press to select the foreground colour</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1214"/> + <source>Foreground</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1221"/> <source>Press to select the background colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1147"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1224"/> <source>Background</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1189"/> <source>Warning: There might be an error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1128"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1205"/> <source>Errors</source> <translation>Hatalar</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1157"/> - <source>Error: There is an error.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1176"/> - <source>Whitespace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1194"/> - <source>Whitespace size:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1201"/> - <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="1234"/> + <source>Error: There is an error.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1253"/> + <source>Whitespace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1271"/> + <source>Whitespace size:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1278"/> + <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="1311"/> <source>Whitespace foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1324"/> <source>Select the foreground colour for visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1334"/> <source>Whitespace background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1270"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> <source>Select the background colour for visible whitespace</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colour</source> + <translation type="obsolete">Renk</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <source>Select to set the colour of the edit area different to the default style</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <source>Override edit area colours</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <source>Edit area foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <source>Select the foreground colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="95"/> + <source>Edit area background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="111"/> + <source>Select the background colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colours</source> + <translation type="unfinished">Renkler</translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -25505,7 +25545,7 @@ <translation>Dosya Kaydedildi</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2278"/> + <location filename="QScintilla/MiniEditor.py" line="2282"/> <source>Untitled</source> <translation>Başlıksız</translation> </message> @@ -25520,67 +25560,67 @@ <translation>Mini Düzenleyici</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2244"/> + <location filename="QScintilla/MiniEditor.py" line="2248"/> <source>Printing...</source> <translation>Yazılıyor...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2260"/> + <location filename="QScintilla/MiniEditor.py" line="2264"/> <source>Printing completed</source> <translation>Yazdırma tamalandı</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2262"/> + <location filename="QScintilla/MiniEditor.py" line="2266"/> <source>Error while printing</source> <translation>Yazdırılırken hata</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2265"/> + <location filename="QScintilla/MiniEditor.py" line="2269"/> <source>Printing aborted</source> <translation>Yazdırma iptal edildi</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2318"/> + <location filename="QScintilla/MiniEditor.py" line="2322"/> <source>Select all</source> <translation>Hepsini seç</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2319"/> + <location filename="QScintilla/MiniEditor.py" line="2323"/> <source>Deselect all</source> <translation>Tüm seçimi iptal et</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2330"/> + <location filename="QScintilla/MiniEditor.py" line="2334"/> <source>Languages</source> <translation>Diller</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2333"/> + <location filename="QScintilla/MiniEditor.py" line="2337"/> <source>No Language</source> <translation>Dil Yok</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2352"/> + <location filename="QScintilla/MiniEditor.py" line="2356"/> <source>Guessed</source> <translation>Tahmin edilen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2372"/> + <location filename="QScintilla/MiniEditor.py" line="2376"/> <source>Alternatives</source> <translation>Alternatifler</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2369"/> + <location filename="QScintilla/MiniEditor.py" line="2373"/> <source>Alternatives ({0})</source> <translation>Alternatifler ({0})</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Pygments Lexer</source> <translation>Pygments Lexer</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Select the Pygments lexer to apply.</source> <translation>Kullanmak için Pygment lexer seç.</translation> </message> @@ -28010,27 +28050,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="971"/> + <location filename="Preferences/__init__.py" line="976"/> <source>Export Preferences</source> <translation>Seçenekleri Dışa Aktar</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Import Preferences</source> <translation>Seçenekleri İçe Aktar</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -34302,61 +34342,61 @@ <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select History</source> <translation>Geçmişi Seç</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>geçmişte yapılanları göster (ençok gösterilenleri seç).</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="541"/> + <location filename="QScintilla/Shell.py" line="548"/> <source>Passive Debug Mode</source> <translation>Pasif Hata Ayıklama Modu</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="542"/> + <location filename="QScintilla/Shell.py" line="549"/> <source> Not connected</source> <translation> Bağlantı yok</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="544"/> + <location filename="QScintilla/Shell.py" line="551"/> <source>No.</source> <translation>NO.</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="546"/> + <location filename="QScintilla/Shell.py" line="553"/> <source>{0} on {1}, {2}</source> <translation>{0} üzerin {1}, {2}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="607"/> + <location filename="QScintilla/Shell.py" line="614"/> <source>StdOut: {0}</source> <translation>Stdçıktı:{0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="615"/> + <location filename="QScintilla/Shell.py" line="622"/> <source>StdErr: {0}</source> <translation>stdhata: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1158"/> + <location filename="QScintilla/Shell.py" line="1165"/> <source>Shell language "{0}" not supported. </source> <translation>Kabuk dili "{0}" desteklenmiyor. </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> bir dosya değil.</p></translation> </message> @@ -42244,17 +42284,17 @@ <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select History</source> <translation>Geçmişi Seç</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>geçmişte yapılanları göster (ençok gösterilenleri seç).</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="909"/> + <location filename="QScintilla/Terminal.py" line="916"/> <source>No shell has been configured.</source> <translation>Kabuk ayarlanmadı.</translation> </message>
--- a/i18n/eric5_zh_CN.GB2312.ts Fri Jan 20 18:54:06 2012 +0100 +++ b/i18n/eric5_zh_CN.GB2312.ts Sat Jan 21 15:01:53 2012 +0100 @@ -7514,7 +7514,7 @@ <context> <name>Editor</name> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <source>Open File</source> <translation>打开文件</translation> </message> @@ -7604,7 +7604,7 @@ <translation>全部取消选择</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6014"/> + <location filename="QScintilla/Editor.py" line="6024"/> <source>Check spelling...</source> <translation>正在进行拼写检查……</translation> </message> @@ -7859,7 +7859,7 @@ <translation>编辑断点……</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4267"/> + <location filename="QScintilla/Editor.py" line="4277"/> <source>Enable breakpoint</source> <translation>允许断点</translation> </message> @@ -7954,37 +7954,37 @@ <translation>选择要应用的 Pygments 词法分析器。</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>Modification of Read Only file</source> <translation>只读文件的改变</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1557"/> + <location filename="QScintilla/Editor.py" line="1560"/> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>试图改变只读文件。请先保存到另一个文件中。</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2186"/> + <location filename="QScintilla/Editor.py" line="2189"/> <source>Printing...</source> <translation>打印中……</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2203"/> + <location filename="QScintilla/Editor.py" line="2206"/> <source>Printing completed</source> <translation>打印已完成</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2205"/> - <source>Error while printing</source> - <translation>打印时出错</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="2208"/> + <source>Error while printing</source> + <translation>打印时出错</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2211"/> <source>Printing aborted</source> <translation>打印失败</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source>File Modified</source> <translation>文件已改变</translation> </message> @@ -7999,7 +7999,7 @@ <translation type="obsolete"><p>文件 <b>%1</b> 无法打开。</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <source>Save File</source> <translation>保存文件</translation> </message> @@ -8014,52 +8014,52 @@ <translation type="obsolete"><p>文件 <b>%1</b> 已存在。</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion</source> <translation>自动完成</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3777"/> + <location filename="QScintilla/Editor.py" line="3787"/> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>自动完成无效,没有设定自动完成源。</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4270"/> + <location filename="QScintilla/Editor.py" line="4280"/> <source>Disable breakpoint</source> <translation>去除断点</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Code Coverage</source> <translation>代码覆盖率</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4587"/> + <location filename="QScintilla/Editor.py" line="4597"/> <source>Please select a coverage file</source> <translation>请选择一个覆盖率文件</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>Show Code Coverage Annotations</source> <translation>显示代码覆盖率注解</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4629"/> + <location filename="QScintilla/Editor.py" line="4639"/> <source>All lines have been covered.</source> <translation>所有行均被已覆盖。</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4633"/> + <location filename="QScintilla/Editor.py" line="4643"/> <source>There is no coverage file available.</source> <translation>没有有效的覆盖率文件。</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Profile Data</source> <translation>剖析数据</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4725"/> + <location filename="QScintilla/Editor.py" line="4735"/> <source>Please select a profile file</source> <translation>请选择一个剖析文件</translation> </message> @@ -8084,37 +8084,37 @@ <translation type="obsolete">请选择要移除的循环报告</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>Syntax Error</source> <translation>语法错误</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4855"/> + <location filename="QScintilla/Editor.py" line="4865"/> <source>No syntax error message available.</source> <translation>语法错误消息无效。</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Macro Name</source> <translation>宏名称</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5080"/> + <location filename="QScintilla/Editor.py" line="5090"/> <source>Select a macro name:</source> <translation>选择一个宏名称:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5108"/> + <location filename="QScintilla/Editor.py" line="5118"/> <source>Load macro file</source> <translation>输入宏文件</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Macro files (*.macro)</source> <translation>宏文件 (*.macro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source>Error loading macro</source> <translation>载入宏文件出错</translation> </message> @@ -8129,12 +8129,12 @@ <translation type="obsolete"><p>宏文件 <b>%1</b> 已损坏。</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5148"/> + <location filename="QScintilla/Editor.py" line="5158"/> <source>Save macro file</source> <translation>保存宏文件</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <source>Save macro</source> <translation>保存宏</translation> </message> @@ -8144,7 +8144,7 @@ <translation type="obsolete"><p>宏文件 <b>%1</b> 已存在。</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <source>Error saving macro</source> <translation>保存宏出错</translation> </message> @@ -8154,22 +8154,22 @@ <translation type="obsolete"><p>无法写入宏文件 <b>%1</b> 。</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Start Macro Recording</source> <translation>开始宏录制</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5191"/> + <location filename="QScintilla/Editor.py" line="5201"/> <source>Macro recording is already active. Start new?</source> <translation>宏录制已激活。开始录制新宏?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Macro Recording</source> <translation>宏录制</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5216"/> + <location filename="QScintilla/Editor.py" line="5226"/> <source>Enter name of the macro:</source> <translation>输入宏名称:</translation> </message> @@ -8184,7 +8184,7 @@ <translation type="obsolete"><br><b>警告:</b> 重新打开将导致更改丢失。</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5341"/> + <location filename="QScintilla/Editor.py" line="5351"/> <source>File changed</source> <translation>文件已改变</translation> </message> @@ -8194,7 +8194,7 @@ <translation type="obsolete">%1 (ro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source>Drop Error</source> <translation>降落误差</translation> </message> @@ -8204,47 +8204,47 @@ <translation type="obsolete"><p><b>%1</b> 不是一个文件。</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5614"/> + <location filename="QScintilla/Editor.py" line="5624"/> <source>Resources</source> <translation>资源</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5616"/> + <location filename="QScintilla/Editor.py" line="5626"/> <source>Add file...</source> <translation>添加文件……</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5618"/> + <location filename="QScintilla/Editor.py" line="5628"/> <source>Add files...</source> <translation>添加文件……</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5620"/> + <location filename="QScintilla/Editor.py" line="5630"/> <source>Add aliased file...</source> <translation>添加别名文件……</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5622"/> + <location filename="QScintilla/Editor.py" line="5632"/> <source>Add localized resource...</source> <translation>添加本地资源……</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5625"/> + <location filename="QScintilla/Editor.py" line="5635"/> <source>Add resource frame</source> <translation>添加资源结构</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5643"/> + <location filename="QScintilla/Editor.py" line="5653"/> <source>Add file resource</source> <translation>添加文件资源</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5659"/> + <location filename="QScintilla/Editor.py" line="5669"/> <source>Add file resources</source> <translation>添加多个文件资源</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Add aliased file resource</source> <translation>添加别名文件资源</translation> </message> @@ -8254,42 +8254,42 @@ <translation type="obsolete">重命名文件 <b>%1</b>:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Package Diagram</source> <translation>程序包图</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5747"/> + <location filename="QScintilla/Editor.py" line="5757"/> <source>Include class attributes?</source> <translation>包含类属性?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Imports Diagram</source> <translation>引用图</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5764"/> + <location filename="QScintilla/Editor.py" line="5774"/> <source>Include imports from external modules?</source> <translation>从外部模块包含引用?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Application Diagram</source> <translation>应用程序图</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5776"/> + <location filename="QScintilla/Editor.py" line="5786"/> <source>Include module names?</source> <translation>包含模块名?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6016"/> + <location filename="QScintilla/Editor.py" line="6026"/> <source>Add to dictionary</source> <translation>添加到文件夹</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6018"/> + <location filename="QScintilla/Editor.py" line="6028"/> <source>Ignore All</source> <translation>全部忽略</translation> </message> @@ -8314,52 +8314,52 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2359"/> + <location filename="QScintilla/Editor.py" line="2362"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2407"/> + <location filename="QScintilla/Editor.py" line="2410"/> <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="2508"/> + <location filename="QScintilla/Editor.py" line="2511"/> <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="5122"/> + <location filename="QScintilla/Editor.py" line="5132"/> <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="5129"/> + <location filename="QScintilla/Editor.py" line="5139"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5180"/> + <location filename="QScintilla/Editor.py" line="5190"/> <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="5332"/> + <location filename="QScintilla/Editor.py" line="5342"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5479"/> + <location filename="QScintilla/Editor.py" line="5489"/> <source>{0} (ro)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5596"/> + <location filename="QScintilla/Editor.py" line="5606"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5686"/> + <location filename="QScintilla/Editor.py" line="5696"/> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished"></translation> </message> @@ -8384,57 +8384,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>py3flakes Warning</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4981"/> + <location filename="QScintilla/Editor.py" line="4991"/> <source>No py3flakes warning message available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2560"/> + <location filename="QScintilla/Editor.py" line="2563"/> <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="5165"/> + <location filename="QScintilla/Editor.py" line="5175"/> <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="5024"/> + <location filename="QScintilla/Editor.py" line="5034"/> <source>Warning: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5030"/> + <location filename="QScintilla/Editor.py" line="5040"/> <source>Error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5337"/> + <location filename="QScintilla/Editor.py" line="5347"/> <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="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <source>Activating Auto-Completion Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="3873"/> + <location filename="QScintilla/Editor.py" line="3883"/> <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="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Activating Calltip Provider</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4058"/> + <location filename="QScintilla/Editor.py" line="4068"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation type="unfinished"></translation> </message> @@ -10486,112 +10486,112 @@ <translation><b>配置编辑器风格</b></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="124"/> <source>Fonts</source> <translation>字体</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="130"/> <source>Select, whether the monospaced font should be used as default</source> <translation>选择是否将等宽字体作为默认字体</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="133"/> <source>Use monospaced as default</source> <translation>默认使用等宽字体</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="143"/> <source>Default Text</source> <translation>默认文本 Default Text</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="79"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="156"/> <source>Press to select the default font for the editor's text</source> <translation>点击为编辑器文本选择默认字体</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="159"/> <source>Default Text Font</source> <translation>默认文本字体</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="89"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="166"/> <source>Press to select the font to be used as the monospaced font</source> <translation>点击选择被用作等宽字体的字体</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="92"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="169"/> <source>Monospaced Font</source> <translation>等宽字体</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="102"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="179"/> <source>Monospaced Text</source> <translation>等宽文本 Monospaced Text</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="118"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="195"/> <source>Margins</source> <translation>页边空白</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="126"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="203"/> <source>Select whether line numbers margin should be shown.</source> <translation>选择是否显示行号。</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="129"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="206"/> <source>Show Line Numbers Margin</source> <translation>显示行号</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="136"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="213"/> <source>Select whether the fold margin should be shown.</source> <translation>选择是否显示折叠符号</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="139"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="216"/> <source>Show Fold Margin</source> <translation>显示折叠符号</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="146"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="223"/> <source>Select to show unified margins (like eric4 < 4.3.0)</source> <translation>选择显示统一的页边空白(与 eric4 低于 4.3.0 的版本相同)</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="149"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="226"/> <source>Show unified margins</source> <translation>显示统一页边空白</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="160"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="237"/> <source>Linenumbers width:</source> <translation>行号宽度:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="170"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> <source>Move to set the width of the linenumbers margin.</source> <translation>移动可设定行号区域的宽度。</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="192"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="269"/> <source>Displays the selected width of the linenumbers margin.</source> <translation>显示已选择的行号区域宽度。</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="212"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="289"/> <source>Folding style:</source> <translation>折叠风格:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="225"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="302"/> <source>Select the folding style to be used in the folding margin</source> <translation>选择在折叠符号区域中使用的折叠符风格</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="228"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="305"/> <source><b>Folding style</b> <p>Select the desired folding style to be used in the folding margin.</p> <p>The available styles are: @@ -10616,407 +10616,407 @@ </p></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="242"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="319"/> <source>Plain</source> <translation>简单</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="324"/> <source>Circled</source> <translation>圆形</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="252"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="329"/> <source>Boxed</source> <translation>方形</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="334"/> <source>Circled Tree</source> <translation>圆形树</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="262"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="339"/> <source>Boxed Tree</source> <translation>方形树</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="284"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="361"/> <source>Margins foreground:</source> <translation>页边空白前景色:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="297"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="374"/> <source>Select the foreground colour for the margins</source> <translation>为页边空白选择前景色</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="307"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="384"/> <source>Margins background:</source> <translation>页边空白背景色:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="320"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="397"/> <source>Select the background colour for the margins</source> <translation>为页边空白选择背景色</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="330"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="407"/> <source>Foldmargin background:</source> <translation>折叠符区域背景色:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="343"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="420"/> <source>Select the background colour for the foldmargin</source> <translation>为折叠符区域选择背景色</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="403"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="480"/> <source>Press to select the font for the editor line numbers</source> <translation>点击为编辑器行号选择字体</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="406"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="483"/> <source>Line Numbers Font</source> <translation>行号字体</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="422"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="499"/> <source>2345</source> <translation>2345</translation> </message> <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="530"/> + <source>Selection</source> + <translation>选区</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="538"/> + <source>Select to use custom selection colours</source> + <translation>选择可使用自定义选区颜色</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="541"/> + <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> + <translation><b>使用自定义选区颜色</b><p>选择该条目可在编辑器和命令行窗口中使用自定义选区颜色。选区的前景色和背景色在颜色页面中定义。</p></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="544"/> + <source>Use custom selection colours</source> + <translation>使用自定义选区颜色</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="551"/> + <source>Select, if selected text should be colourized by the lexer.</source> + <translation>选择所选文本是否由词法分析器着色</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="554"/> + <source>Colourize selected text</source> + <translation>为所选文本着色</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="561"/> + <source>Select to extend selection to end of line</source> + <translation>选择将选区扩展到行尾</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="564"/> + <source>Extend selection to end of line</source> + <translation>选区扩展到行尾</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="575"/> + <source>Selection foreground:</source> + <translation>选区前景色:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="588"/> + <source>Select the foreground colour for the selection.</source> + <translation>为选区选择前景色。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="598"/> + <source>Selection background:</source> + <translation>选区背景色:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="611"/> + <source>Select the background colour for the selection.</source> + <translation>为选区选择背景色。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="626"/> + <source>Caret</source> + <translation>插入符</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="632"/> + <source>Select, whether the caretline should be highlighted</source> + <translation>选择是否高亮显示插入行</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="635"/> + <source>Caretline visible</source> + <translation>插入行可见</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="644"/> + <source>Caret width:</source> + <translation>插入符宽度:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="651"/> + <source>Select caret width (1, 2 or 3 pixels)</source> + <translation>选择插入符宽度(1、2 或 3 像素)</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="684"/> + <source>Caret foreground:</source> + <translation>插入符前景:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="697"/> + <source>Select the colour for the caret.</source> + <translation>为插入符选择颜色。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="707"/> + <source>Caretline background:</source> + <translation>插入行背景:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="720"/> + <source>Select the background colour for the line containing the caret.</source> + <translation>为包含插入符的行选择背景色。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="735"/> + <source>Debugging Line Markers</source> + <translation>调试行标记</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="741"/> + <source>Current line marker:</source> + <translation>当前行标记:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="754"/> + <source>Select the colour for the current line marker.</source> + <translation>为当前行标记选择颜色。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="764"/> + <source>Error line marker:</source> + <translation>错误行标记:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="777"/> + <source>Select the colour for the error line marker.</source> + <translation>为错误行标记选择颜色。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="790"/> + <source>Braces</source> + <translation>括号</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="796"/> + <source>Select whether matching and bad braces shall be highlighted.</source> + <translation>选择是否对配对和不配对的括号进行高亮显示。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="799"/> + <source>Highlight braces</source> + <translation>高亮显示括号</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="806"/> + <source>Matched braces:</source> + <translation>已配对的括号:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="819"/> + <source>Select the colour for highlighting matching braces.</source> + <translation>为高亮显示的配对括号选择颜色。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="829"/> + <source>Matched braces background:</source> + <translation>已配对括号背景色:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> + <source>Select the background colour for highlighting matching braces.</source> + <translation>为高亮显示的配对括号选择背景色。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="858"/> + <source>Unmatched brace:</source> + <translation>未配对的括号:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="865"/> + <source>Select the colour for highlighting nonmatching braces.</source> + <translation>为高亮显示的未配对括号选择颜色。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="881"/> + <source>Unmatched brace background:</source> + <translation>未配对括号背景色:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="888"/> + <source>Select the background colour for highlighting nonmatching braces.</source> + <translation>为高亮显示的未配对括号选择背景色。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="901"/> + <source>End of Line</source> + <translation>行尾</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="909"/> + <source>Select whether end of line shall be shown</source> + <translation>选择是否显示行尾符</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="912"/> + <source>Show End of Line</source> + <translation>显示行尾</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="919"/> + <source>Select, whether long lines should be wrapped</source> + <translation>选择比较长的行是否转行显示</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="922"/> + <source>Wrap long lines</source> + <translation>长行转行显示</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="931"/> + <source>Edge Mode</source> + <translation>边界模式</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="975"/> + <source>Select the colour for the edge marker.</source> + <translation>为边界标记选择颜色。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="985"/> + <source>Background colour:</source> + <translation>背景色:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="998"/> + <source>Move to set the edge column.</source> + <translation>移动可设定边界列。</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> + <source>Displays the selected tab width.</source> + <translation>显示已选择的制表符宽度</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1042"/> + <source>Column number:</source> + <translation>列数:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1049"/> + <source>Mode:</source> + <translation>模式:</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1063"/> + <source>Disabled</source> + <translation>已禁用</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1068"/> + <source>Draw Line</source> + <translation>显示边界线</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <source>Change Background Colour</source> + <translation>改变背景颜色</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1362"/> + <source>Various</source> + <translation>其它</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1259"/> + <source>Select whether whitspace characters shall be shown</source> + <translation>选择是否显示空格符号</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1262"/> + <source>Show Whitespace</source> + <translation>显示空格</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1368"/> + <source>Select to show a minimalistic context menu</source> + <translation>选择显示简化的上下文菜单</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1371"/> + <source>Show minimal context menu</source> + <translation>显示最简上下文菜单</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1087"/> + <source>Zoom</source> + <translation type="unfinished">缩放</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1093"/> + <source>Initial zoom factor:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1103"/> + <source>Move to set the initial zoom factor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1125"/> + <source>Displays the selected initial zoom factor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="344"/> + <source>Arrow</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="349"/> + <source>Arrow Tree</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="430"/> + <source>Foldmarkers foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="443"/> + <source>Select the foreground colour of the foldmarkers</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="453"/> - <source>Selection</source> - <translation>选区</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="461"/> - <source>Select to use custom selection colours</source> - <translation>选择可使用自定义选区颜色</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="464"/> - <source><b>Use custom selection colours</b><p>Select this entry in order to use custom selection colours in the editor and shell windows. The colours for the selection foreground and background are defined on the colours page.</p></source> - <translation><b>使用自定义选区颜色</b><p>选择该条目可在编辑器和命令行窗口中使用自定义选区颜色。选区的前景色和背景色在颜色页面中定义。</p></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="467"/> - <source>Use custom selection colours</source> - <translation>使用自定义选区颜色</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="474"/> - <source>Select, if selected text should be colourized by the lexer.</source> - <translation>选择所选文本是否由词法分析器着色</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="477"/> - <source>Colourize selected text</source> - <translation>为所选文本着色</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="484"/> - <source>Select to extend selection to end of line</source> - <translation>选择将选区扩展到行尾</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="487"/> - <source>Extend selection to end of line</source> - <translation>选区扩展到行尾</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="498"/> - <source>Selection foreground:</source> - <translation>选区前景色:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="511"/> - <source>Select the foreground colour for the selection.</source> - <translation>为选区选择前景色。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="521"/> - <source>Selection background:</source> - <translation>选区背景色:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="534"/> - <source>Select the background colour for the selection.</source> - <translation>为选区选择背景色。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="549"/> - <source>Caret</source> - <translation>插入符</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="555"/> - <source>Select, whether the caretline should be highlighted</source> - <translation>选择是否高亮显示插入行</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="558"/> - <source>Caretline visible</source> - <translation>插入行可见</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="567"/> - <source>Caret width:</source> - <translation>插入符宽度:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="574"/> - <source>Select caret width (1, 2 or 3 pixels)</source> - <translation>选择插入符宽度(1、2 或 3 像素)</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="607"/> - <source>Caret foreground:</source> - <translation>插入符前景:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="620"/> - <source>Select the colour for the caret.</source> - <translation>为插入符选择颜色。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="630"/> - <source>Caretline background:</source> - <translation>插入行背景:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="643"/> - <source>Select the background colour for the line containing the caret.</source> - <translation>为包含插入符的行选择背景色。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="658"/> - <source>Debugging Line Markers</source> - <translation>调试行标记</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="664"/> - <source>Current line marker:</source> - <translation>当前行标记:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="677"/> - <source>Select the colour for the current line marker.</source> - <translation>为当前行标记选择颜色。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="687"/> - <source>Error line marker:</source> - <translation>错误行标记:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="700"/> - <source>Select the colour for the error line marker.</source> - <translation>为错误行标记选择颜色。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="713"/> - <source>Braces</source> - <translation>括号</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="719"/> - <source>Select whether matching and bad braces shall be highlighted.</source> - <translation>选择是否对配对和不配对的括号进行高亮显示。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="722"/> - <source>Highlight braces</source> - <translation>高亮显示括号</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="729"/> - <source>Matched braces:</source> - <translation>已配对的括号:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="742"/> - <source>Select the colour for highlighting matching braces.</source> - <translation>为高亮显示的配对括号选择颜色。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="752"/> - <source>Matched braces background:</source> - <translation>已配对括号背景色:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="765"/> - <source>Select the background colour for highlighting matching braces.</source> - <translation>为高亮显示的配对括号选择背景色。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="781"/> - <source>Unmatched brace:</source> - <translation>未配对的括号:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="788"/> - <source>Select the colour for highlighting nonmatching braces.</source> - <translation>为高亮显示的未配对括号选择颜色。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="804"/> - <source>Unmatched brace background:</source> - <translation>未配对括号背景色:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="811"/> - <source>Select the background colour for highlighting nonmatching braces.</source> - <translation>为高亮显示的未配对括号选择背景色。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="824"/> - <source>End of Line</source> - <translation>行尾</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="832"/> - <source>Select whether end of line shall be shown</source> - <translation>选择是否显示行尾符</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="835"/> - <source>Show End of Line</source> - <translation>显示行尾</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="842"/> - <source>Select, whether long lines should be wrapped</source> - <translation>选择比较长的行是否转行显示</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="845"/> - <source>Wrap long lines</source> - <translation>长行转行显示</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="854"/> - <source>Edge Mode</source> - <translation>边界模式</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="898"/> - <source>Select the colour for the edge marker.</source> - <translation>为边界标记选择颜色。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="908"/> - <source>Background colour:</source> - <translation>背景色:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="921"/> - <source>Move to set the edge column.</source> - <translation>移动可设定边界列。</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="949"/> - <source>Displays the selected tab width.</source> - <translation>显示已选择的制表符宽度</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="965"/> - <source>Column number:</source> - <translation>列数:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="972"/> - <source>Mode:</source> - <translation>模式:</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="986"/> - <source>Disabled</source> - <translation>已禁用</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="991"/> - <source>Draw Line</source> - <translation>显示边界线</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="996"/> - <source>Change Background Colour</source> - <translation>改变背景颜色</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1285"/> - <source>Various</source> - <translation>其它</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1182"/> - <source>Select whether whitspace characters shall be shown</source> - <translation>选择是否显示空格符号</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1185"/> - <source>Show Whitespace</source> - <translation>显示空格</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1291"/> - <source>Select to show a minimalistic context menu</source> - <translation>选择显示简化的上下文菜单</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1294"/> - <source>Show minimal context menu</source> - <translation>显示最简上下文菜单</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1010"/> - <source>Zoom</source> - <translation type="unfinished">缩放</translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1016"/> - <source>Initial zoom factor:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1026"/> - <source>Move to set the initial zoom factor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1048"/> - <source>Displays the selected initial zoom factor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="267"/> - <source>Arrow</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="272"/> - <source>Arrow Tree</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="353"/> - <source>Foldmarkers foreground:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="366"/> - <source>Select the foreground colour of the foldmarkers</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="376"/> <source>Foldmarkers background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="466"/> <source>Select the background colour of the foldmarkers</source> <translation type="unfinished"></translation> </message> @@ -11026,95 +11026,130 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1067"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> <source>Annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1073"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1150"/> <source>Select to enable the display of annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1076"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1153"/> <source>Show annotations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1083"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1160"/> <source>Warnings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1134"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1211"/> <source>Press to select the foreground colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1137"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1214"/> <source>Foreground</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1144"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1221"/> <source>Press to select the background colour</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1147"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1224"/> <source>Background</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1112"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1189"/> <source>Warning: There might be an error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1128"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1205"/> <source>Errors</source> <translation type="unfinished">错误</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1157"/> - <source>Error: There is an error.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1176"/> - <source>Whitespace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1194"/> - <source>Whitespace size:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1201"/> - <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="1234"/> + <source>Error: There is an error.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1253"/> + <source>Whitespace</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1271"/> + <source>Whitespace size:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1278"/> + <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="1311"/> <source>Whitespace foreground:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1247"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1324"/> <source>Select the foreground colour for visible whitespace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1257"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1334"/> <source>Whitespace background:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1270"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="1347"/> <source>Select the background colour for visible whitespace</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="53"/> + <source>Select to set the colour of the edit area different to the default style</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="56"/> + <source>Override edit area colours</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="66"/> + <source>Edit area foreground:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="82"/> + <source>Select the foreground colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="95"/> + <source>Edit area background:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="111"/> + <source>Select the background colour for the edit area.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.ui" line="47"/> + <source>Colours</source> + <translation type="unfinished">颜色</translation> + </message> </context> <context> <name>EditorSyntaxPage</name> @@ -26935,7 +26970,7 @@ <translation>文件已保存</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2278"/> + <location filename="QScintilla/MiniEditor.py" line="2282"/> <source>Untitled</source> <translation>未命名</translation> </message> @@ -26950,52 +26985,52 @@ <translation>小型编辑器</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2244"/> + <location filename="QScintilla/MiniEditor.py" line="2248"/> <source>Printing...</source> <translation>打印中……</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2260"/> + <location filename="QScintilla/MiniEditor.py" line="2264"/> <source>Printing completed</source> <translation>打印已完成</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2262"/> + <location filename="QScintilla/MiniEditor.py" line="2266"/> <source>Error while printing</source> <translation>打印时出错</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2265"/> + <location filename="QScintilla/MiniEditor.py" line="2269"/> <source>Printing aborted</source> <translation>打印失败</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2318"/> + <location filename="QScintilla/MiniEditor.py" line="2322"/> <source>Select all</source> <translation>全选</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2319"/> + <location filename="QScintilla/MiniEditor.py" line="2323"/> <source>Deselect all</source> <translation>全部取消选择</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2330"/> + <location filename="QScintilla/MiniEditor.py" line="2334"/> <source>Languages</source> <translation>语言</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2333"/> + <location filename="QScintilla/MiniEditor.py" line="2337"/> <source>No Language</source> <translation>无语言</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2352"/> + <location filename="QScintilla/MiniEditor.py" line="2356"/> <source>Guessed</source> <translation>已推测</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2372"/> + <location filename="QScintilla/MiniEditor.py" line="2376"/> <source>Alternatives</source> <translation>备选</translation> </message> @@ -27005,12 +27040,12 @@ <translation type="obsolete">备选 (%1)</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Pygments Lexer</source> <translation>Pygments 词法分析器</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2386"/> + <location filename="QScintilla/MiniEditor.py" line="2390"/> <source>Select the Pygments lexer to apply.</source> <translation>选择要应用的 Pygments 词法分析器。</translation> </message> @@ -27070,7 +27105,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2369"/> + <location filename="QScintilla/MiniEditor.py" line="2373"/> <source>Alternatives ({0})</source> <translation type="unfinished"></translation> </message> @@ -29683,27 +29718,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="971"/> + <location filename="Preferences/__init__.py" line="976"/> <source>Export Preferences</source> <translation>导出首选项</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Import Preferences</source> <translation>导入首选项</translation> </message> <message> - <location filename="Preferences/__init__.py" line="998"/> + <location filename="Preferences/__init__.py" line="1003"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1091"/> + <location filename="Preferences/__init__.py" line="1096"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -37009,29 +37044,29 @@ <translation>配置……</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select History</source> <translation>选择历史</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="492"/> + <location filename="QScintilla/Shell.py" line="499"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>选择历史条目以执行(最常用的显示在最后)。</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="541"/> + <location filename="QScintilla/Shell.py" line="548"/> <source>Passive Debug Mode</source> <translation>被动调试模式</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="542"/> + <location filename="QScintilla/Shell.py" line="549"/> <source> Not connected</source> <translation> 没有连接</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="544"/> + <location filename="QScintilla/Shell.py" line="551"/> <source>No.</source> <translation>No.</translation> </message> @@ -37058,7 +37093,7 @@ </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source>Drop Error</source> <translation>降落误差</translation> </message> @@ -37073,28 +37108,28 @@ <translation type="unfinished">剪切</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="546"/> + <location filename="QScintilla/Shell.py" line="553"/> <source>{0} on {1}, {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="607"/> + <location filename="QScintilla/Shell.py" line="614"/> <source>StdOut: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="615"/> + <location filename="QScintilla/Shell.py" line="622"/> <source>StdErr: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1158"/> + <location filename="QScintilla/Shell.py" line="1165"/> <source>Shell language "{0}" not supported. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1428"/> + <location filename="QScintilla/Shell.py" line="1435"/> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished"></translation> </message> @@ -45633,17 +45668,17 @@ <translation>配置……</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select History</source> <translation>选择历史</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="404"/> + <location filename="QScintilla/Terminal.py" line="411"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>选择历史条目以执行(最常用的显示在最后)。</translation> </message> <message> - <location filename="QScintilla/Terminal.py" line="909"/> + <location filename="QScintilla/Terminal.py" line="916"/> <source>No shell has been configured.</source> <translation type="unfinished"></translation> </message>