diff options
author | Scott <[email protected]> | 2015-10-24 21:20:16 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2015-10-24 21:20:16 +0100 |
commit | a5e11c672683a315646ba78e74d6c4beb719bfd1 (patch) | |
tree | 4ceebf66ac6b431a3c6108dfaccf2304ed85b70d /win/CS/HandBrakeWPF/Properties | |
parent | 5453dde3e30ee93fd49a779e4b3ce40d0077e045 (diff) |
Adding a "When Done" Label and Context Menu to the Main Screen status bar.
This should make it more obvious to users that they have a "When done" action turned on, especially when coming back to the app after a period of time.
Diffstat (limited to 'win/CS/HandBrakeWPF/Properties')
4 files changed, 14 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Properties/ResourcesTooltips.Designer.cs b/win/CS/HandBrakeWPF/Properties/ResourcesTooltips.Designer.cs index 4839b7d42..f7e495daa 100644 --- a/win/CS/HandBrakeWPF/Properties/ResourcesTooltips.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/ResourcesTooltips.Designer.cs @@ -173,6 +173,15 @@ namespace HandBrakeWPF.Properties { }
/// <summary>
+ /// Looks up a localized string similar to When HandBrake has finished the current queue or encode it will perform this action..
+ /// </summary>
+ public static string MainView_WhenDone {
+ get {
+ return ResourceManager.GetString("MainView_WhenDone", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to None - Force pixel aspect ratio to 1:1.
///Loose - Align dimensions to chosen 'Alignment' value
/// and pick pixel aspect ratio that preserves the
diff --git a/win/CS/HandBrakeWPF/Properties/ResourcesTooltips.resx b/win/CS/HandBrakeWPF/Properties/ResourcesTooltips.resx index 536409cae..be3ea622d 100644 --- a/win/CS/HandBrakeWPF/Properties/ResourcesTooltips.resx +++ b/win/CS/HandBrakeWPF/Properties/ResourcesTooltips.resx @@ -305,4 +305,7 @@ to make bitrate allocation decisions.</value> VFR is not compatible with some players.</value>
</data>
+ <data name="MainView_WhenDone" xml:space="preserve">
+ <value>When HandBrake has finished the current queue or encode it will perform this action.</value>
+ </data>
</root>
\ No newline at end of file diff --git a/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs b/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs index 766fb27ab..10afa9c83 100644 --- a/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs @@ -1771,7 +1771,7 @@ namespace HandBrakeWPF.Properties { }
/// <summary>
- /// Looks up a localized string similar to When Done::.
+ /// Looks up a localized string similar to When Done:.
/// </summary>
public static string QueueView_WhenDone {
get {
diff --git a/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx b/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx index f61aa17c6..2d9793240 100644 --- a/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx +++ b/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx @@ -553,7 +553,7 @@ <value>Video:</value>
</data>
<data name="QueueView_WhenDone" xml:space="preserve">
- <value>When Done::</value>
+ <value>When Done:</value>
</data>
<data name="StaticPreviewView_Duration" xml:space="preserve">
<value>Duration:</value>
|