diff options
author | sr55 <[email protected]> | 2018-07-25 21:13:35 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-07-25 21:13:35 +0100 |
commit | 3e942937d7deb873df6f777d748f791e5fb95a05 (patch) | |
tree | e0a5ae2f0211d04f7e1060bd7258a5e2456cc17f /win/CS/HandBrakeWPF/Properties | |
parent | 36a02cd7b681f51d340f3ca84bd19f6aa233f9dc (diff) |
WinGui: Make the error message nicer when the system clipboard is unavailable. #1498
Diffstat (limited to 'win/CS/HandBrakeWPF/Properties')
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.Designer.cs | 18 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.resx | 6 |
2 files changed, 24 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs index a22cf482b..bbe866be0 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs @@ -576,6 +576,24 @@ namespace HandBrakeWPF.Properties { }
/// <summary>
+ /// Looks up a localized string similar to The system clipboard is currently unavailable..
+ /// </summary>
+ public static string Clipboard_Unavailable {
+ get {
+ return ResourceManager.GetString("Clipboard_Unavailable", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to This may be due to another application monitoring or locking the clipboard for its own use. You will not be able to use the clipboard until it is unlocked..
+ /// </summary>
+ public static string Clipboard_Unavailable_Solution {
+ get {
+ return ResourceManager.GetString("Clipboard_Unavailable_Solution", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Confirm.
/// </summary>
public static string Confirm {
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.resx b/win/CS/HandBrakeWPF/Properties/Resources.resx index 84d46f2b9..21bed46f7 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.resx +++ b/win/CS/HandBrakeWPF/Properties/Resources.resx @@ -885,4 +885,10 @@ Time Remaining: {5}, Elapsed: {6:d\:hh\:mm\:ss}</value> <value>The file '{0}' already exists!
Would you like to overwrite it?</value>
</data>
+ <data name="Clipboard_Unavailable" xml:space="preserve">
+ <value>The system clipboard is currently unavailable.</value>
+ </data>
+ <data name="Clipboard_Unavailable_Solution" xml:space="preserve">
+ <value>This may be due to another application monitoring or locking the clipboard for its own use. You will not be able to use the clipboard until it is unlocked.</value>
+ </data>
</root>
\ No newline at end of file |