[Monodevelop-patches-list] r803 - in trunk/MonoDevelop: data/resources/glade src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Fri Feb 6 02:28:46 EST 2004
Author: dkor
Date: 2004-02-06 02:28:46 -0500 (Fri, 06 Feb 2004)
New Revision: 803
Modified:
trunk/MonoDevelop/data/resources/glade/EditorBindings.glade
trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/BehaviorTextEditorPanel.cs
Log:
Small UI Fix of the BehaviorTextEditorPanel in Indentation RadioButtons
Modified: trunk/MonoDevelop/data/resources/glade/EditorBindings.glade
===================================================================
--- trunk/MonoDevelop/data/resources/glade/EditorBindings.glade 2004-02-06 07:09:42 UTC (rev 802)
+++ trunk/MonoDevelop/data/resources/glade/EditorBindings.glade 2004-02-06 07:28:46 UTC (rev 803)
@@ -1356,7 +1356,7 @@
<widget class="GtkRadioButton" id="noneIndentStyle">
<property name="visible">True</property>
<property name="can_focus">True</property>
- <property name="label" translatable="yes">None-</property>
+ <property name="label" translatable="yes">None</property>
<property name="use_underline">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property>
<property name="active">False</property>
@@ -1374,7 +1374,7 @@
<widget class="GtkRadioButton" id="automaticIndentStyle">
<property name="visible">True</property>
<property name="can_focus">True</property>
- <property name="label" translatable="yes">Automatic-</property>
+ <property name="label" translatable="yes">Automatic</property>
<property name="use_underline">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property>
<property name="active">False</property>
@@ -1393,7 +1393,7 @@
<widget class="GtkRadioButton" id="smartIndentStyle">
<property name="visible">True</property>
<property name="can_focus">True</property>
- <property name="label" translatable="yes">Smart-</property>
+ <property name="label" translatable="yes">Smart</property>
<property name="use_underline">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property>
<property name="active">False</property>
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/BehaviorTextEditorPanel.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/BehaviorTextEditorPanel.cs 2004-02-06 07:09:42 UTC (rev 802)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/EditorBindings/Gui/OptionPanels/BehaviorTextEditorPanel.cs 2004-02-06 07:28:46 UTC (rev 803)
@@ -70,6 +70,12 @@
base ("EditorBindings.glade", "BehaviorTextEditorPanel")
{
// Set up Text
+
+ //FIXME: i8n the following Labels
+ noneIndentStyle.Label = "None";
+ automaticIndentStyle.Label = "Automatic";
+ smartIndentStyle.Label = "Smart";
+
tabsGroupBoxLabel.Markup = "<b>" + StringParserService.Parse(
"${res:Dialog.Options.IDEOptions.TextEditor.Behaviour.TabsGroupBox}") + "</b>";
tabSizeLabel.TextWithMnemonic = StringParserService.Parse(
@@ -103,7 +109,7 @@
"AutoInsertTemplates", true);
convertTabsToSpacesCheckBox.Active = ((IProperties)CustomizationObject).GetProperty(
"TabsToSpaces", false);
-
+
//FIXME: Only one of these should be selected to hold the value
indentAndTabSizeSpinButton.Value = ((IProperties)CustomizationObject).GetProperty(
"TabIndent", 4);
More information about the Monodevelop-patches-list
mailing list