Convert gettext .po files to .xls


Keywords
django, xls, po, xls2po, converter, i18n, po2xls, python
License
GPL-3.0+
Install
pip install django-po2xls==0.11.2

Documentation

A django-po2xls documentation

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

django-po2xls is a Django management command to convert project translation .po files to .xls

Warning

django-po2xls does not support plural.

Installation

  • 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.

Configuration

Add "po2xls" to settings.INSTALLED_APPS.

INSTALLED_APPS += [
    "po2xls",
]

Usage

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.

Contributing

  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

Licensing

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.

Contacts

Project Website: https://github.com/vint21h/django-po2xls/

Author: Alexei Andrushievich <vint21h@vint21h.pp.ua>

For other authors list see AUTHORS file.