diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-10-26 08:46:16 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-10-26 08:46:16 +0200 |
commit | cce7797a756fff15d7b3753637642482f0884abd (patch) | |
tree | ae5270392c0e8af741010ba79090f7abd929f167 /doc | |
parent | 2ecab0491cb9fc65cf71a0231e57915441e7048a (diff) |
Another rename for makerst.py
Diffstat (limited to 'doc')
-rw-r--r-- | doc/translations/extract.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/translations/extract.py b/doc/translations/extract.py index a13680a613..68ac5d59f5 100644 --- a/doc/translations/extract.py +++ b/doc/translations/extract.py @@ -24,7 +24,7 @@ msgstr "" "Content-Transfer-Encoding: 8-bit\\n" """ -# Some strings used by makerst.py are normally part of the editor translations, +# Some strings used by make_rst.py are normally part of the editor translations, # so we need to include them manually here for the online docs. BASE_STRINGS = [ "Description", @@ -225,7 +225,7 @@ def _generate_translation_catalog_file(unique_msgs, output): with open(output, "w", encoding="utf8") as f: f.write(HEADER) for msg in BASE_STRINGS: - f.write("#: doc/tools/makerst.py\n") + f.write("#: doc/tools/make_rst.py\n") f.write('msgid "{}"\n'.format(msg)) f.write('msgstr ""\n\n') for msg in unique_msgs: |