Minor typo.

This commit is contained in:
XhmikosR 2014-09-13 09:02:43 +03:00
parent 181553b3a0
commit 0aee5f8555
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
<!-- This list contains names/words with specific casing - and specific to english only -->
<!-- This list contains names/words with specific casing - and specific to English only -->
<ignore_list>
<name>Abbie</name>
<name>Abi</name>

View File

@ -1,4 +1,4 @@
<!-- This list contains names/words with specific casing - and specific to english only -->
<!-- This list contains names/words with specific casing - and specific to English only -->
<ignore_list>
<name>Abbey</name>
<name>Abbie</name>

View File

@ -4399,7 +4399,7 @@ namespace Nikse.SubtitleEdit.Forms
}
//Common Spanish abbreviations
//Dr. (same as english)
//Dr. (same as English)
//Sr. (same as Mr.)
//Sra. (same as Mrs.)
//Ud.

View File

@ -1014,7 +1014,7 @@ namespace Nikse.SubtitleEdit.Forms
comboBoxTesseractLanguages.SelectedIndex = i;
break;
}
else if (tl.Text.StartsWith("English") && languageString.StartsWith("english"))
else if (tl.Text.StartsWith("English") && languageString.StartsWith("English"))
{
comboBoxTesseractLanguages.SelectedIndex = i;
break;

View File

@ -28,7 +28,7 @@ namespace Nikse.SubtitleEdit.Logic
private Type _wordApplicationType;
private Type _wordDocumentType;
private IntPtr _mainHandle;
private int _languageId = 1033; // english
private int _languageId = 1033; // English
public WordSpellChecker(Main main, string languageId)
{