django-xls2po is a Django management command to convert django-po2xls generated .xls files to .po files
django-xls2po does not support plural.
- Obtain your copy of source code from the git repository:
$ git clone https://github.com/vint21h/django-xls2po.git
. Or download the latest release from https://github.com/vint21h/django-xls2po/tags/. - Run
$ python ./setup.py install
from the repository source tree or unpacked archive. Or use pip:$ pip install django-xls2po
.
Add "xls2po"
to settings.INSTALLED_APPS
.
INSTALLED_APPS += [
"xls2po",
]
Just run: $ python ./manage.py xls-to-po
Django management command from project folder and if you have django-po2xls
generated .xls files near of your .po files they will be overwritten by .xls files content.
- 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-xls2po 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-xls2po/
Author: Alexei Andrushievich <vint21h@vint21h.pp.ua>
For other authors list see AUTHORS file.