Commit Graph

44 Commits

Author SHA1 Message Date
Sébastien Helleu 6f13a7a5d3
Correction de typos (#1791)
* Correction de typos

* Correction de "multiplateformes"
2021-12-16 19:51:49 +01:00
Jean-Abou-Samra 7f50edf589
Des fuzzies, toujours des fuzzies… (#1768) 2021-11-07 17:02:33 +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
Mathieu Dupuy 0f297a21a9
howto/unicode.po: 3 fuzzies (#1434)
* howto/unicode.po: 3 fuzzies

* applique les suggestions de ChristopheNan

Co-authored-by: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com>
2020-10-02 11:39:54 +02: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
MASSICOT Jean-Gabriel ddfa7f0809
fix translation howto/unicode.po (#1094)
* fix translation howto/unicode.po

* Update howto/unicode.po

Remplacement de "HOWTO" par "guide"

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

* Update howto/unicode.po

Annulation de la mise en italique interne à un lien

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

* reindentation avec powrap et reformulation

* Update howto/unicode.po

changement mise en forme

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

* derniere indentation

* Update howto/unicode.po

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

* Update howto/unicode.po

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

* Update howto/unicode.po

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

Co-authored-by: Antoine <43954001+awecx@users.noreply.github.com>
Co-authored-by: Vincent Poulailleau <vpoulailleau@gmail.com>
Co-authored-by: Mathieu Dupuy <deronnax@gmail.com>
2020-03-29 18:00:14 +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
drNymbus 4a748661b2 venv.po, unicode.po, datastructures.po complete (#917)
* fin de traduction du fichier tutorial/datastructures.po

* fixed a fuzzy in howto/unicode.po

* fin de traduction de tutorial/venv.po, terme "shell" non traduit

* fuzzy in reference/datamodel.po removed, fin de traduction pour reference/datamodel.po

* fin de traduction de reference/expressions.po

* Update reference/expressions.po

Co-Authored-By: Jules Lasne (jlasne) <jlasne@student.42.fr>

* Update tutorial/datastructures.po

Co-Authored-By: Jules Lasne (jlasne) <jlasne@student.42.fr>

* Update tutorial/datastructures.po

Co-Authored-By: Jules Lasne (jlasne) <jlasne@student.42.fr>

* Update tutorial/datastructures.po

Co-Authored-By: Jules Lasne (jlasne) <jlasne@student.42.fr>

* Update tutorial/datastructures.po

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

* Update tutorial/datastructures.po

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

* Update tutorial/venv.po

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

* Update tutorial/venv.po

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

* Update tutorial/venv.po

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

* Update tutorial/venv.po

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

* Update reference/expressions.po

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

* Update reference/expressions.po

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

* fixed some unbreakable space

* encore...

* auto-indent reference/expressions.po

* porwrap ran on reference/expressions.po

* non-breakable spaces removed

* T_T

* Update tutorial/datastructures.po

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

* "Revert" unchanged file.

Co-authored-by: Jules Lasne (jlasne) <jlasne@student.42.fr>
Co-authored-by: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com>
Co-authored-by: Antoine <43954001+awecx@users.noreply.github.com>
2019-12-29 19:05:51 +01:00
Julien Palard ccc2e5863e
Uniformize project-id-version. (#1041) 2019-12-05 23:15:54 +01:00
Julien Palard 8e9cd1e23e Forward porting f7829d20 (Howto unicode 3, suite et fin (#873)) 2019-09-16 12:11:14 +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
Mathieu Dupuy 4934add503 Howto Unicode, part #2 (#807) 2019-06-08 10:52:49 +02:00
Mathieu Dupuy a8d2d8a7a6 wrap reference/import.po (pour réparer la CI) (#809)
* powrap reference/import.po

* supprime "pouette « ss » pouette"
2019-06-07 17:58:33 +02:00
Julien Palard fa3683a1de Upstream merge 2019-06-03 22:16:26 +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
Mathieu Dupuy 161e5ca98a rajoute une suggestion manquante (#724) 2019-05-16 15:04:32 +02:00
Mathieu Dupuy 96008f3e30 Howto Unicode, 1ère partie (#719)
* Howto Unicode, 1ère partie

* ajoute 'émoji' au dictionnaire

* change/restaure les guillements simples pour des guillemets français

* rétabli un chiffre modifié

Co-Authored-By: Julien Palard <julien@palard.fr>

* chiffres entre backquotes

* suggestions de ChristopheNan

* norme -> standard
* virgules après les et/ou
* autre

Co-Authored-By: Christophe Nanteuil <35002064+christopheNan@users.noreply.github.com>
2019-05-16 08:59:32 +02:00
Jules Lasne (jlasne) 005e87911a Upstream merge (#659) 2019-04-10 16:52:58 +02:00
Julien Palard fa40a1797d
Merge from upstream/3.7 (#609) 2019-03-20 09:41:37 +01:00
Julien Palard 65ab8c1cfe FIX: It's not -255 but 255. 2019-03-04 16:46:37 +01:00
Julien Palard 98ee8cd1c1 howto/unicode.po
Co-Authored-By: deronnax <deronnax@users.noreply.github.com>
2019-03-04 09:15:58 +01: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 d11a6b41ee Replicating known translations using pomerge from 3.7 to 3.7 (locally). 2018-07-03 11:14:42 +02:00
Julien Palard aed24996a1 msgmerge 3.7 2018-06-28 15:32:56 +02:00
Julien Palard e810d13422 merge pot files. 2018-04-29 00:28:01 +02:00
Julien Palard 3cf6ea016c Merging known translation locally (pomerge --from **/*.po --to **/*.po). 2017-12-05 07:54:15 +01: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 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