From f43662875f4eed2a3c4f96835d43c659b8fafe71 Mon Sep 17 00:00:00 2001 From: Nikolaj Olsson Date: Fri, 30 Aug 2024 16:47:22 +0200 Subject: [PATCH] =?UTF-8?q?Add=20=C3=89=20(capital=20E=20with=20acute=20ac?= =?UTF-8?q?cent)=20to=20list=20of=20French=20special=20characters=20-=20th?= =?UTF-8?q?x=20dobratzp=20:)=20Fix=20#8782?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Changelog.txt | 2 +- src/ui/Forms/Ocr/VobSubEditCharacters.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index ffaae042d..43364f3d2 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,6 +1,6 @@ Subtitle Edit Changelog -4.0.8 (xth August 2024) BETA +4.0.8 (xth September 2024) BETA * NEW: * Add "Batch mode" for "Generate transparent video with subs" - thx David * Add "Pixel format" paramter to burn-in - thx Hafran420 diff --git a/src/ui/Forms/Ocr/VobSubEditCharacters.cs b/src/ui/Forms/Ocr/VobSubEditCharacters.cs index b396d0f41..c2488c4eb 100644 --- a/src/ui/Forms/Ocr/VobSubEditCharacters.cs +++ b/src/ui/Forms/Ocr/VobSubEditCharacters.cs @@ -66,7 +66,7 @@ namespace Nikse.SubtitleEdit.Forms.Ocr contextMenu.Items.Clear(); var l = LanguageSettings.Current.VobSubOcrCharacter; MakeToolStripLetterItem(contextMenu, "Catalan", "àÀéÉèÈíÍïÏóÓòÒúÚüÜçÇ"); - MakeToolStripLetterItem(contextMenu, "French", "àÀâÂæÆçÇéèÈêÊËëîÎïÏôÔœŒùÙûÛüÜÿŸ"); + MakeToolStripLetterItem(contextMenu, "French", "àÀâÂæÆçÇéèÉÈêÊËëîÎïÏôÔœŒùÙûÛüÜÿŸ"); MakeToolStripLetterItem(contextMenu, l.German, "äÄöÖüÜß"); MakeToolStripLetterItem(contextMenu, "Italian", "àÀèÈéÉìÌòÒùÙ"); MakeToolStripLetterItem(contextMenu, l.Nordic, "æÆøØåÅäÄöÖ");