Browse Source

FormsDesigner.GripdOptions - Change TextBlock to Label (AccessKey), update resource

pull/18/head
PeterForstmeier 14 years ago
parent
commit
4e460c9ab2
  1. 4
      data/resources/StringResources.de.resx
  2. 4
      data/resources/StringResources.resx
  3. 6
      src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/OptionPanels/GridOptionsPanel.xaml

4
data/resources/StringResources.de.resx

@ -3680,7 +3680,7 @@ wurde außerhalb der Applikation geändert. Wollen Sie die Datei neu laden?</val @@ -3680,7 +3680,7 @@ wurde außerhalb der Applikation geändert. Wollen Sie die Datei neu laden?</val
<value>Rastereinstellungen</value>
</data>
<data name="ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.GridOptionsPanel.HeightLabel" xml:space="preserve">
<value>Höhe</value>
<value>&amp;Höhe</value>
</data>
<data name="ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.GridOptionsPanel.InPlaceEditCheckBox" xml:space="preserve">
<value>Direkt-Editieren von ToolStrips aktivieren</value>
@ -3719,7 +3719,7 @@ wurde außerhalb der Applikation geändert. Wollen Sie die Datei neu laden?</val @@ -3719,7 +3719,7 @@ wurde außerhalb der Applikation geändert. Wollen Sie die Datei neu laden?</val
<value>Am Gitter einrasten</value>
</data>
<data name="ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.GridOptionsPanel.WidthLabel" xml:space="preserve">
<value>Breite</value>
<value>&amp;Breite</value>
</data>
<data name="ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.InsertTodoCommentInEventHandlers" xml:space="preserve">
<value>"TODO"-Kommentare für neue Ereignis-Handler einfügen</value>

4
data/resources/StringResources.resx

@ -3876,7 +3876,7 @@ has been changed externally. Do you want to reload it?</value> @@ -3876,7 +3876,7 @@ has been changed externally. Do you want to reload it?</value>
<value>Grid Properties</value>
</data>
<data name="ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.GridOptionsPanel.HeightLabel" xml:space="preserve">
<value>Height</value>
<value>&amp;Height</value>
</data>
<data name="ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.GridOptionsPanel.InPlaceEditCheckBox" xml:space="preserve">
<value>Enable in-place editing of ToolStrips</value>
@ -3915,7 +3915,7 @@ has been changed externally. Do you want to reload it?</value> @@ -3915,7 +3915,7 @@ has been changed externally. Do you want to reload it?</value>
<value>Snap to Grid</value>
</data>
<data name="ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.GridOptionsPanel.WidthLabel" xml:space="preserve">
<value>Width</value>
<value>&amp;Width</value>
</data>
<data name="ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.InsertTodoCommentInEventHandlers" xml:space="preserve">
<value>Insert "TODO" comment in new event handlers</value>

6
src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/OptionPanels/GridOptionsPanel.xaml

@ -32,11 +32,11 @@ @@ -32,11 +32,11 @@
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<TextBlock Text="{sd:Localize ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.GridOptionsPanel.WidthLabel}"></TextBlock>
<Label Content="{sd:Localize ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.GridOptionsPanel.WidthLabel}"></Label>
<TextBox x:Name="widthTextBox" Margin="0,0,60,0" Width="40" IsEnabled="False" Grid.Column="1" ></TextBox>
<TextBlock Grid.Row="1" Margin="0,5,0,0"
Text="{sd:Localize ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.GridOptionsPanel.HeightLabel}"></TextBlock>
<Label Grid.Row="1" Margin="0,5,0,0"
Content="{sd:Localize ICSharpCode.SharpDevelop.FormDesigner.Gui.OptionPanels.GridOptionsPanel.HeightLabel}"></Label>
<TextBox x:Name="heightTextBox" Margin="0,5,60,0" Width="40"
IsEnabled="False" Grid.Row="1" Grid.Column="1" ></TextBox>

Loading…
Cancel
Save