Remove empty black list tag from names - thx Ivandrofly :)

+ update comment
This commit is contained in:
niksedk 2019-08-18 11:52:14 +02:00
parent 87fe0817c4
commit 94bbaa1d27
2 changed files with 2 additions and 4 deletions

View File

@ -2,10 +2,8 @@
<!--
Contains names that should not be translated.
This file is case sensitive.
This file is generated/updated by Multi Translator
-->
<names>
<blacklist />
<name>1A</name>
<name>2 Chainz</name>
<name>2 Pac</name>

View File

@ -1121,8 +1121,8 @@ namespace Nikse.SubtitleEdit.Forms
paragraph.Text = paragraph.Text.Replace("\u202C", string.Empty);
paragraph.Text = paragraph.Text.Replace("\u202D", string.Empty);
paragraph.Text = paragraph.Text.Replace("\u202E", string.Empty);
paragraph.Text = paragraph.Text.Replace("\u00C2", " "); // fixed remove space char1 (no break space)
paragraph.Text = paragraph.Text.Replace("\u00A0", " "); // fixed remove space char2 (no break space)
paragraph.Text = paragraph.Text.Replace("\u00C2", " "); // no break space
paragraph.Text = paragraph.Text.Replace("\u00A0", " "); // no break space
}
}