Commit Graph

26 Commits

Author SHA1 Message Date
599df826ed
Make merge of 3.9 (#1512) 2021-01-27 20:42:04 +01:00
25e6bb0dc1
Make merge of 3.9 (#1505) 2020-12-18 07:09:57 +01:00
Jules Lasne (jlasne)
757ab3f7b4
Make merge of 3.9 (#1385) 2020-09-11 09:11:46 +02:00
a5123415bb Uniformisation et simplification des chemins. 2020-07-30 14:12:04 +02:00
ccc2e5863e
Uniformize project-id-version. (#1041) 2019-12-05 23:15:54 +01:00
283979a625 Update language team. 2018-07-04 11:14:25 +02:00
e6e13bef30 Dropping useless first author line. 2018-07-04 11:09:21 +02:00
ac8e794c8c Update licence information. 2018-07-04 11:08:42 +02:00
117f6d15a2 Update Copyright date. 2018-07-04 11:06:45 +02:00
bc19527cab Dropping this useless SOME DESCRIPTIVE TITLE. 2018-07-04 11:05:51 +02:00
ceb04f1c42 merge pot files. 2018-05-02 00:20:18 +02:00
6b617ab69c merge pot files. 2017-09-21 09:29:22 +02:00
6839802243 merge pot files. 2017-09-12 13:40:22 +02:00
fe64bf3d16 merge pot files. 2017-08-29 14:38:59 +02:00
67baa865d6 Review fuzzy strings after pot merge. 2017-08-01 14:16:10 +02:00
4ef9eaac76 merge pot files. 2017-08-01 13:29:09 +02:00
429044df5b Review fuzzy strings after pot merge. 2017-05-27 23:11:48 +02:00
dcd20adc42 merge pot files. 2017-05-27 23:07:59 +02:00
39817a3e09 whatsnew: Copy python versions using poedit (C-b). 2017-05-27 14:32:49 +02:00
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
4d5679b56b changelog: Automatically copy bug titles in fuzzy strings. 2017-05-27 14:28:40 +02:00
15f004e3e1 Manually reviewing fuzzy in whatsnew/ 2017-05-27 14:26:58 +02:00
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
5f42b67249 Set Language header to each po file. 2017-05-24 00:40:56 +02:00
a25cddd031 3.6: merge pot files 2017-04-02 22:14:06 +02:00
84e5545ebb Hi, gettext_compact=0. 2016-10-30 10:50:10 +01:00