I am using <RichTextBox><FlowDocument><Paragraph> to display the Terms and Condition of my application.
<RichTextBox Margin="10">
<FlowDocument>
<Paragraph TextAlignment="Center" FontSize="12">SYSTEM</Paragraph>
<Paragraph Name="LoginParagrahp1" FontStyle="Normal" TextAlignment="Justify" FontSize="10" >
<Run Text="{l:Translate IDS_LOGIN_PARAGRAPH1}"></Run>
</Paragraph>
</FlowDocument>
</RichTextBox>
but it gives me an exception on build.
The string is coming from the .resx file. How can I solve this issue?


