mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
Fix issue with Greek/missing spaces regarding "Ο,ΤΙ" - thx Harry :)
This commit is contained in:
parent
98104f30fd
commit
a2d77afed2
@ -36,6 +36,7 @@ namespace Nikse.SubtitleEdit.Core.Forms.FixCommonErrors
|
||||
(p.Text.Substring(match.Index).StartsWith("ό,τι", StringComparison.Ordinal) ||
|
||||
p.Text.Substring(match.Index).StartsWith("O,τι", StringComparison.Ordinal) ||
|
||||
p.Text.Substring(match.Index).StartsWith("Ό,τι", StringComparison.Ordinal) ||
|
||||
p.Text.Substring(match.Index).StartsWith("Ο,ΤΙ", StringComparison.Ordinal) ||
|
||||
p.Text.Substring(match.Index).StartsWith("ο,τι", StringComparison.Ordinal)))
|
||||
{
|
||||
doFix = false;
|
||||
|
Loading…
Reference in New Issue
Block a user