Overview
| Comment: | [lo] dictionary options: update label about spelling suggestions |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | lo |
| Files: | files | file ages | folders |
| SHA3-256: |
58bcefb7a69f5fb7df2b82a842777d6f |
| User & Date: | olr on 2018-04-21 07:40:53 |
| Other Links: | manifest | tags |
Context
|
2018-04-21
| ||
| 18:06 | [fr] gn2m: mauvais positionnement de l’erreur check-in: 0070400a96 user: olr tags: trunk, fr | |
| 07:40 | [lo] dictionary options: update label about spelling suggestions check-in: 58bcefb7a6 user: olr tags: trunk, lo | |
| 07:20 | [graphspell] valid token: ignore tokens containing dots check-in: 75d0244b27 user: olr tags: trunk, graphspell | |
Changes
Modified gc_lang/fr/oxt/DictOptions/DictOptions.py from [3eb1b2d60d] to [0f31926e7e].
| ︙ | |||
39 40 41 42 43 44 45 | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | - + |
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
|
| ︙ | |||
63 64 65 66 67 68 69 | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + |
# widget
nX = 10
nY1 = 10
nY2 = nY1 + 35
nY3 = nY2 + 35
nY4 = nY3 + 35
nY5 = nY4 + 45
|
| ︙ | |||
87 88 89 90 91 92 93 | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | - + |
self._addWidget('activate_community_descr', 'FixedText', nX+10, nY3+25, nWidth-10, nHeight*2, Label = dUI.get('activate_community_descr', "#err"), MultiLine = True)
self.xPersonalDic = self._addWidget('activate_personal', 'CheckBox', nX, nY4+15, nWidth, nHeight, Label = dUI.get('activate_personal', "#err"), FontDescriptor = xFDSubTitle, TextColor = 0x000088)
self._addWidget('activate_personal_descr', 'FixedText', nX+10, nY4+25, nWidth-10, nHeight*2, Label = dUI.get('activate_personal_descr', "#err"), MultiLine = True)
# Spell suggestion engine section
self._addWidget("suggestion_section", 'FixedLine', nX, nY5, nWidth, nHeight, Label = dUI.get("suggestion_section", "#err"), FontDescriptor = xFDTitle)
self.xGraphspellSugg = self._addWidget('activate_spell_sugg', 'CheckBox', nX, nY5+15, nWidth, nHeight, Label = dUI.get('activate_spell_sugg', "#err"))
|
| ︙ |
Modified gc_lang/fr/oxt/DictOptions/do_strings.py from [2814e1e1ce] to [a4c5493269].
| ︙ | |||
9 10 11 12 13 14 15 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | - + |
"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",
"activate_spell_sugg": "Moteur de suggestion de Grammalecte",
|
| ︙ | |||
35 36 37 38 39 40 41 | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | - + |
"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",
"activate_spell_sugg": "Suggestion engine of Grammalecte",
|
| ︙ |