mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-26 05:02:36 +01:00
3.2.5
git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@1057 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
parent
1ae17884f4
commit
48975402c7
@ -1,15 +1,16 @@
|
||||
Subtitle Edit Changelog
|
||||
|
||||
3.2.5 (17th March 2012)
|
||||
3.2.5 (18th March 2012)
|
||||
* NEW:
|
||||
* Added new subtitle formats (now +90!)
|
||||
* IMPROVED:
|
||||
* Improvements to fix common errors - thx Trottel
|
||||
* Improvements to Fix common errors - thx Trottel
|
||||
* Optimized Fix Common OCR Errors
|
||||
* FIXED:
|
||||
* Crash in fix common errors (remove unneeded spaces) - thx menes
|
||||
* Merge selected lines with 2+ lines - thx Verteller
|
||||
* Prompt for save changes when opening new sub (if changed) - thx Chris
|
||||
* No save prompt if subtitle is not changed (but was) - thx XhmikosR
|
||||
* Context menu normal/italic in ocr window - thx cipry
|
||||
* Editing search type for "Multiple replace"
|
||||
* Wrong positioning of some texts (mostly at startup) - thx Trottel
|
||||
|
@ -1762,9 +1762,9 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
else
|
||||
{
|
||||
if (p.Text.EndsWith("“") && tempNoHtml.StartsWith("„"))
|
||||
p.Text = p.Text.Trim('“') + ".“";
|
||||
p.Text = p.Text.TrimEnd('“') + ".“";
|
||||
else if (p.Text.EndsWith("\"") && tempNoHtml.StartsWith("\""))
|
||||
p.Text = p.Text.Trim('"') + ".\"";
|
||||
p.Text = p.Text.TrimEnd('"') + ".\"";
|
||||
else
|
||||
p.Text += ".";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user