mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 04:33:04 +01:00
parent
bb9b53a995
commit
1500ab3bb0
@ -704,6 +704,20 @@ namespace Nikse.SubtitleEdit.Forms.Translate
|
|||||||
_autoTranslator = GetCurrentEngine();
|
_autoTranslator = GetCurrentEngine();
|
||||||
var engineType = _autoTranslator.GetType();
|
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);
|
SaveSettings(engineType);
|
||||||
|
|
||||||
buttonOK.Enabled = false;
|
buttonOK.Enabled = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user