Add 'percent' label to resources

This commit is contained in:
David Gardiner 2016-02-28 09:18:08 +10:30
parent 9a0bc2e367
commit 926e8f4177
3 changed files with 9 additions and 1 deletions

View File

@ -5169,7 +5169,11 @@ namespace OpenLiveWriter.Localization
/// <summary>
/// There was an unexpected error while uploading the video.
/// </summary>
YouTubeVideoError
YouTubeVideoError,
/// <summary>
/// percent
/// </summary>
percent
}
}

View File

@ -4486,4 +4486,7 @@ This might take a while.</value>
<data name="UnexpectedErrorSendError" xml:space="preserve">
<value>&amp;Send Error</value>
</data>
<data name="percent" xml:space="preserve">
<value>percent</value>
</data>
</root>

View File

@ -32,6 +32,7 @@ namespace OpenLiveWriter.PostEditor.Tables
InitializeComponent();
this.labelWidth.Text = Res.Get(StringId.WidthLabel);
this.rbPixels.Text = Res.Get(StringId.pixels);
this.rbPercent.Text = Res.Get(StringId.percent);
}
protected override void OnLoad(EventArgs e)