// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The subtitle behaviours modes.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Model.Subtitles
{
using System.ComponentModel.DataAnnotations;
using HandBrake.ApplicationServices.Attributes;
///
/// The subtitle behaviours modes.
///
public enum SubtitleBehaviourModes
{
[DisplayName("None")]
[ShortName("none")]
None = 0,
[DisplayName("First Matching Selected Language")]
[ShortName("first")]
FirstMatch,
[DisplayName("All Matching Selected Languages")]
[ShortName("all")]
AllMatching,
}
}