Skip to main content

PyPI Python Versions Build Status Test Coverage Black License

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:

  1. gettext - collect PO file
  2. msgfmt - compile into MO file
  3. sanpo - remove unhelpful metadata from PO
  4. 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:

  1. django-admin makemessages
  2. django-admin compilemessages
  3. sanpo
  4. commit possible changes in PO file

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sanpo-0.2.2.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sanpo-0.2.2-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file sanpo-0.2.2.tar.gz.

File metadata

  • Download URL: sanpo-0.2.2.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.13.0 Darwin/24.1.0

File hashes

Hashes for sanpo-0.2.2.tar.gz
Algorithm Hash digest
SHA256 a2a1ffcb14ff37095b79ea34695e51246ad10cb8eb5a314944c145ce51aaa18d
MD5 c59cd3e00427a0ecab86ff14cb3c5345
BLAKE2b-256 6f377b8ff5ee4af98e1ce7c695554b62be394f9bbab3dda384dc12e78a6af469

See more details on using hashes here.

File details

Details for the file sanpo-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: sanpo-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 5.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.13.0 Darwin/24.1.0

File hashes

Hashes for sanpo-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4a7421b26f967c2d3512ddd9774c1263665279fc6b05a6d8592fbe3ac4897505
MD5 ec46c9396ec9037ac2760956613dcf3d
BLAKE2b-256 b2e53dc27cc9fff4bd757d0ec74ecf317755c0f93b3134696e188a24b8f2f556

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page