diff --git a/src/Forms/GoogleTranslate.cs b/src/Forms/GoogleTranslate.cs index 542d0881e..52ad179f5 100644 --- a/src/Forms/GoogleTranslate.cs +++ b/src/Forms/GoogleTranslate.cs @@ -11,7 +11,6 @@ using System.Xml; namespace Nikse.SubtitleEdit.Forms { - public sealed partial class GoogleTranslate : PositionAndSizeForm { private Subtitle _subtitle; @@ -317,7 +316,7 @@ namespace Nikse.SubtitleEdit.Forms public static string TranslateTextViaApi(string input, string languagePair) { - // string googleApiKey = "ABQIAAAA4j5cWwa3lDH0RkZceh7PjBTDmNAghl5kWSyuukQ0wtoJG8nFBxRPlalq-gAvbeCXMCkmrysqjXV1Gw"; + //string googleApiKey = "ABQIAAAA4j5cWwa3lDH0RkZceh7PjBTDmNAghl5kWSyuukQ0wtoJG8nFBxRPlalq-gAvbeCXMCkmrysqjXV1Gw"; string googleApiKey = Configuration.Settings.Tools.GoogleApiKey; input = input.Replace(Environment.NewLine, NewlineString); diff --git a/src/Forms/PluginsGet.cs b/src/Forms/PluginsGet.cs index b88f38cb8..c7db4dd4e 100644 --- a/src/Forms/PluginsGet.cs +++ b/src/Forms/PluginsGet.cs @@ -132,7 +132,7 @@ namespace Nikse.SubtitleEdit.Forms if (installed.Text.TrimEnd('.') == node.SelectSingleNode("Name").InnerText.TrimEnd('.') && installed.SubItems[2].Text.Replace(",", ".") != node.SelectSingleNode("Version").InnerText.Replace(",", ".")) { - // item.BackColor = Color.LightGreen; + //item.BackColor = Color.LightGreen; installed.BackColor = Color.LightPink; installed.SubItems[1].Text = _language.UpdateAvailable + " " + installed.SubItems[1].Text; buttonUpdateAll.Visible = true;