Add 'percent' label to resources
This commit is contained in:
parent
9a0bc2e367
commit
926e8f4177
|
@ -5169,7 +5169,11 @@ namespace OpenLiveWriter.Localization
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// There was an unexpected error while uploading the video.
|
/// There was an unexpected error while uploading the video.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
YouTubeVideoError
|
YouTubeVideoError,
|
||||||
|
/// <summary>
|
||||||
|
/// percent
|
||||||
|
/// </summary>
|
||||||
|
percent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4486,4 +4486,7 @@ This might take a while.</value>
|
||||||
<data name="UnexpectedErrorSendError" xml:space="preserve">
|
<data name="UnexpectedErrorSendError" xml:space="preserve">
|
||||||
<value>&Send Error</value>
|
<value>&Send Error</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="percent" xml:space="preserve">
|
||||||
|
<value>percent</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
|
@ -32,6 +32,7 @@ namespace OpenLiveWriter.PostEditor.Tables
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
this.labelWidth.Text = Res.Get(StringId.WidthLabel);
|
this.labelWidth.Text = Res.Get(StringId.WidthLabel);
|
||||||
this.rbPixels.Text = Res.Get(StringId.pixels);
|
this.rbPixels.Text = Res.Get(StringId.pixels);
|
||||||
|
this.rbPercent.Text = Res.Get(StringId.percent);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnLoad(EventArgs e)
|
protected override void OnLoad(EventArgs e)
|
||||||
|
|
Loading…
Reference in New Issue