Changes In Branch multid Through [1ab530ddfa] Excluding Merge-Ins
This is equivalent to a diff from f9c4613c61 to 1ab530ddfa
2018-02-25
| ||
22:16 | [doc] update changelog check-in: 4f4360c720 user: olr tags: trunk, doc | |
21:55 | [lo] update: lexicon editor check-in: 89b74dbf1b user: olr tags: lo, multid | |
15:39 | merge trunk check-in: 1ab530ddfa user: olr tags: multid | |
08:54 | [fr][bug] ocr: problème de casse pour la suggestion <Il/il> check-in: f9c4613c61 user: olr tags: trunk, fr | |
08:47 | [lo] lexicon editor check-in: 5a1baacbbb user: olr tags: new_feature, lo, multid | |
2018-02-24
| ||
12:45 | [lo] Enumerator: change title comment check-in: 015284c8bd user: olr tags: trunk, lo | |
Modified gc_core/py/oxt/OptionsDialog.xcs from [bfbbfee5a6] to [412b78821f].
︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | + + + + + + + + + + + + + + | <templates> <group oor:name="${lang}"> <info> <desc>The data for one leaf.</desc> </info> ${xcs_options} </group> <group oor:name="o_${lang}"> <info> <desc>The data for one leaf.</desc> </info> <prop oor:name="graphspell" oor:type="xs:int"><value>1</value></prop> <prop oor:name="graphspellsugg" oor:type="xs:int"><value>1</value></prop> <prop oor:name="extended_dic" oor:type="xs:int"><value>0</value></prop> <prop oor:name="personal_dic" oor:type="xs:int"><value>1</value></prop> </group> </templates> <component> <group oor:name="Leaves"> <node-ref oor:name="${lang}" oor:node-type="${lang}" /> </group> <group oor:name="Other"> <node-ref oor:name="o_${lang}" oor:node-type="o_${lang}" /> </group> </component> </oor:component-schema> |
Added gc_core/py/oxt/helpers.py version [f3ef6493bc].
|
Modified gc_lang/fr/config.ini from [93df40f5c3] to [f0deb020be].
︙ | |||
71 72 73 74 75 76 77 | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | - + + + + + | oxt/_img/logo120_text.png = img/logo120_text.png oxt/_img/LaMouette_small.png = img/LaMouette_small.png oxt/_img/Algoo_logo.png = img/Algoo_logo.png oxt/_img/grammalecte_16.bmp = img/grammalecte_16.bmp oxt/_img/french_flag_16.bmp = img/french_flag_16.bmp # AppLauncher oxt/AppLauncher.py = AppLauncher.py |
︙ |
Modified gc_lang/fr/oxt/AppLauncher.py from [f6fd0dec5a] to [ed57ba0db8].
︙ | |||
38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | + + + + + + + + | 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 == "LE": import LexiconEditor xDialog = LexiconEditor.LexiconEditor(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) |
︙ |
Added gc_lang/fr/oxt/DictOptions/DictOptions.py version [0df543aa25].