Update change log

This commit is contained in:
niksedk 2023-10-06 07:12:42 +02:00
parent 9c6cfdf663
commit 1b0d70a562
2 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,7 @@
* Statistics for selected lines
* Shortcut "Set start time and go to next"
* Add new json subtitle format - thx Neven
* Add Video CD DAT subtitle format - thx Flitskikker
* IMPROVED:
* Update Korean translation - thx domddol
* Update Italian language - thx bovirus
@ -25,6 +26,7 @@
* Add access keys for message box buttons - thx Christophe
* Use split container in "Break/split long lines" - thx oep42
* Change max font size in ASSA style from 200 to 500 - thx Jim
* Edit interjection is now a text box - thx Andrebavila
* FIXED:
* Fix remember text box settings (bold/size) - thx Siamak
* Fix crash in CSV reader - thx Waseem

View File

@ -424,7 +424,6 @@ namespace Nikse.SubtitleEdit.Forms.Translate
_autoTranslator.Initialize();
var timerUpdate = new Timer();
timerUpdate.Interval = 1500;
timerUpdate.Tick += TimerUpdate_Tick;
@ -563,7 +562,7 @@ namespace Nikse.SubtitleEdit.Forms.Translate
var dr = MessageBox.Show(
this,
$"{nikseComboBoxUrl.Text} requires an API key" + Environment.NewLine + Environment.NewLine + LanguageSettings.Current.GoogleTranslate.ReadMore,
this.Text,
Text,
MessageBoxButtons.YesNoCancel,
MessageBoxIcon.Error);