minor fix

This commit is contained in:
niksedk 2014-06-29 07:30:14 +02:00
parent a85c869e6e
commit 6885d9277a
2 changed files with 3 additions and 1 deletions

View File

@ -91,7 +91,7 @@ namespace Nikse.SubtitleEdit.Logic.Forms
foreach (string line in latestChangeLog.Replace(Environment.NewLine, "\n").Split('\n')) foreach (string line in latestChangeLog.Replace(Environment.NewLine, "\n").Split('\n'))
{ {
string s = line.Trim(); string s = line.Trim();
if (!s.Contains("x") && !s.Contains("*") && s.Contains("(") && s.Contains(")") && regex.IsMatch(s)) if (!s.ToUpper().Contains("BETA") && !s.Contains("x") && !s.Contains("*") && s.Contains("(") && s.Contains(")") && regex.IsMatch(s))
{ {
int indexOfSpace = s.IndexOf(" "); int indexOfSpace = s.IndexOf(" ");
if (indexOfSpace > 0) if (indexOfSpace > 0)

View File

@ -1554,6 +1554,8 @@ namespace Nikse.SubtitleEdit.Logic
ImportRulesTitle = "Import replace rule(s) from...", ImportRulesTitle = "Import replace rule(s) from...",
ExportRulesTitle = "Export replace rule(s) to...", ExportRulesTitle = "Export replace rule(s) to...",
Rules = "Export rules", Rules = "Export rules",
MoveToBottom = "Move to bottom",
MoveToTop = "Move to top"
}; };
NetworkChat = new LanguageStructure.NetworkChat NetworkChat = new LanguageStructure.NetworkChat