Fixed missing translation strings.

This commit is contained in:
Emanuel Schuetze 2015-01-16 14:21:45 +01:00
parent dac781d8aa
commit a9468cb0a4
4 changed files with 13 additions and 4 deletions

View File

@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-11 19:03+0100\n"
"POT-Creation-Date: 2015-01-16 14:24+0100\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -2195,6 +2195,11 @@ msgstr ""
msgid "This version is not authorized."
msgstr ""
#: motion/templates/motion/motion_detail.html:33
#: motion/templates/motion/slide.html:81
msgid "Amendment of"
msgstr ""
#: motion/templates/motion/motion_detail.html:40
msgid "Print motion as PDF"
msgstr ""
@ -2368,6 +2373,10 @@ msgstr ""
msgid "Motion title"
msgstr ""
#: motion/templates/motion/motion_list.html:77
msgid "Amendment"
msgstr ""
#: motion/templates/motion/motion_list.html:99
msgid "Enough supporters"
msgstr ""

View File

@ -30,7 +30,7 @@
{% endif %}
{% endif %}
{% if motion.is_amendment %}
(Amendment of <a href="{{ motion.parent|absolute_url }}">{{ motion.parent.identifier|default:motion.parent }}</a>)
({% trans "Amendment of" %} <a href="{{ motion.parent|absolute_url }}">{{ motion.parent.identifier|default:motion.parent }}</a>)
{% endif %}
</small>
<small class="pull-right">

View File

@ -74,7 +74,7 @@
<tr class="{% if motion.is_active_slide %}activeline{% endif %}">
<td class="nobr">{{ motion.identifier|default:'' }}
{% if motion.is_amendment %}
<a class="badge badge-success" data-original-title="Amendment" rel="tooltip">
<a class="badge badge-success" data-original-title="{% trans 'Amendment' %}" rel="tooltip">
{{ 'motion_amendments_prefix'|get_config }}
</a>
{% endif %}

View File

@ -78,7 +78,7 @@
<small>
{% trans "Motion" %} {{ motion.identifier|default:'' }}
{% if motion.is_amendment %}
(Amendment of {{ motion.parent.identifier|default:motion.parent }})
({% trans "Amendment of" %} {{ motion.parent.identifier|default:motion.parent }})
{% endif %}
{% if motion.get_active_version.version_number > 1 %} | {% trans 'Version' %} {{ motion.active_version.version_number }}{% endif %}
</small>