diff options
author | sr55 <[email protected]> | 2013-05-22 19:03:53 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-05-22 19:03:53 +0000 |
commit | b4439911971a0801b944ad87aee08ea7f3bb8616 (patch) | |
tree | 0adfc42576d1a41ae084edf693cce2cbf9487001 /win/CS/HandBrakeWPF/Constants.cs | |
parent | 58e8804f56c0d7e18c65b12fec16c14dae93ea76 (diff) |
WinGui: Make the AutoNaming feature less trigger happy. It should not run for cases where it's not going to change the underlying filename.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5498 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Constants.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Constants.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Constants.cs b/win/CS/HandBrakeWPF/Constants.cs index 7295c9339..1d279427a 100644 --- a/win/CS/HandBrakeWPF/Constants.cs +++ b/win/CS/HandBrakeWPF/Constants.cs @@ -28,5 +28,15 @@ namespace HandBrakeWPF /// The any.
/// </summary>
public const string Any = "(Any)";
+
+ /// <summary>
+ /// The chapters.
+ /// </summary>
+ public const string Chapters = "{chapters}";
+
+ /// <summary>
+ /// The title.
+ /// </summary>
+ public const string Title = "{title}";
}
}
|