django-po2xls is a Django management command to convert project translation .po files to .xls
django-po2xls does not support plural.
- Obtain your copy of source code from the git repository:
$ git clone https://github.com/vint21h/django-po2xls.git
. Or download the latest release from https://github.com/vint21h/django-po2xls/tags/. - Run
$ python ./setup.py install
from the repository source tree or unpacked archive. Or use pip:$ pip install django-po2xls
.
Add "po2xls"
to settings.INSTALLED_APPS
.
INSTALLED_APPS += [
"po2xls",
]
Just run: $ python ./manage.py po-to-xls
Django management command from project folder and .xls files will be dropped near all of your project .po files.
- Fork it
- Install GNU Make
- Install and configure pyenv and pyenv-virtualenv plugin
- Install and configure direnv
- Create environment config from example
cp .env.example .env
- Install development dependencies:
make install
- Create your fix/feature branch:
git checkout -b my-new-fix-or-feature
- Check code style and moreover:
make check
- Run tests:
make test
- Push to the branch:
git push origin my-new-fix-or-feature
django-po2xls is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. For complete license text see COPYING file.
Project Website: https://github.com/vint21h/django-po2xls/
Author: Alexei Andrushievich <[email protected]>
For other authors list see AUTHORS file.