1
0
Fork 0
Commit Graph

2128 Commits

Author SHA1 Message Date
Baptiste Fontaine 2e3ca3365e Add 'Baptiste Fontaine' to translators 2017-06-08 21:31:46 +02:00
Julien Palard 650fc0a207 Stdtypes: 10 more. 2017-06-06 23:45:34 +02:00
Julien Palard 1177296be6 Some work on stdtypes. 2017-06-05 21:57:45 +02:00
Julien 4966cd5acc Merge pull request #8 from entwanne/3.6
Complete library/re.po
2017-06-02 09:13:51 +02:00
Julien Palard e9c98efcad Add myself to TRANSLATORS. 2017-06-02 01:53:07 +02:00
Julien Palard 6895fe02d8 Update TODO. 2017-06-02 01:52:39 +02:00
Julien 8dc01f05cf Merge pull request #7 from ProgVal/patch-1
Add myself to translators
2017-06-02 01:39:30 +02:00
Antoine Rozo 1b877b0506 Complete library/re.po 2017-06-01 20:37:36 +02:00
Antoine Rozo 73cfd4b7c5 Working on library/re.po #5 2017-06-01 20:35:50 +02:00
Antoine Rozo 0dddea8282 Working on library/re.po #4 2017-06-01 20:35:50 +02:00
Valentin Lorentz ce15f6e252 Add myself to translators 2017-06-01 20:28:05 +02:00
Julien 37a776a9fe Merge pull request #6 from RobinPetit/3.6
Add myself to translators
2017-06-01 11:40:00 +02:00
RobinPetit b19ca14a42 Add myself to translators
Let's get some CC0 in here!
2017-06-01 11:37:54 +02:00
Julien Palard fffa9fd7b3 Setup Documentation Contribution Agreement. 2017-05-31 22:00:09 +02:00
Julien e5b08557b7 Merge pull request #5 from entwanne/3.6
Working on library/re.po
2017-05-31 10:03:36 +02:00
Antoine Rozo 6c52368bc1 Working on library/re.po #3 2017-05-30 18:36:15 +02:00
Antoine Rozo ae654f084d Working on library/re.po #2 2017-05-30 18:27:46 +02:00
Julien Palard 3eeb111be0 Work on stdtypes. 2017-05-28 23:45:20 +02:00
Julien Palard 8bd7b42117 Fix a dash. 2017-05-28 17:55:36 +02:00
Julien Palard b646cacef7 tx pull. 2017-05-28 17:52:50 +02:00
Julien Palard aa2df6ce79 Work on stdtypes. 2017-05-27 23:39:44 +02:00
Julien Palard d148ba64d9 FIX: Missing backtick. 2017-05-27 23:13:04 +02:00
Julien Palard 429044df5b Review fuzzy strings after pot merge. 2017-05-27 23:11:48 +02:00
Julien Palard c9d3ab5225 Document how I merged pot files. 2017-05-27 23:07:59 +02:00
Julien Palard dcd20adc42 merge pot files. 2017-05-27 23:07:59 +02:00
Julien ad8abbfec4 Merge pull request #4 from entwanne/3.6
Complete library/string & add many translations to library/po
2017-05-27 23:06:01 +02:00
Antoine Rozo 4c33153639 Working on library/re.po 2017-05-27 22:49:06 +02:00
Antoine Rozo 3d5892f27c Complete library/string.po 2017-05-27 22:08:52 +02:00
Julien Palard 39817a3e09 whatsnew: Copy python versions using poedit (C-b). 2017-05-27 14:32:49 +02:00
Julien Palard c5bf46e78a whatsnew: Automatically replicate issue titles using:
pofile = polib.pofile('./whatsnew/changelog.po')
    for entry in pofile:
        bpo = re.search('bpo-[0-9]+', entry.msgid)
        if bpo:
            entry.msgstr = entry.msgid
            if 'fuzzy' in entry.flags:
                entry.flags.remove('fuzzy')
    pofile.save()
2017-05-27 14:31:43 +02:00
Julien Palard 4d5679b56b changelog: Automatically copy bug titles in fuzzy strings. 2017-05-27 14:28:40 +02:00
Julien Palard 15f004e3e1 Manually reviewing fuzzy in whatsnew/ 2017-05-27 14:26:58 +02:00
Julien Palard 13e9d6adab Bulk update s/Issue #[0-9]/bpo-[0-9]/ in whatsnew/changelog.po.
Done with:

    pofile = polib.pofile('./whatsnew/changelog.po')
    for entry in pofile.fuzzy_entries():
        bpo = re.search('bpo-[0-9]+', entry.msgid)
        issue = re.search('Issue #[0-9]+', entry.msgstr)
        if bpo and issue:
            bpo = bpo.group(0)
            issue = issue.group(0)
            bpo_number = int(bpo.split('-')[1])
            issue_number = int(issue.split('#')[1])
            if bpo_number == issue_number:
                entry.msgstr = entry.msgstr.replace(issue, bpo)
                entry.flags.remove('fuzzy')
    pofile.save()
2017-05-27 14:22:57 +02:00
Julien Palard ff33607bfd Reviewing fuzzy strings. 2017-05-27 14:17:28 +02:00
Julien Palard 2258ed12c4 Proofreading transifex. 2017-05-25 22:53:09 +02:00
Julien Palard 4474968850 tx pull 2017-05-25 22:36:09 +02:00
Julien Palard c2cbb33365 Workon on stdtypes. 2017-05-25 16:24:27 +02:00
Julien a6b20b61a1 Merge pull request #3 from entwanne/3.6
Add missing translations to library/functions.po
2017-05-25 16:06:38 +02:00
Antoine Rozo 0cc7b2ad84 Add missing translations to library/functions.po 2017-05-25 11:18:40 +02:00
Julien 04c943644e Merge pull request #2 from entwanne/3.6
Complete installing section
2017-05-24 23:28:15 +02:00
Antoine Rozo 8a85ecc596 Complete installing section 2017-05-24 23:21:38 +02:00
Julien Palard 9eb9f9f99d Transifex pull. 2017-05-24 22:55:30 +02:00
Julien Palard 40d127f5ad Accept both notations, as we also have to stick with the usage. also Wikipedia. 2017-05-24 14:07:13 +02:00
Julien Palard c512f2808e FIX: rst markup. 2017-05-24 14:04:38 +02:00
Julien Palard 349688977c FIX: Mixed quotes and backticks. 2017-05-24 13:51:01 +02:00
Julien Palard 08ef5ec0d5 Removing mo file (shouldn't have been pushed in the first time). 2017-05-24 13:45:33 +02:00
Julien Palard 426a6aa22c FIX: Missing space in link tag. 2017-05-24 13:40:12 +02:00
Julien Palard 6b2474ce25 Merge branch 'bob7408' 2017-05-24 13:39:18 +02:00
Julien Palard be21cd7778 Give public transifex URL instead of private one. 2017-05-24 13:19:23 +02:00
Myster a788d6a6b6 Correct a backtick 2017-05-24 12:50:12 +02:00