Skip to content

vint21h/django-xls2po

Repository files navigation

A django-xls2po documentation

GitHub Coveralls License Version Supported Python version Supported Django version Package format Python wheel support Package status

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.

  1. Fork it
  2. Install GNU Make
  3. Install and configure pyenv and pyenv-virtualenv plugin
  4. Install and configure direnv
  5. Create environment config from example
cp .env.example .env
  1. Install development dependencies:
make install
  1. Create your fix/feature branch:
git checkout -b my-new-fix-or-feature
  1. Check code style and moreover:
make check
  1. Run tests:
make test
  1. Push to the branch:
git push origin my-new-fix-or-feature
  1. Create a new Pull Request

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.