Skip to content

Commit

Permalink
Fix #380 -- Add missing translation strings (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
rixx authored and raphaelm committed Jan 19, 2017
1 parent 9f90ac8 commit 7300c60
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 10 deletions.
16 changes: 12 additions & 4 deletions src/pretix/locale/de/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-18 08:37+0000\n"
"PO-Revision-Date: 2017-01-18 09:41+0100\n"
"POT-Creation-Date: 2017-01-18 20:43+0000\n"
"PO-Revision-Date: 2017-01-18 21:44+0100\n"
"Last-Translator: Raphael Michel <michel@rami.io>\n"
"Language-Team: Raphael Michel <michel@rami.io>\n"
"Language: de\n"
Expand Down Expand Up @@ -2920,15 +2920,15 @@ msgstr "Die E-Mail-Adresse wurde zu {email} geändert."
msgid "Your password has been changed."
msgstr "Das Passwort wurde geändert."

#: pretix/control/middleware.py:79
#: pretix/control/middleware.py:90
msgid ""
"The selected event was not found or you have no permission to administrate "
"it."
msgstr ""
"Sie haben keine Berechtigung, die ausgewählte Veranstaltung zu "
"administrieren."

#: pretix/control/middleware.py:92
#: pretix/control/middleware.py:112
msgid ""
"The selected organizer was not found or you have no permission to "
"administrate it."
Expand Down Expand Up @@ -7133,10 +7133,18 @@ msgstr "Dieser Vorverkauf läuft mit <a %(a_attr)s>pretix</a>."
msgid "There is nothing to see here yet."
msgstr "Hier gibt es zur Zeit nichts zu sehen."

#: pretix/presale/templates/pretixpresale/organizers/index.html:4
msgid "Event list"
msgstr "Veranstaltungs-Liste"

#: pretix/presale/templates/pretixpresale/organizers/index.html:9
msgid "Show upcoming"
msgstr "Zukünftige Veranstaltungen zeigen"

#: pretix/presale/templates/pretixpresale/organizers/index.html:12
msgid "Upcoming events"
msgstr "Nächste Veranstaltungen"

#: pretix/presale/templates/pretixpresale/organizers/index.html:14
msgid "Show past events"
msgstr "Vergangene Veranstaltungen zeigen"
Expand Down
16 changes: 12 additions & 4 deletions src/pretix/locale/de_Informal/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-18 08:37+0000\n"
"PO-Revision-Date: 2017-01-18 09:41+0100\n"
"POT-Creation-Date: 2017-01-18 20:43+0000\n"
"PO-Revision-Date: 2017-01-18 21:44+0100\n"
"Last-Translator: Raphael Michel <michel@rami.io>\n"
"Language-Team: Raphael Michel <michel@rami.io>\n"
"Language: de\n"
Expand Down Expand Up @@ -2913,14 +2913,14 @@ msgstr "Die E-Mail-Adresse wurde zu {email} geändert."
msgid "Your password has been changed."
msgstr "Das Passwort wurde geändert."

#: pretix/control/middleware.py:79
#: pretix/control/middleware.py:90
msgid ""
"The selected event was not found or you have no permission to administrate "
"it."
msgstr ""
"Du hast keine Berechtigung, die ausgewählte Veranstaltung zu administrieren."

#: pretix/control/middleware.py:92
#: pretix/control/middleware.py:112
msgid ""
"The selected organizer was not found or you have no permission to "
"administrate it."
Expand Down Expand Up @@ -7108,10 +7108,18 @@ msgstr "Dieser Vorverkauf läuft mit <a %(a_attr)s>pretix</a>."
msgid "There is nothing to see here yet."
msgstr "Hier gibt es zur Zeit nichts zu sehen."

#: pretix/presale/templates/pretixpresale/organizers/index.html:4
msgid "Event list"
msgstr "Veranstaltungs-Liste"

#: pretix/presale/templates/pretixpresale/organizers/index.html:9
msgid "Show upcoming"
msgstr "Zukünftige Veranstaltungen zeigen"

#: pretix/presale/templates/pretixpresale/organizers/index.html:12
msgid "Upcoming events"
msgstr "Nächste Veranstaltungen"

#: pretix/presale/templates/pretixpresale/organizers/index.html:14
msgid "Show past events"
msgstr "Vergangene Veranstaltungen zeigen"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{% extends "pretixpresale/organizers/base.html" %}
{% load i18n %}
{% load eventurl %}
{% block title %}Event list{% endblock %}
{% block title %}{% trans "Event list" %}{% endblock %}
{% block content %}
{% if "old" in request.GET %}
<h3>Past events</h3>
<p>
<small><a href="?">{% trans "Show upcoming" %}</a></small>
</p>
{% else %}
<h3>Upcoming events </h3>
<h3>{% trans "Upcoming events" %}</h3>
<p>
<small><a href="?old=1">{% trans "Show past events" %}</a></small>
</p>
Expand Down

0 comments on commit 7300c60

Please sign in to comment.