SubtitleEdit/libse/Enums/SpellCheckAction.cs

16 lines
269 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
}
2016-01-24 11:51:04 +01:00
}