Overview
Comment: | [fr] remove useless print |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fr |
Files: | files | file ages | folders |
SHA3-256: |
86ffd20dca87cc5bcabac792ee336ebc |
User & Date: | olr on 2019-06-26 23:20:02 |
Other Links: | manifest | tags |
Context
2019-06-28
| ||
16:08 | [fr] ajustements check-in: 102f7dca03 user: olr tags: trunk, fr | |
2019-06-26
| ||
23:20 | [fr] remove useless print check-in: 86ffd20dca user: olr tags: trunk, fr | |
23:06 | [fr] update thésaurus check-in: 4c57a4f8ce user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/dictionnaire/genfrdic.py from [0624c5863a] to [fa99aa893c].
︙ | ︙ | |||
1506 1507 1508 1509 1510 1511 1512 | spThesaurus = spBuild+"/thesaurus-v"+sVersion dir_util.mkpath(spThesaurus) thes_build.build("thesaurus/thes_fr.dat", "thesaurus/synsets_fr.dat", spThesaurus) file_util.copy_file('thesaurus/README_thes_fr.txt', spThesaurus) if spCopy: # copy in libreoffice extension package print(" Copie du thésaurus dans:", spCopy) | | | | | 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 | spThesaurus = spBuild+"/thesaurus-v"+sVersion dir_util.mkpath(spThesaurus) thes_build.build("thesaurus/thes_fr.dat", "thesaurus/synsets_fr.dat", spThesaurus) file_util.copy_file('thesaurus/README_thes_fr.txt', spThesaurus) if spCopy: # copy in libreoffice extension package print(" Copie du thésaurus dans:", spCopy) file_util.copy_file(spThesaurus+'/thes_fr.dat', spCopy) file_util.copy_file(spThesaurus+'/thes_fr.idx', spCopy) file_util.copy_file(spThesaurus+'/README_thes_fr.txt', spCopy) def main (): xParser = argparse.ArgumentParser() xParser.add_argument("-v", "--verdic", help="set dictionary version, i.e. 5.4", type=str, default="X.Y.z") xParser.add_argument("-m", "--mode", help="0: no tags, 1: Hunspell tags (default), 2: All tags", type=int, choices=[0, 1, 2], default=1) xParser.add_argument("-u", "--uncompress", help="do not use Hunspell compression", action="store_true") |
︙ | ︙ |