Formatting (whitespace only)

This commit is contained in:
Waldi Ravens 2015-07-28 19:52:12 +02:00
parent f070d913b7
commit d8e7124122
3 changed files with 9 additions and 9 deletions

View File

@ -3220,7 +3220,7 @@ namespace Nikse.SubtitleEdit.Forms
// Colons: // Colons:
text = text.Replace('\u02F8', defColon); // ˸ Modifier Letter Raised Colon (\u02F8) text = text.Replace('\u02F8', defColon); // ˸ Modifier Letter Raised Colon (\u02F8)
text = text.Replace('\uFF1A', defColon); // Fullwidth Colon (\uFF1A) text = text.Replace('\uFF1A', defColon); // Fullwidth Colon (\uFF1A)
text = text.Replace('\uF313', defColon); // ︓ Presentation Form for Vertical Colon (\uF313) text = text.Replace('\uFE13', defColon); // ︓ Presentation Form for Vertical Colon (\uFE13)
// Others // Others
text = text.Replace("…", "..."); text = text.Replace("…", "...");
@ -3233,11 +3233,11 @@ namespace Nikse.SubtitleEdit.Forms
text = text.Replace("\uFEFF", string.Empty); // Zero Width No-Break Space text = text.Replace("\uFEFF", string.Empty); // Zero Width No-Break Space
// Intellectual property // Intellectual property
text = text.Replace("\u00A9", "(Copyright)"); // copyright © text = text.Replace("\u00A9", "(Copyright)"); // © copyright
text = text.Replace("\u2117", "(Sound-recording Copyright)"); // sound-recording copyright text = text.Replace("\u2117", "(Sound-recording Copyright)"); // sound-recording copyright
text = text.Replace("\u00AE", "(Registered Trademark)"); // registered trademark ® text = text.Replace("\u00AE", "(Registered Trademark)"); // ® registered trademark
text = text.Replace("\u2120", "(Service Mark)"); // service mark text = text.Replace("\u2120", "(Service Mark)"); // service mark
text = text.Replace("\u2122", "(Trademark)"); // trademark text = text.Replace("\u2122", "(Trademark)"); // trademark
return text; return text;
} }