Overview
| Comment: | [lo] dictionaries options + v0.6.3.1 |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | lo | v0.6.3.1 |
| Files: | files | file ages | folders |
| SHA3-256: |
0bb8c5423474a217fb878e4f931a9c51 |
| User & Date: | olr on 2018-04-06 15:37:12 |
| Other Links: | manifest | tags |
Context
|
2018-04-06
| ||
| 21:02 | [graphspell] char_player update check-in: d938e081a3 user: olr tags: trunk, graphspell | |
| 15:37 | [lo] dictionaries options + v0.6.3.1 check-in: 0bb8c54234 user: olr tags: trunk, lo, v0.6.3.1 | |
| 14:57 | [lo] dict options: restart message check-in: 40b4c15c46 user: olr tags: trunk, lo | |
Changes
Modified gc_lang/fr/config.ini from [e9cc346772] to [97b9ad86c8].
1 2 3 4 5 6 7 8 | [args] lang = fr lang_name = French locales = fr_FR fr_BE fr_CA fr_CH fr_LU fr_BF fr_BJ fr_CD fr_CI fr_CM fr_MA fr_ML fr_MU fr_NE fr_RE fr_SN fr_TG country_default = FR name = Grammalecte implname = grammalecte # always use 3 numbers for version: x.y.z | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | [args] lang = fr lang_name = French locales = fr_FR fr_BE fr_CA fr_CH fr_LU fr_BF fr_BJ fr_CD fr_CI fr_CM fr_MA fr_ML fr_MU fr_NE fr_RE fr_SN fr_TG country_default = FR name = Grammalecte implname = grammalecte # always use 3 numbers for version: x.y.z version = 0.6.3.1 author = Olivier R. provider = Dicollecte link = http://grammalecte.net description = Correcteur grammatical pour le français. extras = README_fr.txt logo = logo.png |
| ︙ | ︙ |
Modified gc_lang/fr/oxt/DictOptions/DictOptions.py from [e715ea3956] to [f02ddbf901].
| ︙ | ︙ | |||
62 63 64 65 66 67 68 |
# widget
nX = 10
nY1 = 10
nY2 = nY1 + 40
nY3 = nY2 + 40
nY4 = nY3 + 40
| | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# widget
nX = 10
nY1 = 10
nY2 = nY1 + 40
nY3 = nY2 + 40
nY4 = nY3 + 40
nY5 = nY4 + 50
nWidth = self.xDialog.Width - 20
nHeight = 10
# Spell checker section
#self._addWidget("spelling_section", 'FixedLine', nX, nY1, nWidth, nHeight, Label = dUI.get("spelling_section", "#err"), FontDescriptor = xFDTitle)
#self.xGraphspell = self._addWidget('activate_main', 'CheckBox', nX, nY1+15, nWidth, nHeight, Label = dUI.get('activate_main', "#err"))
|
| ︙ | ︙ | |||
89 90 91 92 93 94 95 |
self._addWidget('activate_extended_descr', 'FixedText', nX+10, nY2+25, nWidth-10, nHeight*2, Label = dUI.get('activate_extended_descr', "#err"), MultiLine = True)
self.xCommunityDic = self._addWidget('activate_community', 'CheckBox', nX, nY3+15, nWidth, nHeight, Label = dUI.get('activate_community', "#err"), FontDescriptor = xFDSubTitle, TextColor = 0x000088, Enabled = False)
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)
# Restart message
| | | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
self._addWidget('activate_extended_descr', 'FixedText', nX+10, nY2+25, nWidth-10, nHeight*2, Label = dUI.get('activate_extended_descr', "#err"), MultiLine = True)
self.xCommunityDic = self._addWidget('activate_community', 'CheckBox', nX, nY3+15, nWidth, nHeight, Label = dUI.get('activate_community', "#err"), FontDescriptor = xFDSubTitle, TextColor = 0x000088, Enabled = False)
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)
# Restart message
self._addWidget('restart', 'FixedText', nX, nY5, nWidth, nHeight*2, Label = dUI.get('restart', "#err"), FontDescriptor = xFDTitle, MultiLine = True, TextColor = 0x880000)
# Button
self._addWidget('apply_button', 'Button', self.xDialog.Width-115, self.xDialog.Height-25, 50, 14, Label = dUI.get('apply_button', "#err"), FontDescriptor = xFDTitle, TextColor = 0x005500)
self._addWidget('cancel_button', 'Button', self.xDialog.Width-60, self.xDialog.Height-25, 50, 14, Label = dUI.get('cancel_button', "#err"), FontDescriptor = xFDTitle, TextColor = 0x550000)
self._loadOptions()
|
| ︙ | ︙ |
Modified gc_lang/fr/oxt/DictOptions/do_strings.py from [a1834b9122] to [cd0f56e368].
| ︙ | ︙ | |||
21 22 23 24 25 26 27 |
"activate_extended": "Dictionnaire étendu",
"activate_extended_descr": "Fonctionnalité à venir",
"activate_community": "Dictionnaire communautaire",
"activate_community_descr": "Fonctionnalité à venir",
"activate_personal": "Dictionnaire personnel",
"activate_personal_descr": "Le dictionnaire personnel est créé et édité via l’éditeur lexical.",
| | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
"activate_extended": "Dictionnaire étendu",
"activate_extended_descr": "Fonctionnalité à venir",
"activate_community": "Dictionnaire communautaire",
"activate_community_descr": "Fonctionnalité à venir",
"activate_personal": "Dictionnaire personnel",
"activate_personal_descr": "Le dictionnaire personnel est créé et édité via l’éditeur lexical.",
"restart": "Le changement ne prendra effet qu’après le redémarrage du logiciel.",
"apply_button": "Appliquer",
"cancel_button": "Annuler",
},
"en": {
"title": "Grammalecte · Spelling options",
|
| ︙ | ︙ |
Modified gc_lang/fr/oxt/addons.xcu from [9d73352bea] to [7efd95afdb].
| ︙ | ︙ | |||
137 138 139 140 141 142 143 |
</node>
<node oor:name="m7" oor:op="replace">
<prop oor:name="URL" oor:type="xs:string">
<value>service:net.grammalecte.AppLauncher?DI</value>
</prop>
<prop oor:name="Title" oor:type="xs:string">
<value/>
| | | | 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
</node>
<node oor:name="m7" oor:op="replace">
<prop oor:name="URL" oor:type="xs:string">
<value>service:net.grammalecte.AppLauncher?DI</value>
</prop>
<prop oor:name="Title" oor:type="xs:string">
<value/>
<value xml:lang="fr">Options des ~dictionnaires…</value>
<value xml:lang="en-US">~Dictionaries options…</value>
</prop>
<prop oor:name="Target" oor:type="xs:string">
<value>_self</value>
</prop>
<prop oor:name="Context" oor:type="xs:string">
<value>com.sun.star.text.TextDocument,com.sun.star.text.GlobalDocument,com.sun.star.text.WebDocument,com.sun.star.presentation.PresentationDocument</value>
</prop>
|
| ︙ | ︙ |
Modified gc_lang/fr/webext/manifest.json from [d3eac4459f] to [7e3de90318].
1 2 3 4 |
{
"manifest_version": 2,
"name": "Grammalecte [fr]",
"short_name": "Grammalecte [fr]",
| | | 1 2 3 4 5 6 7 8 9 10 11 12 |
{
"manifest_version": 2,
"name": "Grammalecte [fr]",
"short_name": "Grammalecte [fr]",
"version": "0.6.3.1",
"applications": {
"gecko": {
"id": "French-GC@grammalecte.net",
"strict_min_version": "56.0"
}
},
|
| ︙ | ︙ |