Skip to content

Commit

Permalink
Merge branch 'master' of github.com:comoga/django-constance
Browse files Browse the repository at this point in the history
  • Loading branch information
whiskybar committed Jun 5, 2012
2 parents 0d0ab22 + d2b6316 commit 187262c
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
recursive-include constance/templates/ *.html
recursive-include constance/templates *.html

2 changes: 1 addition & 1 deletion constance/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def changelist_view(self, request, extra_context=None):
context['config'].append({
'name': name,
'default': localize(default),
'help_text': help_text,
'help_text': _(help_text),
'value': localize(value),
'modified': value != default,
'form_field': form[name]
Expand Down
Binary file added constance/locale/de/LC_MESSAGES/django.mo
Binary file not shown.
59 changes: 59 additions & 0 deletions constance/locale/de/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# 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: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-02-17 16:33+0100\n"
"PO-Revision-Date: 2012-02-17 16:34+0100\n"
"Last-Translator: Florian Apolloner <[email protected]>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: \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"

#: admin.py:79
msgid "Live settings updated successfully."
msgstr "Die Livekonfiguration wurde erfolgreich aktualisiert."

#: admin.py:83
msgid "Constance config"
msgstr "Constance Konfiguration"

#: backends/database/models.py:18
msgid "constance"
msgstr ""

#: backends/database/models.py:19
msgid "constances"
msgstr ""

#: templates/admin/constance/change_list.html:39
msgid "Name"
msgstr "Name"

#: templates/admin/constance/change_list.html:40
msgid "Default"
msgstr "Voreinstellung"

#: templates/admin/constance/change_list.html:41
msgid "Value"
msgstr "Wert"

#: templates/admin/constance/change_list.html:42
msgid "Is modified"
msgstr "Ist modifiziert"

#: templates/admin/constance/change_list.html:64
msgid "Save"
msgstr "Speichern"

#: templates/admin/constance/change_list.html:74
msgid "Home"
msgstr "Start"

2 changes: 1 addition & 1 deletion constance/templates/admin/constance/change_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
{{item.form_field}}
</td>
<td>
<img src="{% admin_media_prefix %}img/admin/icon-{% if item.modified %}yes{% else %}no{% endif %}.gif" alt="%s" />
<img src="{% admin_media_prefix %}img/icon-{% if item.modified %}yes{% else %}no{% endif %}.gif" alt="{{ item.modified }}" />
</td>
</tr>
{% endfor %}
Expand Down

0 comments on commit 187262c

Please sign in to comment.