Commit Graph

2160 Commits

Author SHA1 Message Date
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
Myster c13f98d922 Correct and complete general section of faq 2017-05-24 12:40:30 +02:00
Julien Palard 5f42b67249 Set Language header to each po file. 2017-05-24 00:40:56 +02:00
Myster e2642ae7b8 Translate FAQ general 2017-05-23 23:26:51 +02:00
Julien Palard 09bbd615e9 README: Disambiguate a sentence. 2017-05-23 00:34:24 +02:00
Julien Palard 4f12757ecf README: Trust github to show users a clone URL after forking. 2017-05-23 00:33:34 +02:00
Julien Palard ff4228beca README: Fix typo and improve paragraph. 2017-05-23 00:31:16 +02:00
Julien Palard a0c1ca8130 README: Mention coordinator and french channel in a 'Where to get help' chapter. 2017-05-23 00:27:43 +02:00
Julien Palard 2e63df5869 README: Project history. 2017-05-23 00:24:19 +02:00
Julien Palard 1af684616b Migrate and translate README from afpy/python_doc_fr. 2017-05-23 00:12:09 +02:00
Julien Palard adaf0f9889 I prefer this unexisting word with with this spelling. Oh BTW now it exists. 2017-05-22 15:18:41 +02:00
Julien Palard 8b45ccfdc4 Work on stdtypes. 2017-05-17 00:07:16 +02:00
Julien Palard f8d2693611 fix style. 2017-05-16 23:44:27 +02:00
Julien Palard 61533a9516 tutorial/ → 100% 2017-05-16 23:31:05 +02:00
Julien Palard 55ca7a4452 A string in stdtypes.po. 2017-05-16 14:01:57 +02:00
Julien Palard c59c09cdda sphinx.po → 100% 2017-05-16 13:59:04 +02:00
Julien Palard c6d49ecda5 Update fuzzy from glossary.po 2017-05-15 23:58:44 +02:00
Julien Palard 63f4c2d31d Work on stdtypes and some build issues. 2017-05-15 23:26:31 +02:00
Julien Palard 3dcaab1cd8 Working on stdtypes.po (80%) 2017-05-15 13:29:27 +02:00