Overview
Comment: | [lo] ui for choosing spellchecker suggestion engine |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | lo |
Files: | files | file ages | folders |
SHA3-256: |
b093fd512b323ae5580c66a69613444a |
User & Date: | olr on 2018-04-11 10:28:40 |
Original Comment: | [lo] ui for choosing spellecker suggestion engine |
Other Links: | manifest | tags |
Context
2018-04-12
| ||
09:53 | [graphspell] memorize state: almost useless and buggy -> deleted check-in: c365cd01b2 user: olr tags: trunk, graphspell | |
2018-04-11
| ||
10:28 | [lo] ui for choosing spellchecker suggestion engine check-in: b093fd512b user: olr tags: trunk, lo | |
09:52 | [lo] Hunspell as a fallback spellchecker check-in: 3f0d501d26 user: olr tags: trunk, lo | |
Changes
Modified gc_lang/fr/oxt/DictOptions/DictOptions.py from [f02ddbf901] to [3eb1b2d60d].
︙ | |||
39 40 41 42 43 44 45 | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 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 98 99 100 101 102 103 104 | - + - - - - + + + + + - - - - - + + + + + - + | dUI = do_strings.getUI(sLang) self.xSettingNode = helpers.getConfigSetting("/org.openoffice.Lightproof_grammalecte/Other/", True) # dialog self.xDialog = self.xSvMgr.createInstanceWithContext('com.sun.star.awt.UnoControlDialogModel', self.ctx) self.xDialog.Width = 200 |
︙ | |||
115 116 117 118 119 120 121 | 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | - + | # XActionListener def actionPerformed (self, xActionEvent): try: if xActionEvent.ActionCommand == 'Apply': xChild = self.xSettingNode.getByName("o_fr") #xChild.setPropertyValue("use_graphspell", self.xGraphspell.State) |
︙ | |||
138 139 140 141 142 143 144 | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | - + | except: traceback.print_exc() def _loadOptions (self): try: xChild = self.xSettingNode.getByName("o_fr") #self.xGraphspell.State = xChild.getPropertyValue("use_graphspell") |
Modified gc_lang/fr/oxt/DictOptions/do_strings.py from [cd0f56e368] to [2814e1e1ce].
︙ | |||
8 9 10 11 12 13 14 | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | - + | "title": "Grammalecte · Options orthographiques", "spelling_section": "Correcteur orthographique", "activate_main": "Activer le correcteur orthographique de Grammalecte", "activate_main_descr": "Supplante le correcteur orthographique inclus dans LibreOffice (Hunspell).", "suggestion_section": "Moteur de suggestion orthographique", |
︙ | |||
34 35 36 37 38 39 40 | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | - + | "title": "Grammalecte · Spelling options", "spelling_section": "Spell checker", "activate_main": "Activate the spell checker from Grammalecte", "activate_main_descr": "Overrides the spell checker included in LibreOffice (Hunspell)", "suggestion_section": "Spell suggestion engine", |
︙ |