Skip to content
Snippets Groups Projects
Commit a523c064 authored by Nadja Geisler's avatar Nadja Geisler :sunny:
Browse files

Link AK List in dashboard

adjust other buttons
re-generate translations
parent 9a4ba8de
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ msgid "" ...@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-01-13 11:43+0000\n" "POT-Creation-Date: 2020-05-10 16:22+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
...@@ -17,72 +17,76 @@ msgstr "" ...@@ -17,72 +17,76 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: models.py:10 #: AKDashboard/models.py:10
msgid "Dashboard Button" msgid "Dashboard Button"
msgstr "Dashboard-Button" msgstr "Dashboard-Button"
#: models.py:11 #: AKDashboard/models.py:11
msgid "Dashboard Buttons" msgid "Dashboard Buttons"
msgstr "Dashboard-Buttons" msgstr "Dashboard-Buttons"
#: models.py:21 #: AKDashboard/models.py:21
msgid "Text" msgid "Text"
msgstr "Text" msgstr "Text"
#: models.py:22 #: AKDashboard/models.py:22
msgid "Text that will be shown on the button" msgid "Text that will be shown on the button"
msgstr "Text, der auf dem Button angezeigt wird" msgstr "Text, der auf dem Button angezeigt wird"
#: models.py:23 #: AKDashboard/models.py:23
msgid "Link URL" msgid "Link URL"
msgstr "Link URL" msgstr "Link URL"
#: models.py:23 #: AKDashboard/models.py:23
msgid "URL this button links to" msgid "URL this button links to"
msgstr "URL auf die der Button verweist" msgstr "URL auf die der Button verweist"
#: models.py:24 #: AKDashboard/models.py:24
msgid "Icon" msgid "Icon"
msgstr "Symbol" msgstr "Symbol"
#: models.py:26 #: AKDashboard/models.py:26
msgid "Button Style" msgid "Button Style"
msgstr "Stil des Buttons" msgstr "Stil des Buttons"
#: models.py:26 #: AKDashboard/models.py:26
msgid "Style (Color) of this button (bootstrap class)" msgid "Style (Color) of this button (bootstrap class)"
msgstr "Stiel (Farbe) des Buttons (Bootstrap-Klasse)" msgstr "Stiel (Farbe) des Buttons (Bootstrap-Klasse)"
#: models.py:28 #: AKDashboard/models.py:28
msgid "Event" msgid "Event"
msgstr "Veranstaltung" msgstr "Veranstaltung"
#: models.py:28 #: AKDashboard/models.py:28
msgid "Event this button belongs to" msgid "Event this button belongs to"
msgstr "Veranstaltung, zu der dieser Button gehört" msgstr "Veranstaltung, zu der dieser Button gehört"
#: templates/AKDashboard/dashboard.html:31 #: AKDashboard/templates/AKDashboard/dashboard.html:30
msgid "AK List"
msgstr "AK Liste"
#: AKDashboard/templates/AKDashboard/dashboard.html:40
msgid "Current AKs" msgid "Current AKs"
msgstr "Aktuelle AKs" msgstr "Aktuelle AKs"
#: templates/AKDashboard/dashboard.html:38 #: AKDashboard/templates/AKDashboard/dashboard.html:47
msgid "AK Wall" msgid "AK Wall"
msgstr "AK-Wall" msgstr "AK-Wall"
#: templates/AKDashboard/dashboard.html:47 #: AKDashboard/templates/AKDashboard/dashboard.html:56
msgid "AK Submission" msgid "AK Submission"
msgstr "AK-Submission" msgstr "AK-Submission"
#: templates/AKDashboard/dashboard.html:63 #: AKDashboard/templates/AKDashboard/dashboard.html:72
msgid "Write to organizers of this event for questions and comments" msgid "Write to organizers of this event for questions and comments"
msgstr "" msgstr ""
"Kontaktiere die Organisator*innen des Events bei Fragen oder Kommentaren" "Kontaktiere die Organisator*innen des Events bei Fragen oder Kommentaren"
#: templates/AKDashboard/dashboard.html:70 #: AKDashboard/templates/AKDashboard/dashboard.html:79
msgid "Currently, there are no Events!" msgid "Currently, there are no Events!"
msgstr "Aktuell gibt es keine Events!" msgstr "Aktuell gibt es keine Events!"
#: templates/AKDashboard/dashboard.html:73 #: AKDashboard/templates/AKDashboard/dashboard.html:82
msgid "Please contact an administrator if you want to use AKPlanning." msgid "Please contact an administrator if you want to use AKPlanning."
msgstr "" msgstr ""
"Bitte kontaktiere eine*n Administrator*in, falls du AKPlanning verwenden " "Bitte kontaktiere eine*n Administrator*in, falls du AKPlanning verwenden "
......
...@@ -22,12 +22,21 @@ ...@@ -22,12 +22,21 @@
<div class="dashboard-row"> <div class="dashboard-row">
<h2> {{ event.name }} </h2> <h2> {{ event.name }} </h2>
<div class="row"> <div class="row">
{% if 'AKSubmission'|check_app_installed %}
<a class="dashboard-box btn btn-primary"
href="{% url 'submit:ak_list' event_slug=event.slug %}">
<div class="col-sm-12 col-md-3 col-lg-2 dashboard-button">
<span class="fa fa-list-ul"></span>
<span class='text'>{% trans 'AK List' %}</span>
</div>
</a>
{% endif %}
{% if 'AKPlan'|check_app_installed %} {% if 'AKPlan'|check_app_installed %}
<a class="dashboard-box btn btn-primary" <a class="dashboard-box btn btn-primary"
href="{% url 'plan:plan_overview' event_slug=event.slug %}"> href="{% url 'plan:plan_overview' event_slug=event.slug %}">
<div class="col-sm-12 col-md-3 col-lg-2 dashboard-button"> <div class="col-sm-12 col-md-3 col-lg-2 dashboard-button">
<span class="fa fa-list-ul"></span> <span class="fa fa-clock"></span>
<span class='text'>{% trans 'Current AKs' %}</span> <span class='text'>{% trans 'Current AKs' %}</span>
</div> </div>
</a> </a>
...@@ -35,7 +44,7 @@ ...@@ -35,7 +44,7 @@
href="{% url 'plan:plan_wall' event_slug=event.slug %}"> href="{% url 'plan:plan_wall' event_slug=event.slug %}">
<div class="col-sm-12 col-md-3 col-lg-2 dashboard-button"> <div class="col-sm-12 col-md-3 col-lg-2 dashboard-button">
<span class="fa fa-calendar"></span> <span class="fa fa-calendar"></span>
<span class='text'>{% trans "AK Wall" %}</span> <span class='text'>{% trans 'AK Wall' %}</span>
</div> </div>
</a> </a>
{% endif %} {% endif %}
......
...@@ -2,7 +2,7 @@ msgid "" ...@@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-03-01 14:21+0000\n" "POT-Creation-Date: 2020-05-10 16:22+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
...@@ -11,152 +11,155 @@ msgstr "" ...@@ -11,152 +11,155 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: admin.py:21 #: AKModel/admin.py:32
msgid "Wish" msgid "Wish"
msgstr "AK-Wunsch" msgstr "AK-Wunsch"
#: admin.py:27 #: AKModel/admin.py:38
msgid "Is wish" msgid "Is wish"
msgstr "Ist ein Wunsch" msgstr "Ist ein Wunsch"
#: admin.py:28 #: AKModel/admin.py:39
msgid "Is not a wish" msgid "Is not a wish"
msgstr "Ist kein Wunsch" msgstr "Ist kein Wunsch"
#: admin.py:54 #: AKModel/admin.py:65
msgid "Export to wiki syntax" msgid "Export to wiki syntax"
msgstr "In Wiki-Syntax exportieren" msgstr "In Wiki-Syntax exportieren"
#: availability.py:38 models.py:37 models.py:58 models.py:110 models.py:128 #: AKModel/availability.py:38 AKModel/models.py:37 AKModel/models.py:57
#: models.py:159 models.py:208 models.py:244 models.py:274 #: AKModel/models.py:109 AKModel/models.py:128 AKModel/models.py:160
#: AKModel/models.py:210 AKModel/models.py:246 AKModel/models.py:276
msgid "Event" msgid "Event"
msgstr "Event" msgstr "Event"
#: availability.py:39 models.py:59 models.py:111 models.py:129 models.py:160 #: AKModel/availability.py:39 AKModel/models.py:58 AKModel/models.py:110
#: models.py:209 models.py:245 models.py:275 #: AKModel/models.py:129 AKModel/models.py:161 AKModel/models.py:211
#: AKModel/models.py:247 AKModel/models.py:277
msgid "Associated event" msgid "Associated event"
msgstr "Zugehöriges Event" msgstr "Zugehöriges Event"
#: availability.py:47 #: AKModel/availability.py:47
msgid "Person" msgid "Person"
msgstr "Person" msgstr "Person"
#: availability.py:48 #: AKModel/availability.py:48
msgid "Person whose availability this is" msgid "Person whose availability this is"
msgstr "Person deren Verfügbarkeit hier abgebildet wird" msgstr "Person deren Verfügbarkeit hier abgebildet wird"
#: availability.py:56 models.py:248 models.py:267 #: AKModel/availability.py:56 AKModel/models.py:250 AKModel/models.py:269
msgid "Room" msgid "Room"
msgstr "Raum" msgstr "Raum"
#: availability.py:57 #: AKModel/availability.py:57
msgid "Room whose availability this is" msgid "Room whose availability this is"
msgstr "Raum dessen Verfügbarkeit hier abgebildet wird" msgstr "Raum dessen Verfügbarkeit hier abgebildet wird"
#: availability.py:65 models.py:212 models.py:266 #: AKModel/availability.py:65 AKModel/models.py:214 AKModel/models.py:268
msgid "AK" msgid "AK"
msgstr "AK" msgstr "AK"
#: availability.py:66 #: AKModel/availability.py:66
msgid "AK whose availability this is" msgid "AK whose availability this is"
msgstr "Verfügbarkeiten" msgstr "Verfügbarkeiten"
#: availability.py:74 models.py:114 #: AKModel/availability.py:74 AKModel/models.py:113
msgid "AK Category" msgid "AK Category"
msgstr "AK Kategorie" msgstr "AK Kategorie"
#: availability.py:75 #: AKModel/availability.py:75
msgid "AK Category whose availability this is" msgid "AK Category whose availability this is"
msgstr "AK Kategorie dessen Verfügbarkeit hier abgebildet wird" msgstr "AK Kategorie dessen Verfügbarkeit hier abgebildet wird"
#: availability.py:235 #: AKModel/availability.py:235
msgid "Availability" msgid "Availability"
msgstr "Verfügbarkeit" msgstr "Verfügbarkeit"
#: availability.py:236 #: AKModel/availability.py:236
msgid "Availabilities" msgid "Availabilities"
msgstr "Verfügbarkeiten" msgstr "Verfügbarkeiten"
#: models.py:14 models.py:105 models.py:125 models.py:143 models.py:157 #: AKModel/models.py:14 AKModel/models.py:104 AKModel/models.py:125
#: models.py:174 models.py:237 #: AKModel/models.py:144 AKModel/models.py:158 AKModel/models.py:176
#: AKModel/models.py:239
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
#: models.py:15 #: AKModel/models.py:15
msgid "Name or iteration of the event" msgid "Name or iteration of the event"
msgstr "Name oder Iteration des Events" msgstr "Name oder Iteration des Events"
#: models.py:16 #: AKModel/models.py:16
msgid "Short Form" msgid "Short Form"
msgstr "Kurzer Name" msgstr "Kurzer Name"
#: models.py:17 #: AKModel/models.py:17
msgid "Short name of letters/numbers/dots/dashes/underscores used in URLs." msgid "Short name of letters/numbers/dots/dashes/underscores used in URLs."
msgstr "" msgstr ""
"Kurzname bestehend aus Buchstaben, Nummern, Punkten und Unterstrichen zur " "Kurzname bestehend aus Buchstaben, Nummern, Punkten und Unterstrichen zur "
"Nutzung in URLs" "Nutzung in URLs"
#: models.py:19 #: AKModel/models.py:19
msgid "Place" msgid "Place"
msgstr "Ort" msgstr "Ort"
#: models.py:20 #: AKModel/models.py:20
msgid "City etc. the event takes place in" msgid "City etc. the event takes place in"
msgstr "Stadt o.ä. in der das Event stattfindet" msgstr "Stadt o.ä. in der das Event stattfindet"
#: models.py:22 #: AKModel/models.py:22
msgid "Time Zone" msgid "Time Zone"
msgstr "Zeitzone" msgstr "Zeitzone"
#: models.py:22 #: AKModel/models.py:22
msgid "Time Zone where this event takes place in" msgid "Time Zone where this event takes place in"
msgstr "Zeitzone in der das Event stattfindet" msgstr "Zeitzone in der das Event stattfindet"
#: models.py:23 #: AKModel/models.py:23
msgid "Start" msgid "Start"
msgstr "Start" msgstr "Start"
#: models.py:23 #: AKModel/models.py:23
msgid "Time the event begins" msgid "Time the event begins"
msgstr "Zeit zu der das Event beginnt" msgstr "Zeit zu der das Event beginnt"
#: models.py:24 #: AKModel/models.py:24
msgid "End" msgid "End"
msgstr "Ende" msgstr "Ende"
#: models.py:24 #: AKModel/models.py:24
msgid "Time the event ends" msgid "Time the event ends"
msgstr "Zeit zu der das Event endet" msgstr "Zeit zu der das Event endet"
#: models.py:26 #: AKModel/models.py:26
msgid "Active State" msgid "Active State"
msgstr "Aktiver Status" msgstr "Aktiver Status"
#: models.py:26 #: AKModel/models.py:26
msgid "Marks currently active events" msgid "Marks currently active events"
msgstr "Markiert aktuell aktive Events" msgstr "Markiert aktuell aktive Events"
#: models.py:28 #: AKModel/models.py:28
msgid "Base URL" msgid "Base URL"
msgstr "URL-Prefix" msgstr "URL-Prefix"
#: models.py:28 #: AKModel/models.py:28
msgid "Prefix for wiki link construction" msgid "Prefix for wiki link construction"
msgstr "Prefix für die automatische Generierung von Wiki-Links" msgstr "Prefix für die automatische Generierung von Wiki-Links"
#: models.py:29 #: AKModel/models.py:29
msgid "Default Slot Length" msgid "Default Slot Length"
msgstr "Standardslotlänge" msgstr "Standardslotlänge"
#: models.py:30 #: AKModel/models.py:30
msgid "Default length in hours that is assumed for AKs in this event." msgid "Default length in hours that is assumed for AKs in this event."
msgstr "Standardlänge von Slots (in Stunden) für dieses Event" msgstr "Standardlänge von Slots (in Stunden) für dieses Event"
#: models.py:32 #: AKModel/models.py:32
msgid "Contact email address" msgid "Contact email address"
msgstr "E-Mail Kontaktadresse" msgstr "E-Mail Kontaktadresse"
#: models.py:34 #: AKModel/models.py:34
msgid "" msgid ""
"An email address that is displayed on every page and can be used for all " "An email address that is displayed on every page and can be used for all "
"kinds of questions" "kinds of questions"
...@@ -164,292 +167,292 @@ msgstr "" ...@@ -164,292 +167,292 @@ msgstr ""
"Eine Mailadresse die auf jeder Seite angezeigt wird und für alle Arten von " "Eine Mailadresse die auf jeder Seite angezeigt wird und für alle Arten von "
"Fragen genutzt werden kann" "Fragen genutzt werden kann"
#: models.py:38 #: AKModel/models.py:38
msgid "Events" msgid "Events"
msgstr "Events" msgstr "Events"
#: models.py:52 #: AKModel/models.py:52
msgid "Nickname" msgid "Nickname"
msgstr "Spitzname" msgstr "Spitzname"
#: models.py:52 #: AKModel/models.py:52
msgid "Name to identify an AK owner by" msgid "Name to identify an AK owner by"
msgstr "Name durch den eine AK Leitung identifiziert wird" msgstr "Name durch den eine AK Leitung identifiziert wird"
#: models.py:53 #: AKModel/models.py:53
msgid "Slug" msgid "Slug"
msgstr "Slug" msgstr "Slug"
#: models.py:54 #: AKModel/models.py:53
msgid "Slug for URL generation" msgid "Slug for URL generation"
msgstr "Slug für URL-Generierung" msgstr "Slug für URL-Generierung"
#: models.py:55 #: AKModel/models.py:54
msgid "Institution" msgid "Institution"
msgstr "Instutution" msgstr "Instutution"
#: models.py:55 #: AKModel/models.py:54
msgid "Uni etc." msgid "Uni etc."
msgstr "Universität o.ä." msgstr "Universität o.ä."
#: models.py:56 models.py:183 #: AKModel/models.py:55 AKModel/models.py:185
msgid "Web Link" msgid "Web Link"
msgstr "Internet Link" msgstr "Internet Link"
#: models.py:56 #: AKModel/models.py:55
msgid "Link to Homepage" msgid "Link to Homepage"
msgstr "Link zu Homepage oder Webseite" msgstr "Link zu Homepage oder Webseite"
#: models.py:62 #: AKModel/models.py:61
msgid "AK Owner" msgid "AK Owner"
msgstr "AK Leitung" msgstr "AK Leitung"
#: models.py:63 #: AKModel/models.py:62
msgid "AK Owners" msgid "AK Owners"
msgstr "AK Leitungen" msgstr "AK Leitungen"
#: models.py:105 #: AKModel/models.py:104
msgid "Name of the AK Category" msgid "Name of the AK Category"
msgstr "Name des AK Kategorie" msgstr "Name des AK Kategorie"
#: models.py:106 models.py:126 #: AKModel/models.py:105 AKModel/models.py:126
msgid "Color" msgid "Color"
msgstr "Farbe" msgstr "Farbe"
#: models.py:106 models.py:126 #: AKModel/models.py:105 AKModel/models.py:126
msgid "Color for displaying" msgid "Color for displaying"
msgstr "Farbe für die Anzeige" msgstr "Farbe für die Anzeige"
#: models.py:107 models.py:177 #: AKModel/models.py:106 AKModel/models.py:179
msgid "Description" msgid "Description"
msgstr "Beschreibung" msgstr "Beschreibung"
#: models.py:108 #: AKModel/models.py:107
msgid "Short description of this AK Category" msgid "Short description of this AK Category"
msgstr "Beschreibung der AK-Kategorie" msgstr "Beschreibung der AK-Kategorie"
#: models.py:115 #: AKModel/models.py:114
msgid "AK Categories" msgid "AK Categories"
msgstr "AK Kategorien" msgstr "AK Kategorien"
#: models.py:125 #: AKModel/models.py:125
msgid "Name of the AK Track" msgid "Name of the AK Track"
msgstr "Name des AK Tracks" msgstr "Name des AK Tracks"
#: models.py:132 #: AKModel/models.py:132
msgid "AK Track" msgid "AK Track"
msgstr "AK Track" msgstr "AK Track"
#: models.py:133 #: AKModel/models.py:133
msgid "AK Tracks" msgid "AK Tracks"
msgstr "AK Tracks" msgstr "AK Tracks"
#: models.py:143 #: AKModel/models.py:144
msgid "Name of the AK Tag" msgid "Name of the AK Tag"
msgstr "Name das AK Tags" msgstr "Name das AK Tags"
#: models.py:146 #: AKModel/models.py:147
msgid "AK Tag" msgid "AK Tag"
msgstr "AK Tag" msgstr "AK Tag"
#: models.py:147 #: AKModel/models.py:148
msgid "AK Tags" msgid "AK Tags"
msgstr "AK Tags" msgstr "AK Tags"
#: models.py:157 #: AKModel/models.py:158
msgid "Name of the Requirement" msgid "Name of the Requirement"
msgstr "Name der Anforderung" msgstr "Name der Anforderung"
#: models.py:163 #: AKModel/models.py:164
msgid "AK Requirement" msgid "AK Requirement"
msgstr "AK Anforderung" msgstr "AK Anforderung"
#: models.py:164 #: AKModel/models.py:165
msgid "AK Requirements" msgid "AK Requirements"
msgstr "AK Anforderungen" msgstr "AK Anforderungen"
#: models.py:174 #: AKModel/models.py:176
msgid "Name of the AK" msgid "Name of the AK"
msgstr "Name des AKs" msgstr "Name des AKs"
#: models.py:175 #: AKModel/models.py:177
msgid "Short Name" msgid "Short Name"
msgstr "Kurzer Name" msgstr "Kurzer Name"
#: models.py:176 #: AKModel/models.py:178
msgid "Name displayed in the schedule" msgid "Name displayed in the schedule"
msgstr "Name zur Anzeige im AK Plan" msgstr "Name zur Anzeige im AK Plan"
#: models.py:177 #: AKModel/models.py:179
msgid "Description of the AK" msgid "Description of the AK"
msgstr "Beschreibung des AKs" msgstr "Beschreibung des AKs"
#: models.py:179 #: AKModel/models.py:181
msgid "Owners" msgid "Owners"
msgstr "Leitungen" msgstr "Leitungen"
#: models.py:180 #: AKModel/models.py:182
msgid "Those organizing the AK" msgid "Those organizing the AK"
msgstr "Menschen, die den AK organisieren und halten" msgstr "Menschen, die den AK organisieren und halten"
#: models.py:183 #: AKModel/models.py:185
msgid "Link to wiki page" msgid "Link to wiki page"
msgstr "Link zur Wiki Seite" msgstr "Link zur Wiki Seite"
#: models.py:185 #: AKModel/models.py:187
msgid "Category" msgid "Category"
msgstr "Kategorie" msgstr "Kategorie"
#: models.py:186 #: AKModel/models.py:188
msgid "Category of the AK" msgid "Category of the AK"
msgstr "Kategorie des AKs" msgstr "Kategorie des AKs"
#: models.py:187 #: AKModel/models.py:189
msgid "Tags" msgid "Tags"
msgstr "Tags" msgstr "Tags"
#: models.py:187 #: AKModel/models.py:189
msgid "Tags provided by owners" msgid "Tags provided by owners"
msgstr "Tags, die durch die AK Leitung vergeben wurden" msgstr "Tags, die durch die AK Leitung vergeben wurden"
#: models.py:188 #: AKModel/models.py:190
msgid "Track" msgid "Track"
msgstr "Track" msgstr "Track"
#: models.py:189 #: AKModel/models.py:191
msgid "Track the AK belongs to" msgid "Track the AK belongs to"
msgstr "Track zu dem der AK gehört" msgstr "Track zu dem der AK gehört"
#: models.py:191 #: AKModel/models.py:193
msgid "Resolution Intention" msgid "Resolution Intention"
msgstr "Resolutionsabsicht" msgstr "Resolutionsabsicht"
#: models.py:192 #: AKModel/models.py:194
msgid "Intends to submit a resolution" msgid "Intends to submit a resolution"
msgstr "Beabsichtigt eine Resolution einzureichen" msgstr "Beabsichtigt eine Resolution einzureichen"
#: models.py:193 #: AKModel/models.py:195
msgid "Present this AK" msgid "Present this AK"
msgstr "AK Präsentieren" msgstr "AK Präsentieren"
#: models.py:194 #: AKModel/models.py:196
msgid "Present results of this AK" msgid "Present results of this AK"
msgstr "Die Ergebnisse dieses AKs vorstellen" msgstr "Die Ergebnisse dieses AKs vorstellen"
#: models.py:196 #: AKModel/models.py:198
msgid "Requirements" msgid "Requirements"
msgstr "Anforderungen" msgstr "Anforderungen"
#: models.py:197 #: AKModel/models.py:199
msgid "AK's Requirements" msgid "AK's Requirements"
msgstr "Anforderungen des AKs" msgstr "Anforderungen des AKs"
#: models.py:199 #: AKModel/models.py:201
msgid "Conflicting AKs" msgid "Conflicting AKs"
msgstr "AK Konflikte" msgstr "AK Konflikte"
#: models.py:200 #: AKModel/models.py:202
msgid "AKs that conflict and thus must not take place at the same time" msgid "AKs that conflict and thus must not take place at the same time"
msgstr "" msgstr ""
"AKs, die Konflikte haben und deshalb nicht gleichzeitig stattfinden dürfen" "AKs, die Konflikte haben und deshalb nicht gleichzeitig stattfinden dürfen"
#: models.py:201 #: AKModel/models.py:203
msgid "Prerequisite AKs" msgid "Prerequisite AKs"
msgstr "Vorausgesetzte AKs" msgstr "Vorausgesetzte AKs"
#: models.py:202 #: AKModel/models.py:204
msgid "AKs that should precede this AK in the schedule" msgid "AKs that should precede this AK in the schedule"
msgstr "AKS die im AK Plan vor diesem AK stattfinden müssen" msgstr "AKS die im AK Plan vor diesem AK stattfinden müssen"
#: models.py:204 #: AKModel/models.py:206
msgid "Internal Notes" msgid "Internal Notes"
msgstr "Interne Notizen" msgstr "Interne Notizen"
#: models.py:204 #: AKModel/models.py:206
msgid "Notes to organizers" msgid "Notes to organizers"
msgstr "Notizen an die Organisator*innen" msgstr "Notizen an die Organisator*innen"
#: models.py:206 #: AKModel/models.py:208
msgid "Interest" msgid "Interest"
msgstr "Interesse" msgstr "Interesse"
#: models.py:206 #: AKModel/models.py:208
msgid "Expected number of people" msgid "Expected number of people"
msgstr "Erwartete Personenzahl" msgstr "Erwartete Personenzahl"
#: models.py:213 #: AKModel/models.py:215
msgid "AKs" msgid "AKs"
msgstr "AKs" msgstr "AKs"
#: models.py:237 #: AKModel/models.py:239
msgid "Name or number of the room" msgid "Name or number of the room"
msgstr "Name oder Nummer des Raums" msgstr "Name oder Nummer des Raums"
#: models.py:238 #: AKModel/models.py:240
msgid "Building" msgid "Building"
msgstr "Gebäude" msgstr "Gebäude"
#: models.py:239 #: AKModel/models.py:241
msgid "Name or number of the building" msgid "Name or number of the building"
msgstr "Name oder Nummer des Gebäudes" msgstr "Name oder Nummer des Gebäudes"
#: models.py:240 #: AKModel/models.py:242
msgid "Capacity" msgid "Capacity"
msgstr "Kapazität" msgstr "Kapazität"
#: models.py:240 #: AKModel/models.py:242
msgid "Maximum number of people" msgid "Maximum number of people"
msgstr "Maximale Personenzahl" msgstr "Maximale Personenzahl"
#: models.py:241 #: AKModel/models.py:243
msgid "Properties" msgid "Properties"
msgstr "Eigenschaften" msgstr "Eigenschaften"
#: models.py:242 #: AKModel/models.py:244
msgid "AK requirements fulfilled by the room" msgid "AK requirements fulfilled by the room"
msgstr "AK Anforderungen, die dieser Raum erfüllt" msgstr "AK Anforderungen, die dieser Raum erfüllt"
#: models.py:249 #: AKModel/models.py:251
msgid "Rooms" msgid "Rooms"
msgstr "Räume" msgstr "Räume"
#: models.py:266 #: AKModel/models.py:268
msgid "AK being mapped" msgid "AK being mapped"
msgstr "AK, der zugeordnet wird" msgstr "AK, der zugeordnet wird"
#: models.py:268 #: AKModel/models.py:270
msgid "Room the AK will take place in" msgid "Room the AK will take place in"
msgstr "Raum in dem der AK stattfindet" msgstr "Raum in dem der AK stattfindet"
#: models.py:269 #: AKModel/models.py:271
msgid "Slot Begin" msgid "Slot Begin"
msgstr "Beginn des Slots" msgstr "Beginn des Slots"
#: models.py:269 #: AKModel/models.py:271
msgid "Time and date the slot begins" msgid "Time and date the slot begins"
msgstr "Zeit und Datum zu der der AK beginnt" msgstr "Zeit und Datum zu der der AK beginnt"
#: models.py:271 #: AKModel/models.py:273
msgid "Duration" msgid "Duration"
msgstr "Dauer" msgstr "Dauer"
#: models.py:272 #: AKModel/models.py:274
msgid "Length in hours" msgid "Length in hours"
msgstr "Länge in Stunden" msgstr "Länge in Stunden"
#: models.py:277 #: AKModel/models.py:279
msgid "Last update" msgid "Last update"
msgstr "Letzte Aktualisierung" msgstr "Letzte Aktualisierung"
#: models.py:280 #: AKModel/models.py:282
msgid "AK Slot" msgid "AK Slot"
msgstr "AK Slot" msgstr "AK Slot"
#: models.py:281 #: AKModel/models.py:283
msgid "AK Slots" msgid "AK Slots"
msgstr "AK Slot" msgstr "AK Slot"
#: models.py:295 #: AKModel/models.py:297
msgid "Not scheduled yet" msgid "Not scheduled yet"
msgstr "Noch nicht geplant" msgstr "Noch nicht geplant"
......
...@@ -8,7 +8,7 @@ msgid "" ...@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-03-04 00:53+0000\n" "POT-Creation-Date: 2020-05-10 16:22+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
...@@ -17,51 +17,58 @@ msgstr "" ...@@ -17,51 +17,58 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: templates/AKPlan/plan_base.html:24 #: AKPlan/templates/AKPlan/plan_base.html:24
msgid "Write to organizers of this event for questions and comments" msgid "Write to organizers of this event for questions and comments"
msgstr "Fragen oder Kommentare? Schreib den Orgas dieses Events eine Mail" msgstr "Fragen oder Kommentare? Schreib den Orgas dieses Events eine Mail"
#: templates/AKPlan/plan_breadcrumbs.html:13 #: AKPlan/templates/AKPlan/plan_breadcrumbs.html:13
msgid "AK Plan" msgid "AK Plan"
msgstr "AK-Plan" msgstr "AK-Plan"
#: templates/AKPlan/plan_index.html:40 #: AKPlan/templates/AKPlan/plan_index.html:40
msgid "Day" msgid "Day"
msgstr "Tag" msgstr "Tag"
#: templates/AKPlan/plan_index.html:50 #: AKPlan/templates/AKPlan/plan_index.html:50
msgid "Event" msgid "Event"
msgstr "Veranstaltung" msgstr "Veranstaltung"
#: templates/AKPlan/plan_index.html:59 templates/AKPlan/plan_room.html:8 #: AKPlan/templates/AKPlan/plan_index.html:59
#: templates/AKPlan/plan_room.html:44 templates/AKPlan/plan_wall.html:64 #: AKPlan/templates/AKPlan/plan_room.html:8
#: AKPlan/templates/AKPlan/plan_room.html:44
#: AKPlan/templates/AKPlan/plan_wall.html:64
msgid "Room" msgid "Room"
msgstr "Raum" msgstr "Raum"
#: templates/AKPlan/plan_index.html:80 templates/AKPlan/plan_room.html:34 #: AKPlan/templates/AKPlan/plan_index.html:80
#: AKPlan/templates/AKPlan/plan_room.html:34
msgid "Rooms" msgid "Rooms"
msgstr "Räume" msgstr "Räume"
#: templates/AKPlan/plan_index.html:88 templates/AKPlan/plan_track.html:34 #: AKPlan/templates/AKPlan/plan_index.html:88
#: AKPlan/templates/AKPlan/plan_track.html:34
msgid "Tracks" msgid "Tracks"
msgstr "Tracks" msgstr "Tracks"
#: templates/AKPlan/plan_index.html:96 #: AKPlan/templates/AKPlan/plan_index.html:96
msgid "AK Wall" msgid "AK Wall"
msgstr "AK-Wall" msgstr "AK-Wall"
#: templates/AKPlan/plan_index.html:106 templates/AKPlan/plan_wall.html:88 #: AKPlan/templates/AKPlan/plan_index.html:106
#: AKPlan/templates/AKPlan/plan_wall.html:88
msgid "Current AKs" msgid "Current AKs"
msgstr "Aktuelle AKs" msgstr "Aktuelle AKs"
#: templates/AKPlan/plan_index.html:113 templates/AKPlan/plan_wall.html:93 #: AKPlan/templates/AKPlan/plan_index.html:113
#: AKPlan/templates/AKPlan/plan_wall.html:93
msgid "Next AKs" msgid "Next AKs"
msgstr "Nächste AKs" msgstr "Nächste AKs"
#: templates/AKPlan/plan_track.html:8 templates/AKPlan/plan_track.html:44 #: AKPlan/templates/AKPlan/plan_track.html:8
#: AKPlan/templates/AKPlan/plan_track.html:44
msgid "Track" msgid "Track"
msgstr "Track" msgstr "Track"
#: templates/AKPlan/slots_table.html:12 #: AKPlan/templates/AKPlan/slots_table.html:12
msgid "No AKs" msgid "No AKs"
msgstr "Keine AKs" msgstr "Keine AKs"
...@@ -2,13 +2,13 @@ ...@@ -2,13 +2,13 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# #
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-10-29 14:50+0000\n" "POT-Creation-Date: 2020-05-10 16:22+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
......
...@@ -8,7 +8,7 @@ msgid "" ...@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-01-08 21:38+0000\n" "POT-Creation-Date: 2020-05-10 16:22+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
...@@ -17,20 +17,20 @@ msgstr "" ...@@ -17,20 +17,20 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: forms.py:43 #: AKSubmission/forms.py:43
msgid "Separate multiple tags with semicolon" msgid "Separate multiple tags with semicolon"
msgstr "Mehrere Tags mit Semikolon trennen" msgstr "Mehrere Tags mit Semikolon trennen"
#: forms.py:67 #: AKSubmission/forms.py:69
#, python-format #, python-format
msgid "\"%(duration)s\" is not a valid duration" msgid "\"%(duration)s\" is not a valid duration"
msgstr "\"%(duration)s\" ist keine gültige Dauer" msgstr "\"%(duration)s\" ist keine gültige Dauer"
#: forms.py:110 #: AKSubmission/forms.py:112
msgid "Duration(s)" msgid "Duration(s)"
msgstr "Dauer(n)" msgstr "Dauer(n)"
#: forms.py:112 #: AKSubmission/forms.py:114
msgid "" msgid ""
"Enter at least one planned duration (in hours). If your AK should have " "Enter at least one planned duration (in hours). If your AK should have "
"multiple slots, use multiple lines" "multiple slots, use multiple lines"
...@@ -38,242 +38,259 @@ msgstr "" ...@@ -38,242 +38,259 @@ msgstr ""
"Mindestens eine geplante Dauer (in Stunden) angeben. Wenn der AK mehrere " "Mindestens eine geplante Dauer (in Stunden) angeben. Wenn der AK mehrere "
"Slots haben soll, mehrere Zeilen verwenden" "Slots haben soll, mehrere Zeilen verwenden"
#: templates/AKSubmission/ak_detail.html:8 #: AKSubmission/templates/AKSubmission/ak_detail.html:10
#: templates/AKSubmission/ak_edit.html:8 templates/AKSubmission/ak_list.html:8 #: AKSubmission/templates/AKSubmission/ak_edit.html:8
#: templates/AKSubmission/ak_list.html:23 #: AKSubmission/templates/AKSubmission/ak_list.html:8
#: templates/AKSubmission/akowner_create_update.html:7 #: AKSubmission/templates/AKSubmission/akowner_create_update.html:7
#: templates/AKSubmission/akslot_add_update.html:7 #: AKSubmission/templates/AKSubmission/akslot_add_update.html:7
#: templates/AKSubmission/akslot_delete.html:7 #: AKSubmission/templates/AKSubmission/akslot_delete.html:7
#: templates/AKSubmission/submission_overview.html:6 #: AKSubmission/templates/AKSubmission/submission_overview.html:6
#: templates/AKSubmission/submission_overview.html:23 #: AKSubmission/templates/AKSubmission/submission_overview.html:23
#: templates/AKSubmission/submit_new.html:8 #: AKSubmission/templates/AKSubmission/submit_new.html:8
#: templates/AKSubmission/submit_new_wish.html:5 #: AKSubmission/templates/AKSubmission/submit_new_wish.html:5
msgid "AKs" msgid "AKs"
msgstr "AKs" msgstr "AKs"
#: templates/AKSubmission/ak_detail.html:8 #: AKSubmission/templates/AKSubmission/ak_detail.html:10
#: templates/AKSubmission/akslot_delete.html:31 #: AKSubmission/templates/AKSubmission/akslot_delete.html:31
msgid "AK" msgid "AK"
msgstr "AK" msgstr "AK"
#: templates/AKSubmission/ak_detail.html:13 #: AKSubmission/templates/AKSubmission/ak_detail.html:15
#: templates/AKSubmission/ak_edit.html:13 #: AKSubmission/templates/AKSubmission/ak_edit.html:13
#: templates/AKSubmission/ak_list.html:22 #: AKSubmission/templates/AKSubmission/ak_list.html:22
#: templates/AKSubmission/ak_list.html:27 #: AKSubmission/templates/AKSubmission/akowner_create_update.html:12
#: templates/AKSubmission/akowner_create_update.html:12 #: AKSubmission/templates/AKSubmission/akslot_add_update.html:12
#: templates/AKSubmission/akslot_add_update.html:12 #: AKSubmission/templates/AKSubmission/akslot_delete.html:12
#: templates/AKSubmission/akslot_delete.html:12 #: AKSubmission/templates/AKSubmission/submission_overview.html:6
#: templates/AKSubmission/submission_overview.html:6 #: AKSubmission/templates/AKSubmission/submission_overview.html:19
#: templates/AKSubmission/submission_overview.html:19 #: AKSubmission/templates/AKSubmission/submit_new.html:18
#: templates/AKSubmission/submit_new.html:18 #: AKSubmission/templates/AKSubmission/submit_new_wish.html:10
#: templates/AKSubmission/submit_new_wish.html:10
msgid "AK Submission" msgid "AK Submission"
msgstr "AK-Eintragung" msgstr "AK-Eintragung"
#: templates/AKSubmission/ak_detail.html:29 #: AKSubmission/templates/AKSubmission/ak_detail.html:37
#: templates/AKSubmission/ak_list_table.html:32 #: AKSubmission/templates/AKSubmission/ak_list_table.html:32
msgid "AK Wish" msgid "AK Wish"
msgstr "AK-Wunsch" msgstr "AK-Wunsch"
#: templates/AKSubmission/ak_detail.html:33 #: AKSubmission/templates/AKSubmission/ak_detail.html:41
#: templates/AKSubmission/ak_list_table.html:10 #: AKSubmission/templates/AKSubmission/ak_list_table.html:10
msgid "Who?" msgid "Who?"
msgstr "Wer?" msgstr "Wer?"
#: templates/AKSubmission/ak_detail.html:37 #: AKSubmission/templates/AKSubmission/ak_detail.html:45
#: templates/AKSubmission/ak_list_table.html:11 #: AKSubmission/templates/AKSubmission/ak_list_table.html:11
msgid "Category" msgid "Category"
msgstr "Kategorie" msgstr "Kategorie"
#: templates/AKSubmission/ak_detail.html:43 #: AKSubmission/templates/AKSubmission/ak_detail.html:51
msgid "Present this AK" msgid "Present this AK"
msgstr "Diesen AK vorstellen" msgstr "Diesen AK vorstellen"
#: templates/AKSubmission/ak_detail.html:47 #: AKSubmission/templates/AKSubmission/ak_detail.html:55
#: templates/AKSubmission/ak_list.html:35 #: AKSubmission/templates/AKSubmission/ak_list.html:35
#: templates/AKSubmission/ak_list_table.html:12 #: AKSubmission/templates/AKSubmission/ak_list_table.html:12
msgid "Tags" msgid "Tags"
msgstr "Tags" msgstr "Tags"
#: templates/AKSubmission/ak_detail.html:53 #: AKSubmission/templates/AKSubmission/ak_detail.html:61
msgid "Reso?" msgid "Reso?"
msgstr "Reso?" msgstr "Reso?"
#: templates/AKSubmission/ak_detail.html:67 #: AKSubmission/templates/AKSubmission/ak_detail.html:68
msgid "Requirements"
msgstr "Anforderungen"
#: AKSubmission/templates/AKSubmission/ak_detail.html:81
msgid "Conflicting AKs"
msgstr "AK Konflikte"
#: AKSubmission/templates/AKSubmission/ak_detail.html:89
msgid "Prerequisite AKs"
msgstr "AK Voraussetzungen"
#: AKSubmission/templates/AKSubmission/ak_detail.html:108
msgid "When?" msgid "When?"
msgstr "Wann?" msgstr "Wann?"
#: templates/AKSubmission/ak_detail.html:68 #: AKSubmission/templates/AKSubmission/ak_detail.html:109
#: templates/AKSubmission/akslot_delete.html:35 #: AKSubmission/templates/AKSubmission/akslot_delete.html:35
msgid "Duration" msgid "Duration"
msgstr "Dauer" msgstr "Dauer"
#: templates/AKSubmission/ak_detail.html:69 #: AKSubmission/templates/AKSubmission/ak_detail.html:110
msgid "Room" msgid "Room"
msgstr "Raum" msgstr "Raum"
#: templates/AKSubmission/ak_detail.html:95 #: AKSubmission/templates/AKSubmission/ak_detail.html:136
msgid "Add another slot" msgid "Add another slot"
msgstr "Einen neuen AK-Slot hinzufügen" msgstr "Einen neuen AK-Slot hinzufügen"
#: templates/AKSubmission/ak_edit.html:8 templates/AKSubmission/ak_edit.html:21 #: AKSubmission/templates/AKSubmission/ak_edit.html:8
#: AKSubmission/templates/AKSubmission/ak_edit.html:21
msgid "Edit AK" msgid "Edit AK"
msgstr "AK bearbeiten" msgstr "AK bearbeiten"
#: templates/AKSubmission/ak_edit.html:16 #: AKSubmission/templates/AKSubmission/ak_edit.html:16
msgid "Edit" msgid "Edit"
msgstr "Bearbeiten" msgstr "Bearbeiten"
#: templates/AKSubmission/ak_list.html:29 #: AKSubmission/templates/AKSubmission/ak_list.html:23
#: AKSubmission/templates/AKSubmission/ak_list.html:27
msgid "AK List"
msgstr "AK Liste"
#: AKSubmission/templates/AKSubmission/ak_list.html:29
msgid "Categories" msgid "Categories"
msgstr "Kategorie" msgstr "Kategorie"
#: templates/AKSubmission/ak_list_table.html:9 #: AKSubmission/templates/AKSubmission/ak_list_table.html:9
msgid "Name" msgid "Name"
msgstr "Name" msgstr "Name"
#: templates/AKSubmission/ak_list_table.html:23 #: AKSubmission/templates/AKSubmission/ak_list_table.html:23
msgid "present this AK" msgid "present this AK"
msgstr "Diesen AK vorstellen" msgstr "Diesen AK vorstellen"
#: templates/AKSubmission/ak_list_table.html:27 #: AKSubmission/templates/AKSubmission/ak_list_table.html:27
msgid "Reso" msgid "Reso"
msgstr "Reso" msgstr "Reso"
#: templates/AKSubmission/akowner_create_update.html:7 #: AKSubmission/templates/AKSubmission/akowner_create_update.html:7
#: templates/AKSubmission/akowner_create_update.html:13 #: AKSubmission/templates/AKSubmission/akowner_create_update.html:13
#: templates/AKSubmission/akowner_create_update.html:18 #: AKSubmission/templates/AKSubmission/akowner_create_update.html:18
msgid "AK Owner" msgid "AK Owner"
msgstr "AK-Leitung" msgstr "AK-Leitung"
#: templates/AKSubmission/akowner_create_update.html:24 #: AKSubmission/templates/AKSubmission/akowner_create_update.html:24
#: templates/AKSubmission/akslot_add_update.html:26 #: AKSubmission/templates/AKSubmission/akslot_add_update.html:26
#: templates/AKSubmission/submit_new.html:34 #: AKSubmission/templates/AKSubmission/submit_new.html:34
msgid "Reset" msgid "Reset"
msgstr "Zurücksetzen" msgstr "Zurücksetzen"
#: templates/AKSubmission/akowner_create_update.html:28 #: AKSubmission/templates/AKSubmission/akowner_create_update.html:28
#: templates/AKSubmission/akslot_add_update.html:30 #: AKSubmission/templates/AKSubmission/akslot_add_update.html:30
#: templates/AKSubmission/akslot_delete.html:42 #: AKSubmission/templates/AKSubmission/akslot_delete.html:42
#: templates/AKSubmission/submit_new.html:38 #: AKSubmission/templates/AKSubmission/submit_new.html:38
msgid "Cancel" msgid "Cancel"
msgstr "Abbrechen" msgstr "Abbrechen"
#: templates/AKSubmission/akowner_create_update.html:31 #: AKSubmission/templates/AKSubmission/akowner_create_update.html:31
#: templates/AKSubmission/akslot_add_update.html:33 #: AKSubmission/templates/AKSubmission/akslot_add_update.html:33
msgid "Continue" msgid "Continue"
msgstr "Weiter" msgstr "Weiter"
#: templates/AKSubmission/akslot_add_update.html:7 #: AKSubmission/templates/AKSubmission/akslot_add_update.html:7
#: templates/AKSubmission/akslot_add_update.html:15 #: AKSubmission/templates/AKSubmission/akslot_add_update.html:15
#: templates/AKSubmission/akslot_add_update.html:20 #: AKSubmission/templates/AKSubmission/akslot_add_update.html:20
#: templates/AKSubmission/akslot_delete.html:7 #: AKSubmission/templates/AKSubmission/akslot_delete.html:7
#: templates/AKSubmission/akslot_delete.html:15 #: AKSubmission/templates/AKSubmission/akslot_delete.html:15
#: templates/AKSubmission/akslot_delete.html:20 #: AKSubmission/templates/AKSubmission/akslot_delete.html:20
msgid "AK Duration(s)" msgid "AK Duration(s)"
msgstr "AK-Dauer(n)" msgstr "AK-Dauer(n)"
#: templates/AKSubmission/akslot_delete.html:25 #: AKSubmission/templates/AKSubmission/akslot_delete.html:25
msgid "Do you really want to delete this AK Slot?" msgid "Do you really want to delete this AK Slot?"
msgstr "Willst du diesen AK-Slot wirklich löschen?" msgstr "Willst du diesen AK-Slot wirklich löschen?"
#: templates/AKSubmission/akslot_delete.html:45 #: AKSubmission/templates/AKSubmission/akslot_delete.html:45
msgid "Confirm" msgid "Confirm"
msgstr "Bestätigen" msgstr "Bestätigen"
#: templates/AKSubmission/submission_base.html:13 #: AKSubmission/templates/AKSubmission/submission_base.html:13
msgid "Write to organizers of this event for questions and comments" msgid "Write to organizers of this event for questions and comments"
msgstr "Fragen oder Kommentare? Schreib den Orgas dieses Events eine Mail" msgstr "Fragen oder Kommentare? Schreib den Orgas dieses Events eine Mail"
#: templates/AKSubmission/submission_overview.html:27 #: AKSubmission/templates/AKSubmission/submission_overview.html:27
msgid "" msgid ""
"On this page you can see a list of current AKs, change them and add new ones." "On this page you can see a list of current AKs, change them and add new ones."
msgstr "" msgstr ""
"Auf dieser Seite kannst du eine Liste von aktuellen AKs sehen, diese " "Auf dieser Seite kannst du eine Liste von aktuellen AKs sehen, diese "
"bearbeiten und neue hinzufügen." "bearbeiten und neue hinzufügen."
#: templates/AKSubmission/submission_overview.html:34 #: AKSubmission/templates/AKSubmission/submission_overview.html:34
#: templates/AKSubmission/submit_new_wish.html:5 #: AKSubmission/templates/AKSubmission/submit_new_wish.html:5
#: templates/AKSubmission/submit_new_wish.html:11 #: AKSubmission/templates/AKSubmission/submit_new_wish.html:11
#: templates/AKSubmission/submit_new_wish.html:15 #: AKSubmission/templates/AKSubmission/submit_new_wish.html:15
msgid "New AK Wish" msgid "New AK Wish"
msgstr "Neuer AK-Wunsch" msgstr "Neuer AK-Wunsch"
#: templates/AKSubmission/submission_overview.html:38 #: AKSubmission/templates/AKSubmission/submission_overview.html:38
msgid "Who" msgid "Who"
msgstr "Wer" msgstr "Wer"
#: templates/AKSubmission/submission_overview.html:41 #: AKSubmission/templates/AKSubmission/submission_overview.html:41
msgid "I do not own AKs yet" msgid "I do not own AKs yet"
msgstr "Ich leite bisher keine AKs" msgstr "Ich leite bisher keine AKs"
#: templates/AKSubmission/submission_overview.html:49 #: AKSubmission/templates/AKSubmission/submission_overview.html:49
#: templates/AKSubmission/submit_new.html:8 #: AKSubmission/templates/AKSubmission/submit_new.html:8
#: templates/AKSubmission/submit_new.html:21 #: AKSubmission/templates/AKSubmission/submit_new.html:21
#: templates/AKSubmission/submit_new.html:28 #: AKSubmission/templates/AKSubmission/submit_new.html:28
msgid "New AK" msgid "New AK"
msgstr "Neuer AK" msgstr "Neuer AK"
#: templates/AKSubmission/submission_overview.html:55 #: AKSubmission/templates/AKSubmission/submission_overview.html:55
msgid "Edit Person Info" msgid "Edit Person Info"
msgstr "Personen-Info bearbeiten" msgstr "Personen-Info bearbeiten"
#: templates/AKSubmission/submission_overview.html:62 #: AKSubmission/templates/AKSubmission/submission_overview.html:62
msgid "This event is not active. You cannot add or change AKs" msgid "This event is not active. You cannot add or change AKs"
msgstr "" msgstr ""
"Dieses Event is nicht aktiv. Es können keine AKs hinzugefügt oder bearbeitet " "Dieses Event is nicht aktiv. Es können keine AKs hinzugefügt oder bearbeitet "
"werden" "werden"
#: templates/AKSubmission/submission_overview.html:66 #: AKSubmission/templates/AKSubmission/submission_overview.html:66
msgid "Current AKs" msgid "Current AKs"
msgstr "Aktuelle AKs" msgstr "Aktuelle AKs"
#: templates/AKSubmission/submit_new.html:41 #: AKSubmission/templates/AKSubmission/submit_new.html:41
msgid "Submit" msgid "Submit"
msgstr "Eintragen" msgstr "Eintragen"
#: views.py:43 #: AKSubmission/views.py:42
msgid "Wishes" msgid "Wishes"
msgstr "Wünsche" msgstr "Wünsche"
#: views.py:43 #: AKSubmission/views.py:42
msgid "AKs one would like to have" msgid "AKs one would like to have"
msgstr "" msgstr ""
"AKs die sich gewünscht wurden, aber bei denen noch nicht klar ist, wer sie " "AKs die sich gewünscht wurden, aber bei denen noch nicht klar ist, wer sie "
"macht. Falls du dir das vorstellen kannst, trag dich einfach ein" "macht. Falls du dir das vorstellen kannst, trag dich einfach ein"
#: views.py:104 #: AKSubmission/views.py:103
msgid "AK successfully created" msgid "AK successfully created"
msgstr "AK erfolgreich angelegt" msgstr "AK erfolgreich angelegt"
#: views.py:157 #: AKSubmission/views.py:156
msgid "AK successfully updated" msgid "AK successfully updated"
msgstr "AK erfolgreich aktualisiert" msgstr "AK erfolgreich aktualisiert"
#: views.py:215 #: AKSubmission/views.py:211
msgid "Person Info successfully updated" msgid "Person Info successfully updated"
msgstr "Personen-Info erfolgreich aktualisiert" msgstr "Personen-Info erfolgreich aktualisiert"
#: views.py:228 #: AKSubmission/views.py:224
msgid "No user selected" msgid "No user selected"
msgstr "Keine Person ausgewählt" msgstr "Keine Person ausgewählt"
#: views.py:254 #: AKSubmission/views.py:250
msgid "AK Slot successfully added" msgid "AK Slot successfully added"
msgstr "AK-Slot erfolgreich angelegt" msgstr "AK-Slot erfolgreich angelegt"
#: views.py:266 #: AKSubmission/views.py:264
msgid "You cannot edit a slot that has already been scheduled" msgid "You cannot edit a slot that has already been scheduled"
msgstr "Bereits geplante AK-Slots können nicht mehr bearbeitet werden" msgstr "Bereits geplante AK-Slots können nicht mehr bearbeitet werden"
#: views.py:276 #: AKSubmission/views.py:274
msgid "AK Slot successfully updated" msgid "AK Slot successfully updated"
msgstr "AK-Slot erfolgreich aktualisiert" msgstr "AK-Slot erfolgreich aktualisiert"
#: views.py:287 #: AKSubmission/views.py:287
msgid "You cannot delete a slot that has already been scheduled" msgid "You cannot delete a slot that has already been scheduled"
msgstr "Bereits geplante AK-Slots können nicht mehr gelöscht werden" msgstr "Bereits geplante AK-Slots können nicht mehr gelöscht werden"
#: views.py:297 #: AKSubmission/views.py:297
msgid "AK Slot successfully deleted" msgid "AK Slot successfully deleted"
msgstr "AK-Slot erfolgreich angelegt" msgstr "AK-Slot erfolgreich angelegt"
...@@ -20,11 +20,11 @@ ...@@ -20,11 +20,11 @@
{% include "AKSubmission/submission_breadcrumbs.html" %} {% include "AKSubmission/submission_breadcrumbs.html" %}
<li class="breadcrumb-item"><a <li class="breadcrumb-item"><a
href="{% url 'submit:submission_overview' event_slug=event.slug %}">{% trans "AK Submission" %}</a></li> href="{% url 'submit:submission_overview' event_slug=event.slug %}">{% trans "AK Submission" %}</a></li>
<li class="breadcrumb-item active">{% trans "AKs" %}</li> <li class="breadcrumb-item active">{% trans "AK List" %}</li>
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<h1>{{ event.name }}: {% trans "AK Submission" %}</h1> <h1>{{ event.name }}: {% trans "AK List" %}</h1>
<b>{% trans 'Categories' %}:</b> <b>{% trans 'Categories' %}:</b>
{% category_list categories event.slug %} {% category_list categories event.slug %}
......
...@@ -8,7 +8,7 @@ msgid "" ...@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-10-29 14:50+0000\n" "POT-Creation-Date: 2020-05-10 16:22+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
...@@ -18,10 +18,10 @@ msgstr "" ...@@ -18,10 +18,10 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: templates/base.html:73 #: templates/base.html:76
msgid "Impress" msgid "Impress"
msgstr "Impressum" msgstr "Impressum"
#: templates/base.html:74 #: templates/base.html:79
msgid "This software is open source" msgid "This software is open source"
msgstr "Diese Software ist Open Source" msgstr "Diese Software ist Open Source"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment