https://github.com/vint21h/django-po2xls
Convert gettext .po files to .xls
https://github.com/vint21h/django-po2xls
django i18n po po2xls python xls
Last synced: 3 months ago
JSON representation
Convert gettext .po files to .xls
- Host: GitHub
- URL: https://github.com/vint21h/django-po2xls
- Owner: vint21h
- License: gpl-3.0
- Created: 2013-06-07T13:35:35.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-09-04T17:58:43.000Z (about 2 years ago)
- Last Synced: 2025-06-16T22:04:37.428Z (4 months ago)
- Topics: django, i18n, po, po2xls, python, xls
- Language: Python
- Homepage: https://github.com/vint21h/django-po2xls
- Size: 262 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
- License: COPYING
- Codeowners: .github/CODEOWNERS
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
.. django-po2xls
.. README.rstA django-po2xls documentation
=============================|GitHub|_ |Coveralls|_ |pypi-license|_ |pypi-version|_ |pypi-python-version|_ |pypi-django-version|_ |pypi-format|_ |pypi-wheel|_ |pypi-status|_
*django-po2xls is a Django management command to convert project translation .po files to .xls*
.. contents::
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``... code-block:: python
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.. code-block:: bash
cp .env.example .env
6. Install development dependencies:
.. code-block:: bash
make install
7. Create your fix/feature branch:
.. code-block:: bash
git checkout -b my-new-fix-or-feature
8. Check code style and moreover:
.. code-block:: bash
make check
9. Run tests:
.. code-block:: bash
make test
10. Push to the branch:
.. code-block:: bash
git push origin my-new-fix-or-feature
11. `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
For other authors list see AUTHORS file.
.. |GitHub| image:: https://github.com/vint21h/django-po2xls/workflows/build/badge.svg
:alt: GitHub
.. |Coveralls| image:: https://coveralls.io/repos/github/vint21h/django-po2xls/badge.svg?branch=master
:alt: Coveralls
.. |pypi-license| image:: https://img.shields.io/pypi/l/django-po2xls
:alt: License
.. |pypi-version| image:: https://img.shields.io/pypi/v/django-po2xls
:alt: Version
.. |pypi-django-version| image:: https://img.shields.io/pypi/djversions/django-po2xls
:alt: Supported Django version
.. |pypi-python-version| image:: https://img.shields.io/pypi/pyversions/django-po2xls
:alt: Supported Python version
.. |pypi-format| image:: https://img.shields.io/pypi/format/django-po2xls
:alt: Package format
.. |pypi-wheel| image:: https://img.shields.io/pypi/wheel/django-po2xls
:alt: Python wheel support
.. |pypi-status| image:: https://img.shields.io/pypi/status/django-po2xls
:alt: Package status
.. _GitHub: https://github.com/vint21h/django-po2xls/actions/
.. _Coveralls: https://coveralls.io/github/vint21h/django-po2xls?branch=master
.. _pypi-license: https://pypi.org/project/django-po2xls/
.. _pypi-version: https://pypi.org/project/django-po2xls/
.. _pypi-django-version: https://pypi.org/project/django-po2xls/
.. _pypi-python-version: https://pypi.org/project/django-po2xls/
.. _pypi-format: https://pypi.org/project/django-po2xls/
.. _pypi-wheel: https://pypi.org/project/django-po2xls/
.. _pypi-status: https://pypi.org/project/django-po2xls/