sanpo
sanpo is a command line tool to sanitize PO files from gettext for version
control.
The problem
The gettext tool collects text to be translated from source code in PO files that can be sent to translators. These files contain metadata about the project that can be helpful when using an email based workflow.
When creating a PO file the first time, these metadata look like this:
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-06 16:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
However, when having the PO file under version control, these metadata get in
the way. Most of them are available from the commit history. And when
running gettext automatically as part of the build process, the
PO-Revision-Date gets updated every time even if none of the messages
changed, resulting in spuriously modified PO files without any actual
changes worth committing.
The solution
Because your localized software does not use the PO files directly but the MO
files compiled from them, the unhelpful metadata can be removed. Which is
exactly what sanpo does.
A typical build chain would look like this:
- gettext - collect PO file
- msgfmt - compile into MO file
- sanpo - remove unhelpful metadata from PO
- commit possible changes in PO file
sanpo simple takes one or more PO files as argument, for example:
sanpo locale/de/LC_MESSAGES/django.po locale/en/LC_MESSAGES/django.po locale/hu/LC_MESSAGES/django.po
After this, the remaining metadata are:
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
Using the special pattern ** folders can be scanned recursively.
To sanitize PO files for all languages in a certain folder, use for example:
sanpo locale/**/django.po
Django
For Django projects, the typical workflow is:
- django-admin makemessages
- django-admin compilemessages
- sanpo
- commit possible changes in PO file
Release files for sanpo 0.3.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| sanpo-0.3.0.tar.gz | 7.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| sanpo-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 14.1 kB
Release files / sanpo-0.3.0.tar.gz
| Download URL | sanpo-0.3.0.tar.gz |
|---|---|
| Size | 7.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
bfcf84949c2c818c4da751b5e5c8d2ee540805dd393f8310d26b9fcb6c6eb38f
|
|
BLAKE2b-256 checksum How to use checksums |
dc67a2b7031587ad379c42faf213035928711df46809207507b3b6fed28d6541
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
|
Release files / sanpo-0.3.0-py3-none-any.whl
| Download URL | sanpo-0.3.0-py3-none-any.whl |
|---|---|
| Size | 6.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
8579054b4dfa253797725287f1aaf22ba88918a4f034c84264e19ced025902f2
|
|
BLAKE2b-256 checksum How to use checksums |
2405c5d869e356819f695b2822a5706d4bacd6e9dd71bdb9a7cc2dba5e54fad4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
|