Skip to content

Commit

Permalink
Increased version to 0.7 and updated german translations.
Browse files Browse the repository at this point in the history
  • Loading branch information
apollo13 committed Aug 10, 2013
1 parent 033a523 commit f54953d
Show file tree
Hide file tree
Showing 6 changed files with 74 additions and 2 deletions.
18 changes: 17 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
Version 0.6 (Unreleased)
Version 0.7 (2013-08-10)
------------------------

* FEATURE: Added support for AutoField.

* FEATURE: There is a "distinct" flag to ensure that only unique rows are
returned.

* FEATURE: Support descending ordering (slighty backwards incompatible).

* FEATURE: Support "strict" querysets, ie wrong filter data returns no results.

* FIXED: Some translation strings were changed to be in line with admin.

* FIXED: Support for Django 1.7.

Version 0.6 (2013-03-25)
------------------------

* raised minimum Django version to 1.4.x
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ include runtests.py
recursive-include docs *
recursive-include requirements *
recursive-include tests *
recursive-include django_filters/locale *
2 changes: 2 additions & 0 deletions django_filters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
from __future__ import absolute_import
from .filterset import FilterSet
from .filters import *

VERSION = (0, 7)
Binary file added django_filters/locale/de/LC_MESSAGES/django.mo
Binary file not shown.
48 changes: 48 additions & 0 deletions django_filters/locale/de/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: django-filter\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-08-10 05:34-0500\n"
"PO-Revision-Date: 2013-08-10 12:29+0100\n"
"Last-Translator: Florian Apolloner <[email protected]>\n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.5.4\n"

#: filters.py:153
msgid "Any date"
msgstr "Alle Daten"

#: filters.py:154
msgid "Today"
msgstr "Heute"

#: filters.py:159
msgid "Past 7 days"
msgstr "Letzte 7 Tage"

#: filters.py:163
msgid "This month"
msgstr "Diesen Monat"

#: filters.py:167
msgid "This year"
msgstr "Dieses Jahr"

#: filterset.py:332 filterset.py:341
#, python-format
msgid "%s (descending)"
msgstr "%s (absteigend)"

#: widgets.py:63
msgid "All"
msgstr "Alle"
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,19 @@

setup(
name='django-filter',
version='0.7a0',
version='0.7',
description=('Django-filter is a reusable Django application for allowing'
' users to filter querysets dynamically.'),
long_description=readme,
author='Alex Gaynor',
author_email='[email protected]',
url='http://github.com/alex/django-filter/tree/master',
packages=find_packages(exclude=['tests']),
package_data = {
'django_filters': [
'locale/*/LC_MESSAGES/*',
],
},
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit f54953d

Please sign in to comment.