Пример #1
0
        public override void UpdateFromMemory()
        {
            string s = TranslationMemory.GetEntry(JapText);

            if (s.Length > 0)
            {
                txtEng.Text = TranslationMemory.GetEntry(JapText);
            }
        }
 public override void UpdateFromMemory()
 {
     foreach (GenericTArgOpts arg in commandArgs)
     {
         if (arg.memoryStore)
         {
             int idx = commandArgs.IndexOf(arg);
             engs[idx].Text = TranslationMemory.GetEntry(japs[idx].Text);
         }
     }
 }
Пример #3
0
 public override void UpdateFromMemory()
 {
     txtEng.Text = TranslationMemory.GetEntry(JapText);
 }