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