1
0
Fork 0
Commit Graph

77 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
Julien Palard c45606574a Make merge (#34)
Pour https://github.com/python/cpython/pull/101852

Reviewed-on: AFPy/python-docs-fr#34
Co-authored-by: Julien Palard <julien@palard.fr>
Co-committed-by: Julien Palard <julien@palard.fr>
2023-02-12 21:11:06 +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
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
Jean Abou-Samra 3db1d961d6
Correction d'erreurs de syntaxe reST (#1824) 2022-03-06 12:13:54 +01:00
Julien Palard 17d5f9cebe
Make merge (#1695)
* Make merge

* FIX: spelling for pospell.

* Uniformisation des entêtes po.
2021-09-24 10:20:01 +02:00
Sébastien Helleu e56f9d76db
Correction de typo sur la fonction run (#1665)
Automerge of PR #1665 by @flashcode
2021-06-18 09:05:30 +02:00
Julien Palard dafa30ed3c
Make merge (#1639)
Automerge of PR #1639 by @JulienPalard
#1636

Closes #1636
2021-05-26 19:39:06 +02:00
Julien Palard 7b88307273
Make merge (#1555)
Automerge of PR #1555 by @JulienPalard
2021-03-19 17:27:36 +01:00
Julien Palard 599df826ed
Make merge of 3.9 (#1512) 2021-01-27 20:42:04 +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
Mathieu Dupuy 375c31f30a
fuzzies Posix -> POSIX (#1347) 2020-06-25 10:08:54 +02:00
Julien Palard c3fedc6e1c
make merge from cpython 3.9 (#1330) 2020-06-05 09:32:47 +02:00
Julien Palard 00a0972217
make merge (#1300) 2020-05-24 16:31:50 +02:00
Jules Lasne (jlasne) 37e39bc862
Fixed fuzzies in library/subprocess.po (#1009)
* Fixed fuzzies in library/subprocess.po

* Update library/subprocess.po

Co-Authored-By: Vincent Poulailleau <vpoulailleau@gmail.com>

* Apply suggestions from code review

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

* Apply suggestions from code review

* encore des corrections

Co-authored-by: Vincent Poulailleau <vpoulailleau@gmail.com>
Co-authored-by: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com>
Co-authored-by: Mathieu Dupuy <deronnax@gmail.com>
2020-04-30 23:26:10 +02:00
Mathieu Dupuy 86b6ddc15d
correction de qq fuzzies dans subprocess (#1238)
Co-Authored-By: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com>
Co-Authored-By: Antoine <43954001+awecx@users.noreply.github.com>
2020-04-27 21:58:48 +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 f6a64d5599
make merge (#1042) 2019-12-05 23:41:32 +01:00
Julien Palard ccc2e5863e
Uniformize project-id-version. (#1041) 2019-12-05 23:15:54 +01:00
Antoine f342c2216a library/subprocess après un passage de padpo (#1018)
* Erreurs trouvées par Grammalecte

* Powrapping
2019-11-21 23:12:09 +01:00
Jules Lasne (jlasne) dcd871ae78
Make merge (#894) 2019-10-09 18:10:12 +02:00
Julien Palard fd9b2ebdc5 Merge from 3.8 rst files. 2019-09-04 11:35:23 +02:00
Julien Palard 517157af17
sed to add no-break-spaces, s/fonction intégrée/fonction native/. (#810)
sed -i 's/ : ::"/ ::"/g' **/*.po
2019-06-10 10:48:16 +02:00
Jules Lasne (jlasne) ecb94467f6
Fix fuzzies in library/subprocess.po (#780)
* Fix fuzzies in library/subprocess.po

Fixes #750

* Apply suggestions from code review

Co-Authored-By: Antoine <43954001+awecx@users.noreply.github.com>

* powrap
2019-05-24 18:32:31 +02:00
Jules Lasne (jlasne) 294e8b93c0
Make Merge a3488e5902f5c26e5cc289aec2518e7b5058e5d1 (#729)
* make merge

* Update distributing/index.po

* Update extending/extending.po

* Apply suggestions from code review

* powrap
2019-05-23 18:59:19 +02:00
Jules Lasne (jlasne) 675a733034
s/home directory/répertoire d'accueil (#662)
* s/home directory/répertoire d'accueil

* Apply suggestions from code review

* Apply suggestions from code review

Co-Authored-By: Seluj78 <jlasne@student.42.fr>

* powrap

* last missing
2019-04-24 12:41:11 +02:00
Jules Lasne (jlasne) 0ae3496757
Fixed fuzzys in library/subprocess.po (#694)
* Fixed fuzzys

* Apply suggestions from code review

* Apply suggestions from code review

Co-Authored-By: Seluj78 <jlasne@student.42.fr>

* powrap
2019-04-21 13:13:20 +02:00
Jules Lasne (jlasne) 005e87911a Upstream merge (#659) 2019-04-10 16:52:58 +02:00
Julien Palard 3642203f40 Merge from upstream/3.7 2019-03-29 12:29:21 +01:00
Jules Lasne (jlasne) a985e8ee88 Fixed fuzzys in library/subprocess.po (#597) 2019-03-26 17:54:01 +01:00
Julien Palard fa40a1797d
Merge from upstream/3.7 (#609) 2019-03-20 09:41:37 +01:00
Julien Palard b61235f220 Due to deactivation of smartquotes, --- are no loger automatically converted to em dashes.
Thanks Dona for reporting.
2019-02-03 11:37:20 +01:00
Julien Palard f2ab89f533 make merge 2019-01-05 00:29:24 +01:00
Julien Palard 820266a623 Proofreading :ref:`Availability` tags (mostly using a small script). 2018-11-29 18:31:50 +01:00
Julien Palard 03ab206a30 merge pot files. 2018-11-29 16:13:39 +01:00
Julien Palard cc35c27c56 merge pot files. 2018-10-13 17:54:03 +02:00
Julien Palard 9f53d07449 Proofreading 2018-10-11 17:05:14 +02:00
Julien Palard c68910568d poindent **/*.po 2018-10-11 16:12:31 +02:00
Julien Palard d8241e2f61 Merge remote-tracking branch 'deronnax/subprocess' into 3.7 2018-10-11 16:06:41 +02:00
Mathieu Dupuy d68c3f132f les derrnièrers corrections suites au remarque de CristohpeNaN 2018-10-11 15:15:45 +02:00
Mathieu Dupuy da6dec20e3 corrections suites des remarques ChristopheNan 2018-10-09 09:28:20 +02:00
Mathieu Dupuy ccfa7bab29 adresse les dernieres remarques de la PR #258 2018-10-08 16:59:03 +02:00
Raphaël Gomès fdcda9f234 Update translations after review 2018-10-08 16:47:39 +02:00
Raphaël Gomès db0386d4be Translate subprocess.po 2018-10-08 16:47:39 +02:00