Overview
| Comment: | [lo] enumerator of words: help text for the button <find next occurrence> |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | lo |
| Files: | files | file ages | folders |
| SHA3-256: |
d506cb687a08a85c87fbfa81359bbc26 |
| User & Date: | olr on 2020-04-10 19:10:56 |
| Other Links: | manifest | tags |
Context
|
2020-04-11
| ||
| 12:05 | [fr] nr: confusion pore/porc/port, +ajustements check-in: 316510641b user: olr tags: trunk, fr | |
|
2020-04-10
| ||
| 19:10 | [lo] enumerator of words: help text for the button <find next occurrence> check-in: d506cb687a user: olr tags: trunk, lo | |
| 18:19 | [lo] bug: enumerator of words, fix export on Linux check-in: 64e391ced9 user: olr tags: trunk, lo | |
Changes
Modified gc_lang/fr/oxt/Lexicographer/Enumerator.py from [1069590a78] to [a41a391c7b].
| ︙ | ︙ | |||
142 143 144 145 146 147 148 |
[ {"Title": self.dUI.get("words", "#err"), "ColumnWidth": 175}, {"Title": "Occurrences", "ColumnWidth": 45} ], \
SelectionModel = uno.Enum("com.sun.star.view.SelectionType", "MULTI") \
)
self._addWidget('num_of_entries', 'FixedText', nX, nY1+210, 30, nHeight, Label = self.dUI.get('num_of_entries', "#err"), Align = 2)
self.xNumWord = self._addWidget('num_of_entries_res', 'FixedText', nX+35, nY1+210, 25, nHeight, Label = "—")
self._addWidget('tot_of_entries', 'FixedText', nX+60, nY1+210, 30, nHeight, Label = self.dUI.get('tot_of_entries', "#err"), Align = 2)
self.xTotWord = self._addWidget('tot_of_entries_res', 'FixedText', nX+95, nY1+210, 30, nHeight, Label = "—")
| | | 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
[ {"Title": self.dUI.get("words", "#err"), "ColumnWidth": 175}, {"Title": "Occurrences", "ColumnWidth": 45} ], \
SelectionModel = uno.Enum("com.sun.star.view.SelectionType", "MULTI") \
)
self._addWidget('num_of_entries', 'FixedText', nX, nY1+210, 30, nHeight, Label = self.dUI.get('num_of_entries', "#err"), Align = 2)
self.xNumWord = self._addWidget('num_of_entries_res', 'FixedText', nX+35, nY1+210, 25, nHeight, Label = "—")
self._addWidget('tot_of_entries', 'FixedText', nX+60, nY1+210, 30, nHeight, Label = self.dUI.get('tot_of_entries', "#err"), Align = 2)
self.xTotWord = self._addWidget('tot_of_entries_res', 'FixedText', nX+95, nY1+210, 30, nHeight, Label = "—")
self.xSearch = self._addWidget('search_button', 'Button', nX+145, nY1+210, 30, nHeight, Label = ">>>", HelpText=self.dUI.get('goto', "#err"), Enabled = False)
self.xExport = self._addWidget('export_button', 'Button', nX+180, nY1+210, 40, nHeight, Label = self.dUI.get('export', "#err"), Enabled = False)
# Tag
# Note: the only way to group RadioButtons is to create them successively
self._addWidget("charstyle_section", 'FixedLine', nX, nY2, 200, nHeight, Label = self.dUI.get("charstyle_section", "#err"), FontDescriptor = xFDTitle)
self.xAccent = self._addWidget('emphasis', 'RadioButton', nX, nY2+12, 55, nHeight, Label = self.dUI.get('emphasis', "#err"))
self.xStrongAccent = self._addWidget('strong_emphasis', 'RadioButton', nX+60, nY2+12, 70, nHeight, Label = self.dUI.get('strong_emphasis', "#err"))
|
| ︙ | ︙ |
Modified gc_lang/fr/oxt/Lexicographer/enum_strings.py from [e7b46f3788] to [566a315685].
| ︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"list_section": "Énumération des occurrences",
"count_button": "Compter tout",
"count2_button": "Compter par lemme",
"unknown_button": "Mots inconnus",
"num_of_entries": "Entrées :",
"tot_of_entries": "Total :",
"export": "Exporter",
"words": "Mots",
"lemmas": "Lemmes",
"unknown_words": "Mots inconnus",
"dformat_section": "Formatage direct",
| > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
"list_section": "Énumération des occurrences",
"count_button": "Compter tout",
"count2_button": "Compter par lemme",
"unknown_button": "Mots inconnus",
"num_of_entries": "Entrées :",
"tot_of_entries": "Total :",
"goto": "Sélectionnez une ou plusieurs entrées, puis cliquez sur ce bouton pour trouver la prochaine occurrence",
"export": "Exporter",
"words": "Mots",
"lemmas": "Lemmes",
"unknown_words": "Mots inconnus",
"dformat_section": "Formatage direct",
|
| ︙ | ︙ | |||
37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
"list_section": "Occurrences enumeration",
"count_button": "Count all",
"count2_button": "Count by lemma",
"unknown_button": "Unknown words",
"num_of_entries": "Entries:",
"tot_of_entries": "Total:",
"export": "Export",
"words": "Words",
"lemmas": "Lemmas",
"unknown_words": "Unknown words",
"dformat_section": "Direct format",
| > | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
"list_section": "Occurrences enumeration",
"count_button": "Count all",
"count2_button": "Count by lemma",
"unknown_button": "Unknown words",
"num_of_entries": "Entries:",
"tot_of_entries": "Total:",
"goto": "select one or several entries, then click on this button to find the next occurrence",
"export": "Export",
"words": "Words",
"lemmas": "Lemmas",
"unknown_words": "Unknown words",
"dformat_section": "Direct format",
|
| ︙ | ︙ |