forked from carltongibson/django-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increased version to 0.7 and updated german translations.
- Loading branch information
Showing
6 changed files
with
74 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
from __future__ import absolute_import | ||
from .filterset import FilterSet | ||
from .filters import * | ||
|
||
VERSION = (0, 7) |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|