Overview
| Comment: | [lo][fr][py] générateur de conjugaisons: nouvelles fonctions |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | fr | lo | multid |
| Files: | files | file ages | folders |
| SHA3-256: |
456aa2a2aa3f0dc66e0693b16c7f8439 |
| User & Date: | olr on 2018-03-06 16:44:41 |
| Original Comment: | [lo][fr] générateur de conjugaisons: nouvelles fonctions |
| Other Links: | branch diff | manifest | tags |
Context
|
2018-03-06
| ||
| 18:16 | [fx][fr][js] générateur de conjugaisons: nouvelles fonctions check-in: 0230771aa5 user: olr tags: fr, fx, multid | |
| 16:44 | [lo][fr][py] générateur de conjugaisons: nouvelles fonctions check-in: 456aa2a2aa user: olr tags: fr, lo, multid | |
| 15:38 | [core][fr] générateur de conjugaisons comme module (déplacement de fichiers) check-in: fb9f2914eb user: olr tags: fr, core, multid | |
Changes
Modified gc_lang/fr/modules/conj_generator.py from [2b6010474b] to [908448219c].
| 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 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 | - + + + - + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + |
|
| ︙ |
Modified gc_lang/fr/oxt/DictOptions/LexiconEditor.py from [afd65cf50b] to [2c842dcb12].
| ︙ | |||
397 398 399 400 401 402 403 | 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 | - - + - - - - - - - - + - - + |
c_m = "m" if self.xV_m.State else "_"
c_ae = "e" if self.xV_ae.State else "_"
c_aa = "a" if self.xV_aa.State else "_"
sVerbTag = c_i + c_t + c_n + c_p + c_m + c_ae + c_aa
if not sVerbTag.endswith("__") and not sVerbTag.startswith("____"):
sVerbPattern = self.xVpattern.Text.strip()
if not sVerbPattern:
|
| ︙ | |||
442 443 444 445 446 447 448 | 433 434 435 436 437 438 439 440 441 442 443 444 445 446 | - - - - - - - - - - - - - - - - - - - - - - |
# Autre
sFlexion = self.xFlexion.Text.strip()
sTags = self.xTags.Text.strip()
if sFlexion and sTags.startswith(":"):
self.lGeneratedFlex.append((sFlexion, sLemma, sTags))
self._showGenWords()
|
| ︙ |