working on scc

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@1983 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2013-08-07 19:02:15 +00:00
parent 2d39aada77
commit ec87717c38

View File

@ -124,6 +124,7 @@ namespace Nikse.SubtitleEdit.Logic.SubtitleFormats
"v",
"w",
"x",
"ç",
"y",
"z",
"",
@ -327,6 +328,7 @@ namespace Nikse.SubtitleEdit.Logic.SubtitleFormats
"76", // "v",
"f7", // "w",
"f8", // "x",
"fb", // "ç",
"79", // "y",
"7a", // "z",
"fb", // "",
@ -1338,6 +1340,8 @@ namespace Nikse.SubtitleEdit.Logic.SubtitleFormats
res = res.Replace(" ", " ").Replace(" ", " ").Replace(Environment.NewLine + " ", Environment.NewLine).Trim();
if (res.Contains("<i>") && !res.Contains("</i>"))
res += "</i>";
res = res.Replace("aã", "ã");
res = res.Replace("oõ", "õ");
return Utilities.FixInvalidItalicTags(res);
}