Skip to content

Commit

Permalink
Make EULA string dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
ashokgelal committed May 3, 2017
1 parent ed72b35 commit c8059a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Magpie/Magpie/Resources/Strings.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@
<system:String x:Key="_enroll">Enroll</system:String>
<system:String x:Key="_enrollMsg">Please provide your email address to join the {0} Program</system:String>
<system:String x:Key="_eulaMsg" xml:space="preserve">By enrolling in this program you agree with our </system:String>
<system:String x:Key="_eula">Terms and Condtions</system:String>
</ResourceDictionary>
2 changes: 1 addition & 1 deletion src/Magpie/Magpie/Views/EnrollmentWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
Text="{DynamicResource _eulaMsg}"
TextWrapping="Wrap">
<Hyperlink NavigateUri="{Binding EnrollmentEulaUrl}" RequestNavigate="NavigateUri">
<Run Text="EULA"/>
<Run Text="{DynamicResource _eula}"/>
</Hyperlink>
</TextBlock>
<Border Grid.Row="3"
Expand Down

0 comments on commit c8059a7

Please sign in to comment.