Differences From Artifact [30bcae4623]:
- File gc_lang/fr/oxt/AppLauncher.py — part of check-in [2fd7dc4dd5] at 2017-04-25 11:51:19 on branch trunk — commit 1 (user: olr, size: 3466) [annotate] [blame] [check-ins using]
To Artifact [851c2d6eab]:
- File gc_lang/fr/oxt/AppLauncher.py — part of check-in [edf22c7d52] at 2018-02-18 16:28:02 on branch multid — [lo] UI for dictionaries options (user: olr, size: 3632) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
xDialog.run(sCmd[3:])
else:
xDialog.run()
elif sCmd == "TF":
import TextFormatter
xDialog = TextFormatter.TextFormatter(self.ctx)
xDialog.run(self.sLang)
elif sCmd == "DS":
import DictionarySwitcher
xDialog = DictionarySwitcher.FrenchDictionarySwitcher(self.ctx)
xDialog.run(self.sLang)
elif sCmd == "MA":
import Author
xDialog = Author.Author(self.ctx)
| > > > > | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
xDialog.run(sCmd[3:])
else:
xDialog.run()
elif sCmd == "TF":
import TextFormatter
xDialog = TextFormatter.TextFormatter(self.ctx)
xDialog.run(self.sLang)
elif sCmd == "DI":
import DictOptions
xDialog = DictOptions.DictOptions(self.ctx)
xDialog.run(self.sLang)
elif sCmd == "DS":
import DictionarySwitcher
xDialog = DictionarySwitcher.FrenchDictionarySwitcher(self.ctx)
xDialog.run(self.sLang)
elif sCmd == "MA":
import Author
xDialog = Author.Author(self.ctx)
|
| ︙ | ︙ |