SubtitleEdit/libse/Enums/SpellCheckAction.cs

15 lines
268 B
C#
Raw Normal View History

2015-08-26 23:04:50 +02:00
namespace Nikse.SubtitleEdit.Core.Enums
{
public enum SpellCheckAction
{
Change,
ChangeAll,
Skip,
SkipAll,
AddToDictionary,
Abort,
ChangeLanguage,
AddToNamesEtc,
ChangeWholeText
}
}