// -------------------------------------------------------------------------------------------------------------------- // // 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 HandBrake.ApplicationServices.Model.Subtitle { using System.ComponentModel.DataAnnotations; /// /// The subtitle behaviours modes. /// public enum SubtitleBehaviourModes { [Display(Name = "None")] None = 0, [Display(Name = "First Matching Selected Language")] FirstMatch, [Display(Name = "All Matching Selected Languages")] AllMatching, } }