Ejemplo n.º 1
0
        public void ApplyI18n([NotNull] I18n i18n)
        {
            this.ApplyI18nToChildren(i18n);

            string md   = i18n.Get(txtReadme.Text, this.GetI18nCompatibleParent().Name, Name, txtReadme.Name, nameof(TextBox.Text));
            string html = _mdToHtmlConverter.Convert(md);

            _wbReadme.DocumentText = html;
            _biosManager.ApplyI18n(i18n);
        }
Ejemplo n.º 2
0
 public void ApplyI18n(I18n i18n)
 {
     this.ApplyI18nToChildren(i18n);
     _biosManager.ApplyI18n(i18n);
 }