diff options
| author | Avi Levkovich <avi@twine-s.com> | 2020-07-15 16:35:07 +0300 |
|---|---|---|
| committer | Avi Levkovich <avi@twine-s.com> | 2020-07-15 16:35:07 +0300 |
| commit | c113e9c8f4950f8a7fb1e6643232a090c7ea98be (patch) | |
| tree | 085d7993dcf6c407eb91b51fd915e15ddaacdae6 /Software/Visual_Studio/PPC/Modules | |
| parent | 0a14332aba78d4895f60af38fbf8187503149e7e (diff) | |
| parent | d86a63d6ec2c74b5e0edd49e22a5acd04c6b6f9c (diff) | |
| download | Tango-c113e9c8f4950f8a7fb1e6643232a090c7ea98be.tar.gz Tango-c113e9c8f4950f8a7fb1e6643232a090c7ea98be.zip | |
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobProgressView.xaml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobProgressView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobProgressView.xaml index 4e313f7a8..40cfc40f9 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobProgressView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Views/JobProgressView.xaml @@ -100,7 +100,7 @@ <StackPanel Height="90" Visibility="{Binding RunningJobStatus.IsSettingUp,Converter={StaticResource BooleanToVisibilityConverter}}"> <StackPanel Orientation="Horizontal" HorizontalAlignment="Center"> <Image Source="../Images/JobProgressView/drop.png" Stretch="None" /> - <TextBlock Margin="5 0 0 0" VerticalAlignment="Center" FontSize="{StaticResource TangoTitleFontSize}">Getting ready...</TextBlock> + <TextBlock Margin="5 0 0 0" VerticalAlignment="Center" FontSize="{StaticResource TangoTitleFontSize}">Getting Ready...</TextBlock> </StackPanel> </StackPanel> @@ -146,19 +146,19 @@ <TextBlock Margin="0 -25 0 0" Canvas.Left="{Binding RelativeSource={RelativeSource Mode=Self},Path=ActualWidth,Converter={StaticResource MathOperatorConverter},ConverterParameter='*-0.5'}" HorizontalAlignment="Center" FontSize="{StaticResource TangoTitleFontSize}"> <TextBlock.Style> <Style TargetType="TextBlock"> - <Setter Property="Text" Value="now dyeing"></Setter> + <Setter Property="Text" Value="Now Dyeing"></Setter> <Style.Triggers> <DataTrigger Binding="{Binding RunningJobStatus.IsSettingUp}" Value="True"> - <Setter Property="Text" Value="getting ready"></Setter> + <Setter Property="Text" Value="Getting Ready"></Setter> </DataTrigger> <DataTrigger Binding="{Binding RunningJobStatus.IsCanceled}" Value="True"> - <Setter Property="Text" Value="job canceled"></Setter> + <Setter Property="Text" Value="Job Canceled"></Setter> </DataTrigger> <DataTrigger Binding="{Binding RunningJobStatus.IsFailed}" Value="True"> - <Setter Property="Text" Value="job failed"></Setter> + <Setter Property="Text" Value="Job Failed"></Setter> </DataTrigger> <DataTrigger Binding="{Binding RunningJobStatus.IsCompleted}" Value="True"> - <Setter Property="Text" Value="job completed"></Setter> + <Setter Property="Text" Value="Job Completed"></Setter> </DataTrigger> </Style.Triggers> </Style> |
