Sanitize PO files from gettext for version control
Project description
sanpo
sanpo
is a command line tool to sanitize PO files from gettext for version
control.
The problem
The gettext 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
get updated every time even if none of the messages
changed, resulting in spuriously modified PO files without any actual
changes worth committing.
The solution
Your localized software does not use the PO files directly but the MO files
compiled from them, they 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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file sanpo-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: sanpo-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdf204ce1608752b466d6c6df1fe7a03c87e4c5c67e1b3d0fa3f1f6bdecfb4af |
|
MD5 | bec2350ff2c15dae72049bbc8d0ddcf9 |
|
BLAKE2b-256 | 65681e9939144584bb82d61c505ed20ff5c2878256c478d0fea793e7fe18c019 |