mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 03:33:18 +01:00
14 lines
379 B
C#
14 lines
379 B
C#
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Nikse.SubtitleEdit.Core.Translate
|
|
{
|
|
public interface ITranslator
|
|
{
|
|
List<TranslationPair> GetTranslationPairs();
|
|
string GetName();
|
|
string GetUrl();
|
|
List<string> Translate(string sourceLanguage, string targetLanguage, List<Paragraph> paragraphs, StringBuilder log);
|
|
}
|
|
}
|