using System; using System.Collections; using System.Collections.Generic; namespace BITKit { public interface ITranslator { string Translate(string rawString); string[] GetAllSourceText(); event Action OnChangeLanguage; event Func OnCollageAllSourceText; } }