diff --git a/openslides/locale/de/LC_MESSAGES/django.mo b/openslides/locale/de/LC_MESSAGES/django.mo
index f089d3c78..184352797 100644
Binary files a/openslides/locale/de/LC_MESSAGES/django.mo and b/openslides/locale/de/LC_MESSAGES/django.mo differ
diff --git a/openslides/locale/de/LC_MESSAGES/django.po b/openslides/locale/de/LC_MESSAGES/django.po
index ea2c90f44..1d1788c3a 100644
--- a/openslides/locale/de/LC_MESSAGES/django.po
+++ b/openslides/locale/de/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenSlides 1.x\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-11-03 09:32+0100\n"
+"POT-Creation-Date: 2012-11-07 00:09+0100\n"
"PO-Revision-Date: 2012-07-28 11:07+0200\n"
"Last-Translator: Emanuel Schuetze \n"
"Language-Team: support@openslides.de\n"
@@ -964,6 +964,13 @@ msgstr "Triviale Änderung"
msgid "Trivial changes don't create a new version."
msgstr "Triviale Änderungen erzeugen keine neue Version."
+#: motion/forms.py:35 motion/models.py:66 motion/views.py:742
+#: motion/templates/motion/overview.html:41
+#: motion/templates/motion/view.html:18
+#: motion/templates/projector/Motion.html:55
+msgid "Submitter"
+msgstr "Antragsteller/in"
+
#: motion/forms.py:44 motion/views.py:762 motion/templates/motion/view.html:22
msgid "Supporters"
msgstr "Unterstützer/innen"
@@ -1053,18 +1060,17 @@ msgstr "Verworfen (nicht zulässig)"
msgid "Needs Review"
msgstr "Benötigt Review"
-#: motion/models.py:66 motion/views.py:742
-#: motion/templates/motion/overview.html:41
-#: motion/templates/motion/view.html:18
-#: motion/templates/projector/Motion.html:55
-msgid "Submitter"
-msgstr "Antragsteller/in"
-
#: motion/models.py:103
#, python-format
msgid "Version %d authorized"
msgstr "Version %d zugelassen"
+#: motion/models.py:110
+#, fuzzy, python-format
+msgctxt "Rejected means not authorized"
+msgid "Version %d rejected"
+msgstr "Version verworfen"
+
#: motion/models.py:139
msgid "Searching for supporters."
msgstr "Auf Unterstützersuche."
@@ -1154,8 +1160,7 @@ msgstr "von"
msgid "no number"
msgstr "ohne Nummer"
-#: motion/models.py:455 motion/templates/motion/overview.html:32
-#: motion/templates/motion/widget.html:23
+#: motion/models.py:455 motion/templates/motion/widget.html:23
#: participant/templates/participant/personal_info_widget.html:9
#: participant/templates/participant/personal_info_widget.html:28
msgid "motion"
@@ -1531,6 +1536,13 @@ msgstr "Zugelassen"
msgid "Withdrawen (by submitter)"
msgstr "Zurückgezogen (durch Antragsteller/in)"
+#: motion/templates/motion/overview.html:32
+msgctxt "number of motions"
+msgid "motion"
+msgid_plural "motions"
+msgstr[0] "Antrag"
+msgstr[1] "Anträge"
+
#: motion/templates/motion/overview.html:35
msgid "Number"
msgstr "Nummer"
@@ -2211,6 +2223,8 @@ msgid "Projector view"
msgstr "Projektor-Ansicht"
#: projector/templates/projector/control_countdown.html:6
+#, fuzzy
+msgctxt "seconds"
msgid "s"
msgstr "s"
diff --git a/openslides/motion/forms.py b/openslides/motion/forms.py
index cf144feec..64f949bf4 100644
--- a/openslides/motion/forms.py
+++ b/openslides/motion/forms.py
@@ -32,7 +32,7 @@ class MotionFormTrivialChanges(MotionForm):
class MotionManagerForm(forms.ModelForm, CssClassMixin):
- submitter = PersonFormField()
+ submitter = PersonFormField(label = _("Submitter"))
class Meta:
model = Motion
diff --git a/openslides/motion/templates/motion/overview.html b/openslides/motion/templates/motion/overview.html
index 8d6b92613..38de7d40e 100644
--- a/openslides/motion/templates/motion/overview.html
+++ b/openslides/motion/templates/motion/overview.html
@@ -29,7 +29,7 @@
{{ motions|length }}
- {% blocktrans count counter=motions|length %}motion{% plural %}motions{% endblocktrans %}
+ {% blocktrans count counter=motions|length context "number of motions"%}motion{% plural %}motions{% endblocktrans %}