Overview
| Comment: | [lo] update Graphspell spelling options |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | lo |
| Files: | files | file ages | folders |
| SHA3-256: |
86c4743b225f9bc86ea33a5fa44a1074 |
| User & Date: | olr on 2018-04-06 14:47:13 |
| Other Links: | manifest | tags |
Context
|
2018-04-06
| ||
| 14:50 | [lo] fix personal dictionary loading check-in: fb172815a5 user: olr tags: trunk, lo | |
| 14:47 | [lo] update Graphspell spelling options check-in: 86c4743b22 user: olr tags: trunk, lo | |
| 14:39 | [tb] spelling options: fix label check-in: 28c61525bd user: olr tags: trunk, tb | |
Changes
Modified gc_lang/fr/oxt/DictOptions/DictOptions.py from [3451cecc0b] to [548086feb8].
| ︙ | |||
52 53 54 55 56 57 58 | 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 | - + - - + + + - - - + + + - - - + + + - - - - + + + + + + + + + + |
# fonts
xFDTitle = uno.createUnoStruct("com.sun.star.awt.FontDescriptor")
xFDTitle.Height = 9
xFDTitle.Weight = uno.getConstantByName("com.sun.star.awt.FontWeight.BOLD")
xFDTitle.Name = "Verdana"
xFDSubTitle = uno.createUnoStruct("com.sun.star.awt.FontDescriptor")
|
| ︙ | |||
103 104 105 106 107 108 109 | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | - - - + + + + - - - + + + + |
self.xContainer.execute()
# XActionListener
def actionPerformed (self, xActionEvent):
try:
if xActionEvent.ActionCommand == 'Apply':
xChild = self.xSettingNode.getByName("o_fr")
|
Modified gc_lang/fr/oxt/DictOptions/do_strings.py from [894505c8e0] to [e78737f11c].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | - + - - - + + + + + + + + + - + + - - - + + + + + + + + |
def getUI (sLang):
if sLang in dStrings:
return dStrings[sLang]
return dStrings["fr"]
dStrings = {
"fr": {
|
Modified gc_lang/fr/oxt/addons.xcu from [69a2e3b55d] to [9d73352bea].
| ︙ | |||
137 138 139 140 141 142 143 | 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | - - + + + + |
</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/>
|
| ︙ |