├── LICENSE ├── MANIFEST.in ├── README.rst ├── linguo ├── __init__.py ├── exceptions.py ├── forms.py ├── managers.py ├── models.py ├── tests │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── locale │ │ └── fr │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── models.py │ ├── settings.py │ ├── tests.py │ └── urls.py ├── utils.py └── views.py └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/README.rst -------------------------------------------------------------------------------- /linguo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/__init__.py -------------------------------------------------------------------------------- /linguo/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/exceptions.py -------------------------------------------------------------------------------- /linguo/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/forms.py -------------------------------------------------------------------------------- /linguo/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/managers.py -------------------------------------------------------------------------------- /linguo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/models.py -------------------------------------------------------------------------------- /linguo/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linguo/tests/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/tests/admin.py -------------------------------------------------------------------------------- /linguo/tests/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/tests/forms.py -------------------------------------------------------------------------------- /linguo/tests/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/tests/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /linguo/tests/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/tests/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /linguo/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/tests/models.py -------------------------------------------------------------------------------- /linguo/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/tests/settings.py -------------------------------------------------------------------------------- /linguo/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/tests/tests.py -------------------------------------------------------------------------------- /linguo/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/tests/urls.py -------------------------------------------------------------------------------- /linguo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/linguo/utils.py -------------------------------------------------------------------------------- /linguo/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmathew/django-linguo/HEAD/setup.py --------------------------------------------------------------------------------