diff --git a/Dictionaries/names.xml b/Dictionaries/names.xml index 122c1a8b2..c90981547 100644 --- a/Dictionaries/names.xml +++ b/Dictionaries/names.xml @@ -2,10 +2,8 @@ - 1A 2 Chainz 2 Pac diff --git a/src/Forms/BatchConvert.cs b/src/Forms/BatchConvert.cs index 569d6c11d..e5a0f5fe2 100644 --- a/src/Forms/BatchConvert.cs +++ b/src/Forms/BatchConvert.cs @@ -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 } }