Preferences/ConfigurationPages/EditorStylesPage.py

changeset 3190
a9a94491c4fd
parent 3160
209a07d7e401
child 3341
7c015811fc4d
equal deleted inserted replaced
3189:9a21c547de5f 3190:a9a94491c4fd
46 QsciScintilla.EdgeLine, 46 QsciScintilla.EdgeLine,
47 QsciScintilla.EdgeBackground 47 QsciScintilla.EdgeBackground
48 ] 48 ]
49 49
50 self.wrapModeComboBox.addItem( 50 self.wrapModeComboBox.addItem(
51 self.trUtf8("Disabled"), QsciScintilla.WrapNone) 51 self.tr("Disabled"), QsciScintilla.WrapNone)
52 self.wrapModeComboBox.addItem( 52 self.wrapModeComboBox.addItem(
53 self.trUtf8("Word Boundary"), QsciScintilla.WrapWord) 53 self.tr("Word Boundary"), QsciScintilla.WrapWord)
54 self.wrapModeComboBox.addItem( 54 self.wrapModeComboBox.addItem(
55 self.trUtf8("Character Boundary"), QsciScintilla.WrapCharacter) 55 self.tr("Character Boundary"), QsciScintilla.WrapCharacter)
56 self.wrapVisualComboBox.addItem( 56 self.wrapVisualComboBox.addItem(
57 self.trUtf8("No Indicator"), QsciScintilla.WrapFlagNone) 57 self.tr("No Indicator"), QsciScintilla.WrapFlagNone)
58 self.wrapVisualComboBox.addItem( 58 self.wrapVisualComboBox.addItem(
59 self.trUtf8("Indicator by Text"), QsciScintilla.WrapFlagByText) 59 self.tr("Indicator by Text"), QsciScintilla.WrapFlagByText)
60 self.wrapVisualComboBox.addItem( 60 self.wrapVisualComboBox.addItem(
61 self.trUtf8("Indicator by Margin"), QsciScintilla.WrapFlagByBorder) 61 self.tr("Indicator by Margin"), QsciScintilla.WrapFlagByBorder)
62 if QSCINTILLA_VERSION() >= 0x020700: 62 if QSCINTILLA_VERSION() >= 0x020700:
63 self.wrapVisualComboBox.addItem( 63 self.wrapVisualComboBox.addItem(
64 self.trUtf8("Indicator in Line Number Margin"), 64 self.tr("Indicator in Line Number Margin"),
65 QsciScintilla.WrapFlagInMargin) 65 QsciScintilla.WrapFlagInMargin)
66 66
67 if QSCINTILLA_VERSION() < 0x020800: 67 if QSCINTILLA_VERSION() < 0x020800:
68 self.caretlineAlwaysVisibleCheckBox.hide() 68 self.caretlineAlwaysVisibleCheckBox.hide()
69 69

eric ide

mercurial