Adjustments for editor to make langauge more clear for how to interact with editor. (#10298)

This commit is contained in:
Clint Rutkas
2021-03-17 15:45:12 -07:00
committed by GitHub
parent 72d92413a2
commit cc38d42bf9
3 changed files with 69 additions and 20 deletions

View File

@@ -35,12 +35,23 @@
Margin="0,4,0,0" /> Margin="0,4,0,0" />
</Grid> </Grid>
<StackPanel Margin="16"> <StackPanel Margin="16">
<TextBlock Text="{x:Static props:Resources.Note_Custom_Table}" <StackPanel Margin="0,8,0,0">
Foreground="{DynamicResource SecondaryForegroundBrush}" <TextBlock
Style="{StaticResource CaptionTextBlockStyle}" TextWrapping="Wrap">
Margin="0,8,0,0" <Run
TextWrapping="Wrap" /> FontWeight="Bold"
Text="{x:Static props:Resources.SplitterName}" />
<Run Text="{x:Static props:Resources.SplitterDescription}" />
</TextBlock>
<TextBlock
Margin="0,8,0,0"
TextWrapping="Wrap">
<Run
FontWeight="Bold"
Text="{x:Static props:Resources.MergeName}" />
<Run Text="{x:Static props:Resources.MergeDescription}" />
</TextBlock>
</StackPanel>
<Grid Margin="0,24,0,0"> <Grid Margin="0,24,0,0">
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/> <ColumnDefinition Width="*"/>

View File

@@ -501,6 +501,24 @@ namespace FancyZonesEditor.Properties {
} }
} }
/// <summary>
/// Looks up a localized string similar to Click and drag across zones..
/// </summary>
public static string MergeDescription {
get {
return ResourceManager.GetString("MergeDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Merge/Delete:.
/// </summary>
public static string MergeName {
get {
return ResourceManager.GetString("MergeName", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Monitor. /// Looks up a localized string similar to Monitor.
/// </summary> /// </summary>
@@ -528,16 +546,6 @@ namespace FancyZonesEditor.Properties {
} }
} }
/// <summary>
/// Looks up a localized string similar to Hold down Shift key to change orientation of splitter.
///To merge zones, select the zones and click &quot;merge&quot;..
/// </summary>
public static string Note_Custom_Table {
get {
return ResourceManager.GetString("Note_Custom_Table", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Number of zones. /// Looks up a localized string similar to Number of zones.
/// </summary> /// </summary>
@@ -601,6 +609,24 @@ namespace FancyZonesEditor.Properties {
} }
} }
/// <summary>
/// Looks up a localized string similar to Hold Shift key for vertical split..
/// </summary>
public static string SplitterDescription {
get {
return ResourceManager.GetString("SplitterDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Splitter:.
/// </summary>
public static string SplitterName {
get {
return ResourceManager.GetString("SplitterName", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to No layout. /// Looks up a localized string similar to No layout.
/// </summary> /// </summary>

View File

@@ -159,10 +159,6 @@
<data name="Name" xml:space="preserve"> <data name="Name" xml:space="preserve">
<value>Name</value> <value>Name</value>
</data> </data>
<data name="Note_Custom_Table" xml:space="preserve">
<value>Hold down Shift key to change orientation of splitter.
To merge zones, hold down the left mouse button, drag the mouse to the zone to merge, release the mouse button and click "Merge zones".</value>
</data>
<data name="Save_Apply" xml:space="preserve"> <data name="Save_Apply" xml:space="preserve">
<value>Save &amp; apply</value> <value>Save &amp; apply</value>
</data> </data>
@@ -334,4 +330,20 @@ To merge zones, hold down the left mouse button, drag the mouse to the zone to m
<data name="Default_Custom_Layout_Name" xml:space="preserve"> <data name="Default_Custom_Layout_Name" xml:space="preserve">
<value>Custom layout</value> <value>Custom layout</value>
</data> </data>
<data name="MergeDescription" xml:space="preserve">
<value>Click and drag across zones.</value>
<comment>Click mouse, hold button down and drag across multiple zones in tool</comment>
</data>
<data name="MergeName" xml:space="preserve">
<value>Merge/Delete:</value>
<comment>Title for concept behind Merging two zones together or removing an zone</comment>
</data>
<data name="SplitterDescription" xml:space="preserve">
<value>Hold Shift key for vertical split.</value>
<comment>A segmenter visual for splitting one item into two. This would be the vertical line. Shift key is referring to key on keyboard</comment>
</data>
<data name="SplitterName" xml:space="preserve">
<value>Splitter:</value>
<comment>Title for concept: A segmenter visual for splitting one item into two. This would be the vertical line</comment>
</data>
</root> </root>