1
0
Fork 0
Commit Graph

88 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
Christophe Nanteuil a830148cfc Topping (#92)
Un peu de *pospell*, de *powrap* et de *padpo*.

Co-authored-by: Christophe Nanteuil <christophe.nanteuil@gmail.com>
Reviewed-on: AFPy/python-docs-fr#92
Co-authored-by: Christophe Nanteuil <christophenan@noreply.localhost>
Co-committed-by: Christophe Nanteuil <christophenan@noreply.localhost>
2023-03-19 17:47:51 +00:00
mounasb 4ac1f07021 update translation (#82)
[library/csv.po](AFPy/python-docs-fr#64)
[library/re.po](AFPy/python-docs-fr#65)
[whatsnew/3.11.po](AFPy/python-docs-fr#74)

Reviewed-on: AFPy/python-docs-fr#82
Co-authored-by: mounasb <mounasb@proton.me>
Co-committed-by: mounasb <mounasb@proton.me>
2023-02-19 02:35:28 +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
Jean Abou-Samra 69651bfabf
Quelques fuzzies et mini-trads (#1902)
Co-authored-by: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com>
2022-09-13 11:18:21 +02: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
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
Julien Palard 1949b0ad72
FIX: Typo. (#1541)
Automerge of PR #1541 by @JulienPalard
2021-02-11 23:30:49 +01:00
Antoine 97353f195e
Traduction « tuple » par « n-uplet ». (#1490) 2020-12-02 23:45:10 +01:00
Julien Palard 2a7d7df751
Le chaîne. (#1448) 2020-10-15 13:40:06 +02:00
Julien Palard c109850819
make merge from cpython 3.9 (#1440) 2020-10-02 10:55:01 +02:00
Mathieu Dupuy ec5513e75b
relecture library/re.po (#1429) 2020-09-28 23:27:18 +02:00
Mathieu Dupuy 8009823afb
library/re.po: corrige deux balises cassées (#1421) 2020-09-24 15:06:34 +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
Jules Lasne (jlasne) 13ddc4e51f
Fixed fuzzies in library/re.po (#1015)
* Fixed fuzzies in library/re.po

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Update library/re.po

* corrige header cassé

* pospell + poedit

* application des sugggestions de ChristopheNan

* Apply suggestions from code review

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

* wrapping

* 'fonction' au singulier dans une fuzzy

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-05-25 18:35:07 +02:00
Julien Palard 00a0972217
make merge (#1300) 2020-05-24 16:31:50 +02:00
Christophe Nanteuil 47853a0b4a
Typographie : abréviations, exposants (#1242)
Co-Authored-By: Antoine <43954001+awecx@users.noreply.github.com>
2020-04-30 23:14:30 +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 41d0079abc
FIX: Excès de zèle sur les espaces insécables. (#1082) 2019-12-13 14:28:20 +01:00
Julien Palard ccc2e5863e
Uniformize project-id-version. (#1041) 2019-12-05 23:15:54 +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) 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
Christophe Nanteuil 1892c1763c Suivi des 'fuzzy' (#641) 2019-04-04 00:14:39 +02:00
Jules Lasne (jlasne) 8fa5442c49 Fixed fuzzys in library/re.po (#594) 2019-03-21 21:05:38 +01:00
Jules Lasne (jlasne) 703a04d9d2 Merge from upstream/3.7 (#606) 2019-03-20 09:02:55 +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 a2b08a8c73 more proofreading of re.po 2018-12-07 18:54:37 +01:00
Julien Palard 39ddad0fb6 more proofreading of re.po 2018-12-07 18:53:13 +01:00
Julien Palard cf8110c83b more proofreading of re.po 2018-12-07 18:47:18 +01:00
Julien Palard d77e79168f proofreading re.po 2018-12-07 18:44:50 +01:00
Julien Palard 1b4e8ebb6d Working on re.po
Co-authored-by: Alexis <alexis.bourdeau@hotmail.com>
2018-12-07 18:27:02 +01:00
Julien Palard 03ab206a30 merge pot files. 2018-11-29 16:13:39 +01:00
Julien Palard ca6d9b9800
FIX: Inclue (#419) 2018-11-13 23:32:17 +01:00
Julien Palard cc35c27c56 merge pot files. 2018-10-13 17:54:03 +02:00
Julien Palard c269a4cbab Using pomerge to replicate known translations. 2018-10-10 18:29:20 +02:00
Julien Palard 48aaf17458
Orth dans library/*.po (#329)
* Orth in library/*.po

* sorting dict.

* spelling
2018-09-29 19:45:33 +02:00
Julien Palard 1639d23916 Extending coverage of pospell. 2018-09-28 19:07:02 +02:00
Julien Palard 46b1f959af
merge pot files. (#297)
* merge pot files.

* FIX from travis.

* FIX a/à.
2018-08-13 15:12:45 +02:00
Julien Palard e88147e63c FIX: inconsistent term references in translated message. 2018-08-13 14:47:26 +02:00
Julien Palard 5cd5144126 Unmarking fuzzy already reviewed strings (forgotten flags). 2018-08-03 18:37:51 +02:00
Julien Palard 0ef9c4ad33 FIX: Inclus au féminin. 2018-07-06 16:55:55 +02:00
Guillaume Gay b94ea77704 fixing fuzzy for library/re.po (#207)
* fixing fuzzy for library/re.po

* indentation correction
2018-07-06 16:49:26 +02:00
Julien Palard 283979a625 Update language team. 2018-07-04 11:14:25 +02:00