mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
parent
bb9b53a995
commit
1500ab3bb0
@ -704,6 +704,20 @@ namespace Nikse.SubtitleEdit.Forms.Translate
|
||||
_autoTranslator = GetCurrentEngine();
|
||||
var engineType = _autoTranslator.GetType();
|
||||
|
||||
if (_autoTranslator.Name == DeepLTranslate.StaticName && string.IsNullOrWhiteSpace(nikseTextBoxApiKey.Text))
|
||||
{
|
||||
MessageBox.Show(this, string.Format(LanguageSettings.Current.GoogleTranslate.XRequiresAnApiKey, _autoTranslator.Name), Text, MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
|
||||
_translationInProgress = false;
|
||||
return;
|
||||
}
|
||||
|
||||
if (_autoTranslator.Name == DeepLTranslate.StaticName && string.IsNullOrWhiteSpace(nikseComboBoxUrl.Text))
|
||||
{
|
||||
MessageBox.Show(this, string.Format("{0} require an url", _autoTranslator.Name), Text, MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
|
||||
_translationInProgress = false;
|
||||
return;
|
||||
}
|
||||
|
||||
SaveSettings(engineType);
|
||||
|
||||
buttonOK.Enabled = false;
|
||||
|
Loading…
Reference in New Issue
Block a user