예제 #1
0
        /// <summary>
        /// Applies localization to the form.
        /// </summary>
        private void LocalizeForm()
        {
            if (Localization.LoadDictionaries(appDirs.LangDir, "ModDbExport", out string errMsg))
            {
                Translator.TranslateForm(this, GetType().FullName, null, cmsTree);
            }
            else
            {
                ScadaUiUtils.ShowError(errMsg);
            }

            LibPhrases.Init();
        }
예제 #2
0
 private void FrmRangeEdit_Load(object sender, EventArgs e)
 {
     Translator.TranslateForm(this, GetType().FullName);
     LibPhrases.Init();
 }