Esempio n. 1
0
    private void Translate()
    {
        for (int i = 0; i < txt_short.Length; i++)
        {
            txt_short[i].text = GlobalTranslateSystem.TranslateShortText(txt_short[i].name.Substring(3));
        }

        for (int i = 0; i < txt_long.Length; i++)
        {
            txt_long[i].text = GlobalTranslateSystem.TranslateLongText(txt_long[i].name.Substring(3));
        }
    }