Metadata-Version: 2.0
Name: django-makemessages-xgettext
Version: 0.1.1
Summary: makemessages command that allows for arguments to be passed to xgettext.
Home-page: https://github.com/resulto-admin/django-makemessages-xgettext
Author: Resulto Dev Team
Author-email: dev@resulto.ca
License: New BSD
Keywords: django makemessages xgettext gettext
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Internationalization
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: Django (>=1.7)

django-makemessages-xgettext - Generate translations with additional options
============================================================================

:Authors:
  Resulto Developpement Web Inc.
:Version: 0.1.1

This project has one goal:

1. Allow makemessages to receive additional parameters to pass to xgettext.

Requirements
------------

django-makemessages-xgettext works with Python 2.7 and 3.4. It requires Django 1.7+

Installation
------------

Install with pip

::

    pip install django-makemessages-xgettext

Then add "django_makemessages_xgettext" to the INSTALLED_APPS list in settings.py

::

    INSTALLED_APPS = [
        ...
        "django_makemessages_xgettext",
    ]

Usage
-----

As a way to generate .po files without the line number comment reference
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Just use the `makemessagesxgettext` command instead of the `makemessages` command:

::

    python manage.py makemessagesxgettext -a --xgettext=--add-location=file

License
-------

This software is licensed under the `New BSD License`. See the `LICENSE` file
in the repository for the full license text.


