mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 11:42:36 +01:00
19 lines
333 B
C#
19 lines
333 B
C#
namespace Nikse.SubtitleEdit.Core.Enums
|
|
{
|
|
public enum SpellCheckAction
|
|
{
|
|
Change,
|
|
ChangeAll,
|
|
Skip,
|
|
SkipWholeLine,
|
|
SkipAll,
|
|
AddToDictionary,
|
|
Abort,
|
|
ChangeLanguage,
|
|
AddToNames,
|
|
AddToNamesOnly,
|
|
ChangeWholeText,
|
|
DeleteLine
|
|
}
|
|
}
|