diff options
author | sr55 <[email protected]> | 2017-08-28 15:16:40 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2017-08-28 15:16:40 +0100 |
commit | ec19d8520ea39761053cccb2744931f0195b7bba (patch) | |
tree | c141be678fb13ee103cc2831737eaad40734b0c9 /win/CS/HandBrakeWPF/Properties | |
parent | 871ffc2ed52c5480b4765a21d12e18173c1c0eac (diff) |
WinGui: Putting in some back-end infrastructure into the queue screen to support future features + some misc tidy up.
Diffstat (limited to 'win/CS/HandBrakeWPF/Properties')
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.Designer.cs | 47 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.resx | 15 |
2 files changed, 61 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs index faa05611f..84c370a37 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs @@ -19,7 +19,7 @@ namespace HandBrakeWPF.Properties { // class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Resources {
@@ -1439,6 +1439,51 @@ namespace HandBrakeWPF.Properties { }
/// <summary>
+ /// Looks up a localized string similar to HandBrake is already encoding a file..
+ /// </summary>
+ public static string Queue_AlreadyEncoding {
+ get {
+ return ResourceManager.GetString("Queue_AlreadyEncoding", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Please stop the current encode. If the problem persists, please restart HandBrake..
+ /// </summary>
+ public static string Queue_AlreadyEncodingSolution {
+ get {
+ return ResourceManager.GetString("Queue_AlreadyEncodingSolution", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to reset job status as it is not in an Error or Completed state.
+ /// </summary>
+ public static string Queue_UnableToResetJob {
+ get {
+ return ResourceManager.GetString("Queue_UnableToResetJob", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Unable to restore queue file..
+ /// </summary>
+ public static string Queue_UnableToRestoreFile {
+ get {
+ return ResourceManager.GetString("Queue_UnableToRestoreFile", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The file may be corrupted or from an older incompatible version of HandBrake.
+ /// </summary>
+ public static string Queue_UnableToRestoreFileExtended {
+ get {
+ return ResourceManager.GetString("Queue_UnableToRestoreFileExtended", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to WARNING: You do not have automatic file naming turned on. Please enable this in options..
/// </summary>
public static string QueueSelection_AutoNameWarning {
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.resx b/win/CS/HandBrakeWPF/Properties/Resources.resx index 61b5b139d..23b422da2 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.resx +++ b/win/CS/HandBrakeWPF/Properties/Resources.resx @@ -849,4 +849,19 @@ Remaining Time: {4}</value> <data name="Main_LowDiskspace" xml:space="preserve">
<value>Your destination directory is low on diskspace. Please free up some disk space on your destination drive. Alternatively you can change the level at which this alert triggers in Options. </value>
</data>
+ <data name="Queue_UnableToResetJob" xml:space="preserve">
+ <value>Unable to reset job status as it is not in an Error or Completed state</value>
+ </data>
+ <data name="Queue_UnableToRestoreFile" xml:space="preserve">
+ <value>Unable to restore queue file.</value>
+ </data>
+ <data name="Queue_UnableToRestoreFileExtended" xml:space="preserve">
+ <value>The file may be corrupted or from an older incompatible version of HandBrake</value>
+ </data>
+ <data name="Queue_AlreadyEncoding" xml:space="preserve">
+ <value>HandBrake is already encoding a file.</value>
+ </data>
+ <data name="Queue_AlreadyEncodingSolution" xml:space="preserve">
+ <value>Please stop the current encode. If the problem persists, please restart HandBrake.</value>
+ </data>
</root>
\ No newline at end of file |