Mon, 25 Jan 2016 18:57:22 +0100
Added capability to select only from monospaced fonts on the highlighters styles page (for PyQt5 only).
--- a/APIs/Python3/eric6.api Sun Jan 24 19:28:37 2016 +0100 +++ b/APIs/Python3/eric6.api Mon Jan 25 18:57:22 2016 +0100 @@ -6496,6 +6496,7 @@ eric6.Preferences.ConfigurationPages.EditorHighlightingStylesPage.EditorHighlightingStylesPage.setSampleFont?4(familyOnly, sizeOnly) eric6.Preferences.ConfigurationPages.EditorHighlightingStylesPage.EditorHighlightingStylesPage.setState?4(state) eric6.Preferences.ConfigurationPages.EditorHighlightingStylesPage.EditorHighlightingStylesPage?1(lexers) +eric6.Preferences.ConfigurationPages.EditorHighlightingStylesPage.NoFontsOption?7 eric6.Preferences.ConfigurationPages.EditorHighlightingStylesPage.create?4(dlg) eric6.Preferences.ConfigurationPages.EditorKeywordsPage.EditorKeywordsPage.on_languageCombo_activated?4(language) eric6.Preferences.ConfigurationPages.EditorKeywordsPage.EditorKeywordsPage.on_setSpinBox_valueChanged?4(kwSet)
--- a/Documentation/Source/eric6.Preferences.ConfigurationPages.EditorHighlightingStylesPage.html Sun Jan 24 19:28:37 2016 +0100 +++ b/Documentation/Source/eric6.Preferences.ConfigurationPages.EditorHighlightingStylesPage.html Mon Jan 25 18:57:22 2016 +0100 @@ -25,7 +25,7 @@ </p> <h3>Global Attributes</h3> <table> -<tr><td>None</td></tr> +<tr><td>NoFontsOption</td></tr> </table> <h3>Classes</h3> <table>
--- a/Preferences/ConfigurationPages/EditorHighlightingStylesPage.py Sun Jan 24 19:28:37 2016 +0100 +++ b/Preferences/ConfigurationPages/EditorHighlightingStylesPage.py Mon Jan 25 18:57:22 2016 +0100 @@ -9,7 +9,7 @@ from __future__ import unicode_literals -from PyQt5.QtCore import pyqtSlot, Qt, QFileInfo, QFile, QIODevice +from PyQt5.QtCore import pyqtSlot, Qt, QFileInfo, QFile, QIODevice, qVersion from PyQt5.QtGui import QPalette, QFont from PyQt5.QtWidgets import QColorDialog, QFontDialog, QInputDialog, QMenu @@ -20,8 +20,13 @@ import Preferences +try: + MonospacedFontsOption = QFontDialog.MonospacedFonts +except AttributeError: + MonospacedFontsOption = QFontDialog.FontDialogOptions(0x10) +NoFontsOption = QFontDialog.FontDialogOptions(0) -# TODO: add a button to show only monospaced fonts + class EditorHighlightingStylesPage(ConfigurationPageBase, Ui_EditorHighlightingStylesPage): """ @@ -42,6 +47,10 @@ self.setupUi(self) self.setObjectName("EditorHighlightingStylesPage") + if qVersion() < "5.0.0": + self.monospacedButton.setChecked(False) + self.monospacedButton.hide() + self.__fontButtonMenu = QMenu() act = self.__fontButtonMenu.addAction(self.tr("Font")) act.setData(self.FONT) @@ -265,7 +274,12 @@ else: self.sampleText.setFont(font) - font, ok = QFontDialog.getFont(self.lexer.font(self.style)) + if self.monospacedButton.isChecked(): + options = MonospacedFontsOption + else: + options = NoFontsOption + font, ok = QFontDialog.getFont(self.lexer.font(self.style), self, + "", options) if ok: setSampleFont(font, familyOnly, sizeOnly) if doAll:
--- a/Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui Sun Jan 24 19:28:37 2016 +0100 +++ b/Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui Mon Jan 25 18:57:22 2016 +0100 @@ -67,7 +67,7 @@ <string>Style Element</string> </property> <layout class="QGridLayout" name="gridLayout"> - <item row="0" column="0" rowspan="12"> + <item row="0" column="0" rowspan="14"> <widget class="QListWidget" name="styleElementList"> <property name="selectionMode"> <enum>QAbstractItemView::ExtendedSelection</enum> @@ -132,6 +132,35 @@ </widget> </item> <item row="6" column="1"> + <spacer name="spacer"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>20</width> + <height>43</height> + </size> + </property> + </spacer> + </item> + <item row="7" column="1"> + <widget class="QPushButton" name="monospacedButton"> + <property name="toolTip"> + <string>Press to show only monospaced fonts</string> + </property> + <property name="text"> + <string>Monospaced Fonts Only</string> + </property> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item row="8" column="1"> <spacer> <property name="orientation"> <enum>Qt::Vertical</enum> @@ -139,12 +168,12 @@ <property name="sizeHint" stdset="0"> <size> <width>20</width> - <height>51</height> + <height>38</height> </size> </property> </spacer> </item> - <item row="7" column="1"> + <item row="9" column="1"> <widget class="QPushButton" name="allBackgroundColoursButton"> <property name="toolTip"> <string>Select the background colour for all styles</string> @@ -154,7 +183,7 @@ </property> </widget> </item> - <item row="8" column="1"> + <item row="10" column="1"> <widget class="QPushButton" name="allFontsButton"> <property name="toolTip"> <string>Select the font for all styles.</string> @@ -164,7 +193,7 @@ </property> </widget> </item> - <item row="9" column="1"> + <item row="11" column="1"> <widget class="QPushButton" name="allEolFillButton"> <property name="toolTip"> <string>Select the eol fill for all styles</string> @@ -174,14 +203,14 @@ </property> </widget> </item> - <item row="10" column="1"> + <item row="12" column="1"> <widget class="Line" name="line_2"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> </widget> </item> - <item row="11" column="1"> + <item row="13" column="1"> <widget class="QPushButton" name="allDefaultButton"> <property name="toolTip"> <string>Press to set all styles to their default values</string> @@ -191,7 +220,7 @@ </property> </widget> </item> - <item row="12" column="0" colspan="2"> + <item row="14" column="0" colspan="2"> <widget class="QLineEdit" name="sampleText"> <property name="focusPolicy"> <enum>Qt::NoFocus</enum> @@ -207,7 +236,7 @@ </property> </widget> </item> - <item row="13" column="0" colspan="2"> + <item row="15" column="0" colspan="2"> <widget class="QLabel" name="label"> <property name="text"> <string><b>Note:</b> The tick in the list above indicates the entrie's 'fill to end of line' setting.</string> @@ -280,10 +309,15 @@ <tabstop>fontButton</tabstop> <tabstop>eolfillCheckBox</tabstop> <tabstop>defaultButton</tabstop> + <tabstop>monospacedButton</tabstop> <tabstop>allBackgroundColoursButton</tabstop> <tabstop>allFontsButton</tabstop> <tabstop>allEolFillButton</tabstop> <tabstop>allDefaultButton</tabstop> + <tabstop>importCurrentButton</tabstop> + <tabstop>exportCurrentButton</tabstop> + <tabstop>importAllButton</tabstop> + <tabstop>exportAllButton</tabstop> </tabstops> <resources/> <connections/>
--- a/i18n/eric6_cs.ts Sun Jan 24 19:28:37 2016 +0100 +++ b/i18n/eric6_cs.ts Mon Jan 25 18:57:22 2016 +0100 @@ -10854,32 +10854,32 @@ <translation>Výběr výplně konce řádku.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation>Vyplnit do konce řádku</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="160"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="189"/> <source>Select the font for all styles.</source> <translation>Výběr fontu pro všechny styly.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="163"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="192"/> <source>All Fonts</source> <translation>Všechny fonty</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="179"/> <source>Select the background colour for all styles</source> <translation>Výběr barvy pozadí pro všechny styly</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="182"/> <source>All Background Colours</source> <translation>Všechny barvy pozadí</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="200"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="229"/> <source>Sample Text</source> <translation>Ukázka textu</translation> </message> @@ -10899,7 +10899,7 @@ <translation>Vybrat font.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation></translation> </message> @@ -10914,27 +10914,27 @@ <translation>Barva popředí</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="170"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="199"/> <source>Select the eol fill for all styles</source> <translation>Vybrat pro eol vyplní všechny styly</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="173"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="202"/> <source>All Fill to end of line</source> <translation>Vše Vyplnit do konce řádku</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="351"/> <source>Enabled</source> <translation>Zapnuto</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="352"/> <source>Disabled</source> <translation>Vypnuto</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Select fill to end of line for all styles</source> <translation>Vybrat pro doplnit do konce řádku pro všechny styly</translation> </message> @@ -10944,92 +10944,92 @@ <translation>na výchozí hodnotu</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="187"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="216"/> <source>Press to set all styles to their default values</source> <translation>Stisknout pro nastavení všech stylů na výchozí hodnoty</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="190"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="219"/> <source>All to Default</source> <translation>Vše na výchozí hodnoty</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="231"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="260"/> <source>Imports all styles of the currently selected language</source> <translation>Importovat všechny styly právě vybraného jazyka</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="234"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="263"/> <source>Import styles</source> <translation>Import stylů</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="244"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="273"/> <source>Exports all styles of the currently selected language</source> <translation>Exportovat všechny styly právě vybraného jazyka</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="247"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="276"/> <source>Export styles</source> <translation>Export stylů</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="254"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="283"/> <source>Imports all styles of all languages</source> <translation>Importovat všechny styly všech jazyků</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="257"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="286"/> <source>Import all styles</source> <translation>Import všech stylů</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="264"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="293"/> <source>Exports all styles of all languages</source> <translation>Exportovat všechny styly všech jazyků</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="267"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="296"/> <source>Export all styles</source> <translation>Export všech stylů</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source>Export Highlighting Styles</source> <translation>Export stylů zvýraznění</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source>Import Highlighting Styles</source> <translation>Importovat styly zvýraznění</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="477"/> <source>Highlighting styles file (*.e4h)</source> <translation>Soubor se styly zvýrazňování (*.e4h)</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Styly zvýraznění syntaxe se do souboru <b>{0}</b> nepodařilo exportovat.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Styly zvýraznění syntaxe se ze souboru <b>{0}</b> nepodařilo načít.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="72"/> <source>Family and Size only</source> <translation>Jen rodina a velikost</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="75"/> <source>Family only</source> <translation>Jen rodina</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="77"/> <source>Size only</source> <translation>Jen velikost</translation> </message> @@ -11039,10 +11039,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="213"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="242"/> <source><b>Note:</b> The tick in the list above indicates the entrie's 'fill to end of line' setting.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <source>Press to show only monospaced fonts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <source>Monospaced Fonts Only</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorKeywordsPage</name>
--- a/i18n/eric6_de.ts Sun Jan 24 19:28:37 2016 +0100 +++ b/i18n/eric6_de.ts Mon Jan 25 18:57:22 2016 +0100 @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage=""> +<!DOCTYPE TS> +<TS version="2.1" language="de"> <context> <name>AboutDialog</name> <message> @@ -1852,8 +1853,8 @@ </message> <message> <location filename="../Helpviewer/Bookmarks/BookmarksMenu.py" line="145"/> - <source>Open in New &Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem &Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New &Tab Ctrl+LMB</source> + <translation>In neuem &Register öffnen Strg+LMK</translation> </message> </context> <context> @@ -1921,8 +1922,8 @@ </message> <message> <location filename="../Helpviewer/Bookmarks/BookmarksToolBar.py" line="93"/> - <source>Open in New &Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem &Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New &Tab Ctrl+LMB</source> + <translation>In neuem &Register öffnen Strg+LMK</translation> </message> </context> <context> @@ -10639,32 +10640,32 @@ <translation>Wähle den Modus „Füllen bis zum Zeilenende“.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation>Füllen bis zum Zeilenende</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="160"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="189"/> <source>Select the font for all styles.</source> <translation>Wähle die Schriftart für alle Stile.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="163"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="192"/> <source>All Fonts</source> <translation>Alle Schriftarten</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="179"/> <source>Select the background colour for all styles</source> <translation>Wähle die Hintergrundfarbe für alle Stile</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="182"/> <source>All Background Colours</source> <translation>Alle Hintergrundfarben</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="200"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="229"/> <source>Sample Text</source> <translation>Beispieltext</translation> </message> @@ -10684,7 +10685,7 @@ <translation>Wähle die Schriftart aus.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation>Schriftart</translation> </message> @@ -10704,27 +10705,27 @@ <translation><b>Syntaxhervorhebung einstellen</b></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="170"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="199"/> <source>Select the eol fill for all styles</source> <translation>Wähle Füllen bis Zeilenende für alle Stile</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="173"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="202"/> <source>All Fill to end of line</source> <translation>Alle Füllen bis Ende</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="351"/> <source>Enabled</source> <translation>Eingeschaltet</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="352"/> <source>Disabled</source> <translation>Ausgeschaltet</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Select fill to end of line for all styles</source> <translation>Wähle Füllen bis Zeilenende für alle Stile</translation> </message> @@ -10734,92 +10735,92 @@ <translation>auf Default</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="187"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="216"/> <source>Press to set all styles to their default values</source> <translation>Drücken, um den alle Stile auf Defaultwerte zurückzusetzen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="190"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="219"/> <source>All to Default</source> <translation>Alle auf Default</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="231"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="260"/> <source>Imports all styles of the currently selected language</source> <translation>Importiert alle Stile der aktuell ausgewählten Sprache</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="234"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="263"/> <source>Import styles</source> <translation>Stile importieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="244"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="273"/> <source>Exports all styles of the currently selected language</source> <translation>Exportiert alle Stile der aktuell ausgewählten Sprache</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="247"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="276"/> <source>Export styles</source> <translation>Stile exportieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="254"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="283"/> <source>Imports all styles of all languages</source> <translation>Importiert alle Stile aller Sprachen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="257"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="286"/> <source>Import all styles</source> <translation>Alle Stile importieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="264"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="293"/> <source>Exports all styles of all languages</source> <translation>Exportiert alle Stile aller Sprachen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="267"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="296"/> <source>Export all styles</source> <translation>Alle Stile exportieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source>Export Highlighting Styles</source> <translation>Hervorhebungsstile exportieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Die Hervorhebungsstile konnten nicht in die Datei <b>{0}</b> exportiert werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source>Import Highlighting Styles</source> <translation>Hervorhebungsstile importieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Die Hervorhebungsstile konnten nicht von der Datei <b>{0}</b> gelesen werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="477"/> <source>Highlighting styles file (*.e4h)</source> <translation>Dateien für Hervorhebungsstile (*.e4h)</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="72"/> <source>Family and Size only</source> <translation>nur Schriftart und Größe</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="75"/> <source>Family only</source> <translation>nur Schriftart</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="77"/> <source>Size only</source> <translation>nur Größe</translation> </message> @@ -10829,10 +10830,20 @@ <translation>Drücken, um den aktuellen Stil auf Defaultwerte zurückzusetzen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="213"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="242"/> <source><b>Note:</b> The tick in the list above indicates the entrie's 'fill to end of line' setting.</source> <translation><b>Hinweis:</b> Der Haken in der obigen Liste zeigt die 'Füllen bis zum Zeilenende' Eigenschaft des Eintrages an.</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <source>Press to show only monospaced fonts</source> + <translation>Drücken, um nur monospaced Fonts anzuzeigen</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <source>Monospaced Fonts Only</source> + <translation>nur Monospaced Fonts</translation> + </message> </context> <context> <name>EditorKeywordsPage</name> @@ -16285,8 +16296,8 @@ </message> <message> <location filename="../Helpviewer/HelpBrowserWV.py" line="1183"/> - <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>Link in neuem Fenster öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open Link in New Tab Ctrl+LMB</source> + <translation>Link in neuem Fenster öffnen Strg+LMK</translation> </message> <message> <location filename="../Helpviewer/HelpBrowserWV.py" line="1256"/>
--- a/i18n/eric6_en.ts Sun Jan 24 19:28:37 2016 +0100 +++ b/i18n/eric6_en.ts Mon Jan 25 18:57:22 2016 +0100 @@ -10582,7 +10582,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation type="unfinished"></translation> </message> @@ -10592,7 +10592,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation type="unfinished"></translation> </message> @@ -10602,142 +10602,142 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="179"/> <source>Select the background colour for all styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="182"/> <source>All Background Colours</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="160"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="189"/> <source>Select the font for all styles.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="163"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="192"/> <source>All Fonts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="170"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="199"/> <source>Select the eol fill for all styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="173"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="202"/> <source>All Fill to end of line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="187"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="216"/> <source>Press to set all styles to their default values</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="190"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="219"/> <source>All to Default</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="200"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="229"/> <source>Sample Text</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="231"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="260"/> <source>Imports all styles of the currently selected language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="234"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="263"/> <source>Import styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="244"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="273"/> <source>Exports all styles of the currently selected language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="247"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="276"/> <source>Export styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="254"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="283"/> <source>Imports all styles of all languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="257"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="286"/> <source>Import all styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="264"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="293"/> <source>Exports all styles of all languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="267"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="296"/> <source>Export all styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="72"/> <source>Family and Size only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="75"/> <source>Family only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="77"/> <source>Size only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="351"/> <source>Enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="352"/> <source>Disabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Select fill to end of line for all styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source>Export Highlighting Styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="477"/> <source>Highlighting styles file (*.e4h)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source>Import Highlighting Styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -10747,10 +10747,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="213"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="242"/> <source><b>Note:</b> The tick in the list above indicates the entrie's 'fill to end of line' setting.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <source>Press to show only monospaced fonts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <source>Monospaced Fonts Only</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorKeywordsPage</name>
--- a/i18n/eric6_es.ts Sun Jan 24 19:28:37 2016 +0100 +++ b/i18n/eric6_es.ts Mon Jan 25 18:57:22 2016 +0100 @@ -10883,32 +10883,32 @@ <translation>Selecciona llenar hasta el fin de la línea.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation>Llenar hasta el final de la línea</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="160"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="189"/> <source>Select the font for all styles.</source> <translation>Selecciona la fuente para todos los estilos.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="163"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="192"/> <source>All Fonts</source> <translation>Todas las Fuentes</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="179"/> <source>Select the background colour for all styles</source> <translation>Selecciona el color de fondo para todos los estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="182"/> <source>All Background Colours</source> <translation>Todos los colores de fondo</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="200"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="229"/> <source>Sample Text</source> <translation>Texto de Ejemplo</translation> </message> @@ -10928,7 +10928,7 @@ <translation>Selección de Fuente.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation>Fuente</translation> </message> @@ -10943,27 +10943,27 @@ <translation>Color de Fuente</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="170"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="199"/> <source>Select the eol fill for all styles</source> <translation>Selecciona llenado hasta final de línea para todos los estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="173"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="202"/> <source>All Fill to end of line</source> <translation>Todo llena hasta el final de la línea</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="351"/> <source>Enabled</source> <translation>Habilitado</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="352"/> <source>Disabled</source> <translation>Deshabilitado</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Select fill to end of line for all styles</source> <translation>Selecciona llenar hasta el final de línea para todos los estilos</translation> </message> @@ -10973,92 +10973,92 @@ <translation>a Por Defecto</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="187"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="216"/> <source>Press to set all styles to their default values</source> <translation>Pulse para establecer todos los estilos a sus valores por defecto</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="190"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="219"/> <source>All to Default</source> <translation>Todos a Por Defecto</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="231"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="260"/> <source>Imports all styles of the currently selected language</source> <translation>Importar todos los estilos del lenguaje actualmente seleccionado</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="234"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="263"/> <source>Import styles</source> <translation>Importar estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="244"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="273"/> <source>Exports all styles of the currently selected language</source> <translation>Exportar todos los estilos del lenguaje actualmente seleccionado</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="247"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="276"/> <source>Export styles</source> <translation>Exportar estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="254"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="283"/> <source>Imports all styles of all languages</source> <translation>Importa todos los estilos de todos los lenguajes</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="257"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="286"/> <source>Import all styles</source> <translation>Importar todos los estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="264"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="293"/> <source>Exports all styles of all languages</source> <translation>Exporta todos los estilos de todos los lenguajes</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="267"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="296"/> <source>Export all styles</source> <translation>Exportar todos los estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source>Export Highlighting Styles</source> <translation>Exportar Estilos de Resaltado</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source>Import Highlighting Styles</source> <translation>Importar Estilos de Resaltado</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="477"/> <source>Highlighting styles file (*.e4h)</source> <translation>Archivos de estilos de resaltado (*.e4h)</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Los estilos de resaltado no se han podido exportar al archivo <b>{0}</b>.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Los estilos de resaltado no se han podido leer del archivo <b>{0}</b>.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="72"/> <source>Family and Size only</source> <translation>Familia y Tamaño solamente</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="75"/> <source>Family only</source> <translation>Familia solamente</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="77"/> <source>Size only</source> <translation>Tamaño solamente</translation> </message> @@ -11068,10 +11068,20 @@ <translation>Pulsar para establecer el estilo actual a valores por defecto</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="213"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="242"/> <source><b>Note:</b> The tick in the list above indicates the entrie's 'fill to end of line' setting.</source> <translation><b>Nota:</b> El checkbox en la lista de arriba indica el ajuste 'llenar hasta final de línea' para la entrada.</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <source>Press to show only monospaced fonts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <source>Monospaced Fonts Only</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorKeywordsPage</name>
--- a/i18n/eric6_fr.ts Sun Jan 24 19:28:37 2016 +0100 +++ b/i18n/eric6_fr.ts Mon Jan 25 18:57:22 2016 +0100 @@ -10875,32 +10875,32 @@ <translation>Cocher pour appliquer le style jusqu'en fin de ligne.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation>Appliquer jusqu'à la fin de ligne</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="160"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="189"/> <source>Select the font for all styles.</source> <translation>Sélectionne une police pour tous les styles.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="163"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="192"/> <source>All Fonts</source> <translation>Toutes les polices</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="179"/> <source>Select the background colour for all styles</source> <translation>Sélectionne une couleur de fond pour tous les styles</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="182"/> <source>All Background Colours</source> <translation>Toutes les couleurs de fond</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="200"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="229"/> <source>Sample Text</source> <translation>Texte brut</translation> </message> @@ -10920,7 +10920,7 @@ <translation>Sélectionner la police.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation>Police</translation> </message> @@ -10940,27 +10940,27 @@ <translation><b>Configuration de l'analyse syntaxique</b></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="170"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="199"/> <source>Select the eol fill for all styles</source> <translation>Sélectionner pour appliquer les styles jusqu'en fin de ligne pour toutes les entrées</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="173"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="202"/> <source>All Fill to end of line</source> <translation>Tout appliquer jusqu'aux fins de lignes</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="351"/> <source>Enabled</source> <translation>Activé</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="352"/> <source>Disabled</source> <translation>Désactivé</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Select fill to end of line for all styles</source> <translation>Sélectionner pour appliquer tous les styles jusqu'en fin de lignes</translation> </message> @@ -10970,92 +10970,92 @@ <translation>par défaut</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="187"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="216"/> <source>Press to set all styles to their default values</source> <translation>Cliquer pour appliquer les styles par défaut</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="190"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="219"/> <source>All to Default</source> <translation>Tous par défaut</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="231"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="260"/> <source>Imports all styles of the currently selected language</source> <translation>Importe tous les styles du langage sélectionné</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="234"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="263"/> <source>Import styles</source> <translation>Importer les styles</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="244"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="273"/> <source>Exports all styles of the currently selected language</source> <translation>Exporte tous les styles du langage sélectionné</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="247"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="276"/> <source>Export styles</source> <translation>Exporter les styles</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="254"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="283"/> <source>Imports all styles of all languages</source> <translation>Importe tous les styles de tous les langages</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="257"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="286"/> <source>Import all styles</source> <translation>Importer tous les styles</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="264"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="293"/> <source>Exports all styles of all languages</source> <translation>Exporte tous les styles de tous les langages</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="267"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="296"/> <source>Export all styles</source> <translation>Exporter tous les styles</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source>Export Highlighting Styles</source> <translation>Exportation des styles</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source>Import Highlighting Styles</source> <translation>Importation des styles</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="477"/> <source>Highlighting styles file (*.e4h)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="72"/> <source>Family and Size only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="75"/> <source>Family only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="77"/> <source>Size only</source> <translation type="unfinished"></translation> </message> @@ -11065,10 +11065,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="213"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="242"/> <source><b>Note:</b> The tick in the list above indicates the entrie's 'fill to end of line' setting.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <source>Press to show only monospaced fonts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <source>Monospaced Fonts Only</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorKeywordsPage</name>
--- a/i18n/eric6_it.ts Sun Jan 24 19:28:37 2016 +0100 +++ b/i18n/eric6_it.ts Mon Jan 25 18:57:22 2016 +0100 @@ -10947,32 +10947,32 @@ <translation>Seleziona il riempimento di fine linea.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation>Riempi fino a fine linea</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="160"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="189"/> <source>Select the font for all styles.</source> <translation>Seleziona font per tutti gli stili.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="163"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="192"/> <source>All Fonts</source> <translation>Tutti i font</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="179"/> <source>Select the background colour for all styles</source> <translation>Seleziona il colore dello sfondo per tutti gli stili</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="182"/> <source>All Background Colours</source> <translation>Tutti i colori di sfondo</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="200"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="229"/> <source>Sample Text</source> <translation>Testo di esempio</translation> </message> @@ -10992,7 +10992,7 @@ <translation>Seleziona il font.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation>Font</translation> </message> @@ -11012,27 +11012,27 @@ <translation><b>Configura l'evidenziazione della sintassi</b></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="170"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="199"/> <source>Select the eol fill for all styles</source> <translation>Selezione il riempimento di fine linea per tutti gli stili</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="173"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="202"/> <source>All Fill to end of line</source> <translation>Riempi tutto fino a fine linea</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="351"/> <source>Enabled</source> <translation>Abilitato</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="352"/> <source>Disabled</source> <translation>Disabilitato</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Select fill to end of line for all styles</source> <translation>Seleziona il riempimento fino a fine linea per tutti gli stili</translation> </message> @@ -11042,92 +11042,92 @@ <translation>al default</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="187"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="216"/> <source>Press to set all styles to their default values</source> <translation>Premi per impostare tutti gli stili ai loro valori di default</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="190"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="219"/> <source>All to Default</source> <translation>Tutto al default</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="231"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="260"/> <source>Imports all styles of the currently selected language</source> <translation>Importa tutti gli stili del linguaggio attualmente selezionato</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="234"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="263"/> <source>Import styles</source> <translation>Importa stili</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="244"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="273"/> <source>Exports all styles of the currently selected language</source> <translation>Esporta tutti gli stili del linguaggio correntemente selezionato</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="247"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="276"/> <source>Export styles</source> <translation>Esporta stili</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="254"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="283"/> <source>Imports all styles of all languages</source> <translation>Importa tutti gli stili di tutti i linguaggi</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="257"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="286"/> <source>Import all styles</source> <translation>Importa tutti gli stili</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="264"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="293"/> <source>Exports all styles of all languages</source> <translation>Esporta tutti gli stili di tutti i linguaggi</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="267"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="296"/> <source>Export all styles</source> <translation>Esporta tutti gli stili</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source>Export Highlighting Styles</source> <translation>Esporta stili di evidenziazione</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source>Import Highlighting Styles</source> <translation>Importa gli stili di evidenziazione</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="477"/> <source>Highlighting styles file (*.e4h)</source> <translation>Highlighting styles file (*.e4h)</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Lo stile di evidenziazione non può essere esportato nel file <b>{0}</b>.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Gli stili di evidenziazione non possono essere letti dal file <b>{0}</b>.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="72"/> <source>Family and Size only</source> <translation>Solo famiglia e dimensione</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="75"/> <source>Family only</source> <translation>Solo famiglia</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="77"/> <source>Size only</source> <translation>Solo dimensione</translation> </message> @@ -11137,10 +11137,20 @@ <translation>Premere il tasto per settare lo stile corrente al suo valore predefinito</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="213"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="242"/> <source><b>Note:</b> The tick in the list above indicates the entrie's 'fill to end of line' setting.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <source>Press to show only monospaced fonts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <source>Monospaced Fonts Only</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorKeywordsPage</name>
--- a/i18n/eric6_pt.ts Sun Jan 24 19:28:37 2016 +0100 +++ b/i18n/eric6_pt.ts Mon Jan 25 18:57:22 2016 +0100 @@ -10935,7 +10935,7 @@ <translation>Selecionar tipo de letra.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation>Tipo de Letra</translation> </message> @@ -10945,7 +10945,7 @@ <translation>Selecionar preenchimento até ao fim de linha.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation>Preencher até fim de linha</translation> </message> @@ -10955,142 +10955,142 @@ <translation>Predefinição</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="179"/> <source>Select the background colour for all styles</source> <translation>Selecionar a cor de fundo para todos os estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="182"/> <source>All Background Colours</source> <translation>Cores para Todos os Fundos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="160"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="189"/> <source>Select the font for all styles.</source> <translation>Selecionar o tipo de letra para todos os estilos.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="163"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="192"/> <source>All Fonts</source> <translation>Tipos de Letra para Tudo</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="170"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="199"/> <source>Select the eol fill for all styles</source> <translation>Selecionar preenchimento até fim de linha para todos os estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="173"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="202"/> <source>All Fill to end of line</source> <translation>Preencher Todos até fim de linha</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="187"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="216"/> <source>Press to set all styles to their default values</source> <translation>Pressionar para repor todos os estilos aos seus valores predefinidos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="190"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="219"/> <source>All to Default</source> <translation>Tudo a Predefinição</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="200"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="229"/> <source>Sample Text</source> <translation>Texto de Mostra</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="231"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="260"/> <source>Imports all styles of the currently selected language</source> <translation>Importa todos os estilos da linguagem atualmente selecionada</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="234"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="263"/> <source>Import styles</source> <translation>Importar estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="244"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="273"/> <source>Exports all styles of the currently selected language</source> <translation>Exporta todos os estilos da linguagem atualmente selecionada</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="247"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="276"/> <source>Export styles</source> <translation>Exportar estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="254"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="283"/> <source>Imports all styles of all languages</source> <translation>Importa todos os estilos de todas as linguagens</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="257"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="286"/> <source>Import all styles</source> <translation>Importar todos os estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="264"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="293"/> <source>Exports all styles of all languages</source> <translation>Exporta todos os estilos de todas as linguagens</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="267"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="296"/> <source>Export all styles</source> <translation>Exportar todos os estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="72"/> <source>Family and Size only</source> <translation>Apenas Família e Tamanho</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="75"/> <source>Family only</source> <translation>Apenas Família</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="77"/> <source>Size only</source> <translation>Apenas Tamanho</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="351"/> <source>Enabled</source> <translation>Habilitado</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="352"/> <source>Disabled</source> <translation>Inabilitado</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Select fill to end of line for all styles</source> <translation>Selecionar encher até ao fim de linha para todos os estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source>Export Highlighting Styles</source> <translation>Exportar Estilos de Realce</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="477"/> <source>Highlighting styles file (*.e4h)</source> <translation>Ficheiro estilos de realce (*.e4h)</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Os estilos de realce não se poderam exportar ao ficheiro <b>{0}</b>.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source>Import Highlighting Styles</source> <translation>Importar Estilos de Realce</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Os estilos de realce não se poderam ler do ficheiro <b>{0}</b>.</p><p>Motivo: {1}</p></translation> </message> @@ -11100,10 +11100,20 @@ <translation>Pressionar para repor o estilo atual aos seus valores predefinidos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="213"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="242"/> <source><b>Note:</b> The tick in the list above indicates the entrie's 'fill to end of line' setting.</source> <translation><b>Nota:</b> A caixa de verificação da lista de cima mostra a definição de 'encher até fim de linha' da entrada.</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <source>Press to show only monospaced fonts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <source>Monospaced Fonts Only</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorKeywordsPage</name>
--- a/i18n/eric6_ru.ts Sun Jan 24 19:28:37 2016 +0100 +++ b/i18n/eric6_ru.ts Mon Jan 25 18:57:22 2016 +0100 @@ -10930,32 +10930,32 @@ <translation>Задайте тип заливки фона в конце строки.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation>До конца строки</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="160"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="189"/> <source>Select the font for all styles.</source> <translation>Выбрать шрифт для всех стилей.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="163"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="192"/> <source>All Fonts</source> <translation>Все шрифты</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="179"/> <source>Select the background colour for all styles</source> <translation>Задайте цвет фона для всех стилей</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="182"/> <source>All Background Colours</source> <translation>Все цвета фона</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="200"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="229"/> <source>Sample Text</source> <translation>Это пример</translation> </message> @@ -10975,7 +10975,7 @@ <translation>Выберите шрифт.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation>Шрифт</translation> </message> @@ -10995,27 +10995,27 @@ <translation><b>Настроить подстветку синтаксиса</b></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="170"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="199"/> <source>Select the eol fill for all styles</source> <translation>Заливка до конца строки для всех стилей</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="173"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="202"/> <source>All Fill to end of line</source> <translation>Заливка до конца строки</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="351"/> <source>Enabled</source> <translation>Разрешена</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="352"/> <source>Disabled</source> <translation>Отключено</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Select fill to end of line for all styles</source> <translation>Заливка до конца строки для всех стилей</translation> </message> @@ -11025,92 +11025,92 @@ <translation>По умолчанию</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="187"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="216"/> <source>Press to set all styles to their default values</source> <translation>Установить значения по умолчанию для всех стилей</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="190"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="219"/> <source>All to Default</source> <translation>Всё по умолчанию</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="231"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="260"/> <source>Imports all styles of the currently selected language</source> <translation>Импортировать все стили для текущего языка</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="234"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="263"/> <source>Import styles</source> <translation>Импортировать стили</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="244"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="273"/> <source>Exports all styles of the currently selected language</source> <translation>Экспортировать все стили для текущего языка</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="247"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="276"/> <source>Export styles</source> <translation>Экспортировать стили</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="254"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="283"/> <source>Imports all styles of all languages</source> <translation>Импортировать все стили для всех языков</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="257"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="286"/> <source>Import all styles</source> <translation>Импортировать все стили</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="264"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="293"/> <source>Exports all styles of all languages</source> <translation>Экспортировать все стили для всех языков</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="267"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="296"/> <source>Export all styles</source> <translation>Экспортировать все стили</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source>Export Highlighting Styles</source> <translation>Экспорт стилей подсветки</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Ошибка экспорта стилей подсветки в файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source>Import Highlighting Styles</source> <translation>Импорт стилей подсветки</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Ошибка импорта стилей подсветки из файла<b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="477"/> <source>Highlighting styles file (*.e4h)</source> <translation>Файлы стилей подсветки (*.e4h)</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="72"/> <source>Family and Size only</source> <translation>Только семейство и размер</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="75"/> <source>Family only</source> <translation>Только семейство</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="77"/> <source>Size only</source> <translation>Только размер</translation> </message> @@ -11120,10 +11120,20 @@ <translation>Установить стиль по умолчанию</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="213"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="242"/> <source><b>Note:</b> The tick in the list above indicates the entrie's 'fill to end of line' setting.</source> <translation><b>Примечание:</b> Галочка в списке отражает значение параметра "заполнение до конца строки».</translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <source>Press to show only monospaced fonts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <source>Monospaced Fonts Only</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorKeywordsPage</name>
--- a/i18n/eric6_tr.ts Sun Jan 24 19:28:37 2016 +0100 +++ b/i18n/eric6_tr.ts Mon Jan 25 18:57:22 2016 +0100 @@ -10880,7 +10880,7 @@ <translation>Yazı tipini seç.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation>Yazı Tipi</translation> </message> @@ -10890,7 +10890,7 @@ <translation>Satır sonuna kadar dolrurmak için seç.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation>Satırın sonuna kadar doldur</translation> </message> @@ -10900,142 +10900,142 @@ <translation>Varzsayılan</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="179"/> <source>Select the background colour for all styles</source> <translation>Tüm stiller için arkaalan rengini seç</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="182"/> <source>All Background Colours</source> <translation>Tüm Arkaalan Renkleri</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="160"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="189"/> <source>Select the font for all styles.</source> <translation>Tüm stiller için yazı tipini seç.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="163"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="192"/> <source>All Fonts</source> <translation>Tüm Yazıtipleri</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="170"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="199"/> <source>Select the eol fill for all styles</source> <translation>Tüm stiller için satır sonunu seç</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="173"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="202"/> <source>All Fill to end of line</source> <translation>Satırın sonuna kadar hepsini doldur</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="187"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="216"/> <source>Press to set all styles to their default values</source> <translation>Tüm stilleri kendi varsayılanına ayarlamak için basınız</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="190"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="219"/> <source>All to Default</source> <translation>Hepisini varsayılana al</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="200"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="229"/> <source>Sample Text</source> <translation>Örnek Metin</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="231"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="260"/> <source>Imports all styles of the currently selected language</source> <translation>Halihazırda seçilen dillerin tüm sitillerini içe aktar</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="234"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="263"/> <source>Import styles</source> <translation>Stilleri içe aktar</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="244"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="273"/> <source>Exports all styles of the currently selected language</source> <translation>Seçilen geçerli dilin tüm stillerini dışa aktar</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="247"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="276"/> <source>Export styles</source> <translation>Stilleri dışa aktar</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="254"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="283"/> <source>Imports all styles of all languages</source> <translation>Seçilen geçerli dilin tüm stillerini içe aktar</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="257"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="286"/> <source>Import all styles</source> <translation>Tüm stilleri içe aktar</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="264"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="293"/> <source>Exports all styles of all languages</source> <translation>Stillerin tamamını tüm diller için dışa aktar</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="267"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="296"/> <source>Export all styles</source> <translation>Tüm stilleri dışa aktar</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="72"/> <source>Family and Size only</source> <translation>Sadece aile ve boyut</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="75"/> <source>Family only</source> <translation>Sadece aile</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="77"/> <source>Size only</source> <translation>Yalnızca boyut</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="351"/> <source>Enabled</source> <translation>Etkinleştirilmiş</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="352"/> <source>Disabled</source> <translation>Onaylanmamış</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Select fill to end of line for all styles</source> <translation>Tüm stiller için satır sonunu doldurmayı seç</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source>Export Highlighting Styles</source> <translation>Vurgulama stillerini dışa aktar</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="477"/> <source>Highlighting styles file (*.e4h)</source> <translation>Metin vurgulayıcı stil dosyaları (*.e4h)</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Metin vurgulayacı stili <b>{0}</b> dosyasına dış aktarılamıyor.</p><p>Sebep: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source>Import Highlighting Styles</source> <translation>Vurgulama stillerini içe aktar</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Metin vurgulayacı stili <b>{0}</b> dosyasından okunamıyor.</p><p>Sebep: {1}</p></translation> </message> @@ -11045,10 +11045,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="213"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="242"/> <source><b>Note:</b> The tick in the list above indicates the entrie's 'fill to end of line' setting.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <source>Press to show only monospaced fonts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <source>Monospaced Fonts Only</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorKeywordsPage</name>
--- a/i18n/eric6_zh_CN.ts Sun Jan 24 19:28:37 2016 +0100 +++ b/i18n/eric6_zh_CN.ts Mon Jan 25 18:57:22 2016 +0100 @@ -10857,7 +10857,7 @@ <translation>选择字体。</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation>字体</translation> </message> @@ -10867,7 +10867,7 @@ <translation>选择行尾填充。</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation>填充到行尾</translation> </message> @@ -10877,142 +10877,142 @@ <translation>默认</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="179"/> <source>Select the background colour for all styles</source> <translation>为所有风格选择背景色</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="182"/> <source>All Background Colours</source> <translation>所有背景色</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="160"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="189"/> <source>Select the font for all styles.</source> <translation>为所有风格选择字体</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="163"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="192"/> <source>All Fonts</source> <translation>所有字体</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="170"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="199"/> <source>Select the eol fill for all styles</source> <translation>为所有风格选择行尾填充</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="173"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="202"/> <source>All Fill to end of line</source> <translation>所有行尾填充</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="187"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="216"/> <source>Press to set all styles to their default values</source> <translation>点击将所有风格恢复成其默认值</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="190"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="219"/> <source>All to Default</source> <translation>全部默认</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="200"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="229"/> <source>Sample Text</source> <translation>示例文本 Sample Text</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="231"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="260"/> <source>Imports all styles of the currently selected language</source> <translation>导入当前选择语言的所有风格</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="234"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="263"/> <source>Import styles</source> <translation>导入风格</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="244"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="273"/> <source>Exports all styles of the currently selected language</source> <translation>导出当前选择语言的所有风格</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="247"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="276"/> <source>Export styles</source> <translation>导出风格</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="254"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="283"/> <source>Imports all styles of all languages</source> <translation>导入所有语言的所有风格</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="257"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="286"/> <source>Import all styles</source> <translation>导入所有风格</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="264"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="293"/> <source>Exports all styles of all languages</source> <translation>导出所有语言的所有风格</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="267"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="296"/> <source>Export all styles</source> <translation>导出所有风格</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="351"/> <source>Enabled</source> <translation>已开启</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="352"/> <source>Disabled</source> <translation>已禁用</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Select fill to end of line for all styles</source> <translation>为所有风格选择行尾填充</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source>Export Highlighting Styles</source> <translation>导出高亮风格</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source>Import Highlighting Styles</source> <translation>导入高亮风格</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="477"/> <source>Highlighting styles file (*.e4h)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="461"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="493"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="72"/> <source>Family and Size only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="75"/> <source>Family only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="77"/> <source>Size only</source> <translation type="unfinished"></translation> </message> @@ -11022,10 +11022,20 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="213"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="242"/> <source><b>Note:</b> The tick in the list above indicates the entrie's 'fill to end of line' setting.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="150"/> + <source>Press to show only monospaced fonts</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="153"/> + <source>Monospaced Fonts Only</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>EditorKeywordsPage</name>