Skip to content

Commit

Permalink
Fix strings
Browse files Browse the repository at this point in the history
  • Loading branch information
jsidewhite committed Apr 15, 2024
1 parent 472bbf9 commit f35affb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,17 @@
<comment>Length of the previously run quiet session</comment>
</data>
<data name="QuietBackgroundProcesses.Description" xml:space="preserve">
<value>Quiet background processes allows you to free up resources while developing</value>
<value>Enhance resource management while developing for a maximum of 2 hours</value>
<comment>Description of the Quiet background processes feature</comment>
</data>
<data name="QuietBackgroundProcesses.Header" xml:space="preserve">
<value>Quiet background processes</value>
<comment>Inline title of the Quiet background processes feature</comment>
</data>
<data name="QuietBackgroundProcessesExplanation.Description" xml:space="preserve">
<value>This feature is 2 hours and makes resources available while developing.</value>
<value>An analytic summary will be available after a session has completed. The summary will include an overview of process resource consumption. The analytic summary is not available while feature is active.</value>
<comment>A description of the Quiet background processes time window</comment>
</data>
<data name="QuietBackgroundProcessesExplanation.Header" xml:space="preserve">
<value>Quiet background processes beta feature description</value>
<comment>Title of the next settings card that explains the feature in more detail</comment>
</data>
<data name="QuietBackgroundProcessesExplanation_LinkToDocs.Text" xml:space="preserve">
<value>Link to docs</value>
<comment>Link that launches documentation</comment>
Expand All @@ -113,7 +109,7 @@
<comment>Title of the analytic summary page</comment>
</data>
<data name="AnalyticSummary_Description.Text" xml:space="preserve">
<value>Analytic summary description...</value>
<value>Analysis of process CPU utilization while the session was in use. Calculated amount of time that the process used CPU above the designated threshold.</value>
<comment>Desciption of the analytic summary page</comment>
</data>
<data name="AnalyticSummary_SortBy_Label.Text" xml:space="preserve">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
PrimaryButtonClick="SaveReportButtonClicked"
Style="{StaticResource DefaultContentDialogStyle}">

<Grid Height="480" Width="500">
<Grid Height="480" Width="600">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
Expand All @@ -27,7 +27,8 @@
<TextBlock
x:Uid="AnalyticSummary_Description"
HorizontalAlignment="Left"
Margin="16,10,0,0" />
TextWrapping="Wrap"
Margin="16,10,100,0" />

<!-- Filters & sorting -->
<Grid Margin="15 40 15 5">
Expand Down Expand Up @@ -60,7 +61,7 @@
Grid.Column="2"
x:Uid="AnalyticSummary_FilterProcesses_PlaceholderText"
x:Name="FilterTextBox"
Margin="50 0 0 0">
Margin="30 0 100 0">
<i:Interaction.Behaviors>
<ic:EventTriggerBehavior EventName="TextChanged">
<ic:InvokeCommandAction
Expand All @@ -72,7 +73,7 @@
</Grid>
</StackPanel>

<ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto" Margin="0 20 0 0">
<ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto" Margin="0 20 100 0">
<local:ProcessPerformanceTableControl x:Name="processListControl" ItemsSource="{x:Bind ViewModel.ProcessDatasAd}" />
</ScrollViewer>
</Grid>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,31 +37,31 @@
</Grid.RowDefinitions>

<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="180" />
<ColumnDefinition Width="130" />
<ColumnDefinition Width="200" />
</Grid.ColumnDefinitions>

<Border Grid.Column="0" Style="{StaticResource BorderStyle}">
<TextBlock
x:Uid="ProcessPerformanceTableControl_Heading_Process"
Padding="10 0 0 0"
Padding="20 0 0 0"
VerticalAlignment="Center"
HorizontalAlignment="Left"
HorizontalTextAlignment="Left" />
</Border>
<Border Grid.Column="1" Style="{StaticResource BorderStyle}">
<TextBlock
x:Uid="ProcessPerformanceTableControl_Heading_ProcessType"
Margin="20 0 0 0"
Margin="40 0 0 0"
VerticalAlignment="Center"
HorizontalAlignment="Left"
HorizontalTextAlignment="Left" />
</Border>
<Border Grid.Column="2" Grid.ColumnSpan="2" Style="{StaticResource BorderStyle}">
<TextBlock
x:Uid="ProcessPerformanceTableControl_Heading_CpuAboveThreshold"
Margin="20 0 0 0"
Margin="40 0 0 0"
VerticalAlignment="Center"
HorizontalAlignment="Left"
HorizontalTextAlignment="Left"
Expand All @@ -74,9 +74,9 @@
<DataTemplate x:DataType="local:ProcessData">
<Grid ColumnSpacing="5">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="180" />
<ColumnDefinition Width="130" />
<ColumnDefinition Width="200" />
</Grid.ColumnDefinitions>

<Border Grid.Column="0" Style="{StaticResource BorderStyle}" BorderThickness="0, 0, 1, 0">
Expand Down

0 comments on commit f35affb

Please sign in to comment.