diff --git a/LanguageMaster.xml b/LanguageMaster.xml index 3fd4f34ab..8b0cc8b38 100644 --- a/LanguageMaster.xml +++ b/LanguageMaster.xml @@ -1287,7 +1287,7 @@ To use an API key go to "Options -> Settings -> Tools" to enter your Googl Translate selected lines... Adjust durations for selected lines... Apply duration limits for selected lines... - Apply custom override tag... + Apply custom override tags... Fix common errors in selected lines... Change casing for selected lines... Save selected lines as... diff --git a/src/Test/Logic/UtilitiesTest.cs b/src/Test/Logic/UtilitiesTest.cs index 35aed24a8..7b425bc6a 100644 --- a/src/Test/Logic/UtilitiesTest.cs +++ b/src/Test/Logic/UtilitiesTest.cs @@ -68,9 +68,9 @@ namespace Test.Logic public void AutoBreakFrenchSpaceBeforePunctuation() { Configuration.Settings.General.SubtitleLineMaximumLength = 43; - string s1 = "Et elle te le dis maintenant ? Pour quoi donc ?"; + string s1 = "Et elle te le dis maintenant ? Pour quoi donc donc ?"; string s2 = Utilities.AutoBreakLine(s1, "fr"); - Assert.AreEqual("Et elle te le dis maintenant ?" + Environment.NewLine + "Pour quoi donc ?", s2); + Assert.AreEqual("Et elle te le dis maintenant ?" + Environment.NewLine + "Pour quoi donc donc ?", s2); } [TestMethod]