Test your translation files.
Project description
PyTest Translations
A py.test plugin to check gettext po & mo files.
Test check for:
Spelling (using enchant & aspell)
Consistency of mo files
Obsolete translations
Fuzzy translations
Installation
Install the PyPi package.
pip install pytest-translations
The spell checking requires enchant and aspell including the correct dictionary.
On Linux simply install:
sudo apt-get install python3-enchant python-enchant aspell-{en|de|CHOSE YOUR LANGUAGE CODES}
To set up travis-ci simply add the apt packages to your travis-ci config YAML:
addons:
apt:
packages:
- python-enchant
- python3-enchant
- aspell-en
- aspell-de
On Mac you can use brew to install:
brew install aspell
brew install enchant
Usage
To execute the translation tests simply run
py.test --translations
Every file ending in .mo and .po will be discovered and tested, starting from the command line arguments.
You also can execute only the translation-tests by using:
py.test -m translations --translations
Private Word Lists
You will almost certainly use words that are not included in the default dictionaries. That is why you can add your own word list that you want to add to the dictionary.
You may do so by adding a plain text file where each line is a word. Words beginning with a capital letter are case sensitive where lower case words are insensitive.
There can be one file for each language contained in a single folder. The files should be named like the proper language code.
For example:
.
└── .spelling
├── de
├── en_GB
└── en_US
What’s left to do is to set an environment variable to point to right directory.
For example:
export PYTEST_TRANSLATIONS_PRIVATE_WORD_LIST=path/to/my/.spelling
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 Distribution
Built Distribution
File details
Details for the file pytest_translations-5.0.0.tar.gz
.
File metadata
- Download URL: pytest_translations-5.0.0.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffd84082f9363350a51a3757a73352a1aadfffd14e7af872df2decc7dfbf4a0e |
|
MD5 | 955d4020df5d140a8f20ab2a963dad49 |
|
BLAKE2b-256 | 7b44aa0e2b9046deead9d267a67a6a1e1a392d8ef89e86f3820275c530bf0cdb |
Provenance
File details
Details for the file pytest_translations-5.0.0-py3-none-any.whl
.
File metadata
- Download URL: pytest_translations-5.0.0-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fd20a99591714b656281b674e0186a9df485a7d2aedccde2453b5a465f14eec |
|
MD5 | c4d889e94386fbad01556740e54e5590 |
|
BLAKE2b-256 | dfcd28bdeccc0a1a129864b726494f36c9b87ec6a8dadeb90ef9f9ee2114bd9b |