1
0
Fork 0
Commit Graph

46 Commits

Author SHA1 Message Date
Julien Palard c584ff6fbb fix colons. (#122)
Reviewed-on: AFPy/python-docs-fr#122
Reviewed-by: Christophe Nanteuil <christophenan@noreply.localhost>
2023-04-08 12:37:28 +00:00
eviau f9d4f69f20 Petites suggestions pour que `make verifs` fonctionne de nouveau (#30)
Co-authored-by: eviau <info@eviau.net>
Reviewed-on: AFPy/python-docs-fr#30
Reviewed-by: Julien Palard <julien@palard.fr>
Co-authored-by: eviau <eviau@noreply.localhost>
Co-committed-by: eviau <eviau@noreply.localhost>
2023-02-08 08:49:38 +00:00
Julien Palard 35ea246d59 Make merge (#22)
Où je répare mes bêtise du précédent merge.

cf. AFPy/python-docs-fr#21 et l'analyse de @ChristopheNan :)

Reviewed-on: AFPy/python-docs-fr#22
Co-authored-by: Julien Palard <julien@palard.fr>
Co-committed-by: Julien Palard <julien@palard.fr>
2023-01-23 21:54:21 +00:00
Julien Palard 26c991fc20 Make merge (#21)
J'ai juste exécuté `python merge.py 3.11`.

Reviewed-on: AFPy/python-docs-fr#21
Co-authored-by: Julien Palard <julien@palard.fr>
Co-committed-by: Julien Palard <julien@palard.fr>
2023-01-15 21:42:07 +00:00
Christophe Nanteuil 423ff1c51d Pavé sur Enum (#19)
En parallèle sur cpython :
[replace last value by highest value for Flag auto](https://github.com/python/cpython/pull/100709)

Co-authored-by: Christophe Nanteuil <christophe.nanteuil@gmail.com>
Reviewed-on: AFPy/python-docs-fr#19
Reviewed-by: Julien Palard <julien@palard.fr>
Co-authored-by: Christophe Nanteuil <christophenan@noreply.localhost>
Co-committed-by: Christophe Nanteuil <christophenan@noreply.localhost>
2023-01-15 21:24:39 +00:00
Christophe Nanteuil 258387733a Traduction de base class en classe mère (#11)
Actuellement *base class* est traduit en *classe de base*. Je propose
d'utiliser *classe ancêtre*, les deux versions existant dans la littérature,
mais *de base* pouvant laisser penser qu'il s'agit de la classe la plus
loin dans l'héritage possible.

Co-authored-by: Christophe Nanteuil <christophe.nanteuil@gmail.com>
Reviewed-on: AFPy/python-docs-fr#11
Reviewed-by: Julien Palard <julien@palard.fr>
Co-authored-by: Christophe Nanteuil <christophenan@noreply.localhost>
Co-committed-by: Christophe Nanteuil <christophenan@noreply.localhost>
2022-12-06 09:20:23 +00:00
Julien Palard 50416a027c
Hello sphinx-lint. (#1922) 2022-11-14 16:08:57 +01:00
Julien Palard ba66481997
Make merge 2022-05-23 00:54:07 +02:00
Julien Palard fecaae68a8
Make merge 2022-03-23 18:44:13 +01:00
Ezlo db25581063
library/enum.po (#1809)
* library/enum.po

* Corrections de library/enum.po

* powrap library/enum.po

* [padpo] Corrections erreurs sur library/enum.po

* Update library/enum.po

Co-authored-by: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com>

Co-authored-by: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com>
2022-02-09 23:13:12 +01:00
Julien Palard 76b5c8ea62
Make merge (#1782)
Co-authored-by: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com>
2021-11-29 14:13:01 +01:00
Julien Palard 4955f79c65
Make merge (#1766)
* Make merge

* Avoid a newline at each run of merge.py.
2021-11-05 23:32:47 +01:00
Julien Palard 2afee90322
Mdk/merge (#1734)
* Make merge

* Move merge to its own script.

* No longer needed.

* Use git ls-files.
2021-10-22 14:56:00 +02:00
Julien Palard 7b88307273
Make merge (#1555)
Automerge of PR #1555 by @JulienPalard
2021-03-19 17:27:36 +01:00
Julien Palard 25e6bb0dc1
Make merge of 3.9 (#1505) 2020-12-18 07:09:57 +01:00
Antoine 97353f195e
Traduction « tuple » par « n-uplet ». (#1490) 2020-12-02 23:45:10 +01:00
Julien Palard c109850819
make merge from cpython 3.9 (#1440) 2020-10-02 10:55:01 +02:00
Jules Lasne (jlasne) 757ab3f7b4
Make merge of 3.9 (#1385) 2020-09-11 09:11:46 +02:00
Julien Palard 262421d34c make merge from cpython 3.9 2020-07-30 14:12:04 +02:00
Julien Palard a5123415bb Uniformisation et simplification des chemins. 2020-07-30 14:12:04 +02:00
Julien Palard c3fedc6e1c
make merge from cpython 3.9 (#1330) 2020-06-05 09:32:47 +02:00
Julien Palard 5646bc52a4
Yet another batch of : :: and no break spaces... (#1148)
import polib
import pathlib

def check(file):
    pofile = polib.pofile(file)
    for entry in pofile:
        if not entry.msgstr:
            continue
        if entry.msgid.endswith(" ::"):
            entry.msgstr = entry.msgstr.rstrip(":  \u202f\u00A0") + " ::"
        if entry.msgid.endswith("::") and not entry.msgid.endswith(" ::"):
            entry.msgstr = entry.msgstr.rstrip(": ,. \u202f\u00A0") + "\u00A0::"
    pofile.save()

for file in pathlib.Path(".").glob("*.po"):
    check(file)

for file in pathlib.Path(".").glob("*/*.po"):
    check(file)
2020-02-05 23:32:21 +01:00
Julien Palard 0e3284c593
make merge (#1125) 2020-02-04 11:14:03 +01:00
Julien Palard b90acf237c
Few errors found while working on a new release of pospell. (#1056) 2019-12-13 12:17:13 +01:00
marqov ff1f732b5b ajout des traductions manquantes de library/enum.po et de fuzzies (#955) 2019-12-09 23:44:53 +01:00
Julien Palard ccc2e5863e
Uniformize project-id-version. (#1041) 2019-12-05 23:15:54 +01:00
Julien Palard fd9b2ebdc5 Merge from 3.8 rst files. 2019-09-04 11:35:23 +02:00
Antoine 1d40067346 Remarques de christopheNan. (#867) 2019-09-03 11:05:54 +02:00
Antoine 8abfeccf9b Enum (#844) 2019-08-14 17:00:45 +02:00
Julien Palard cc35c27c56 merge pot files. 2018-10-13 17:54:03 +02:00
Julien Palard 6e8288f606 Removing fuzzy from headers. 2018-07-04 11:16:54 +02:00
Julien Palard 283979a625 Update language team. 2018-07-04 11:14:25 +02:00
Julien Palard e6e13bef30 Dropping useless first author line. 2018-07-04 11:09:21 +02:00
Julien Palard ac8e794c8c Update licence information. 2018-07-04 11:08:42 +02:00
Julien Palard 117f6d15a2 Update Copyright date. 2018-07-04 11:06:45 +02:00
Julien Palard bc19527cab Dropping this useless SOME DESCRIPTIVE TITLE. 2018-07-04 11:05:51 +02:00
Julien Palard aed24996a1 msgmerge 3.7 2018-06-28 15:32:56 +02:00
Julien Palard 707f05d2d7 merge pot files. 2017-12-01 07:48:13 +01:00
Julien Palard 6b617ab69c merge pot files. 2017-09-21 09:29:22 +02:00
Julien Palard 2e67138a40 Replicating known translations. 2017-08-10 07:17:13 +02:00
Julien Palard d66ca95dab merge pot files. 2017-08-10 01:06:46 +02:00
Julien Palard b646cacef7 tx pull. 2017-05-28 17:52:50 +02:00
Julien Palard dcd20adc42 merge pot files. 2017-05-27 23:07:59 +02:00
Julien Palard 5f42b67249 Set Language header to each po file. 2017-05-24 00:40:56 +02:00
Julien Palard a25cddd031 3.6: merge pot files 2017-04-02 22:14:06 +02:00
Julien Palard 84e5545ebb Hi, gettext_compact=0. 2016-10-30 10:50:10 +01:00