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

Merge branch 'feature-event-public' into 'master'

Introduce hidden events

See merge request kif/akplanning!52
parents e222a729 4e940afd
No related branches found
No related tags found
1 merge request!52Introduce hidden events
Pipeline #5731 passed
......@@ -14,9 +14,10 @@ class DashboardView(TemplateView):
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context['events'] = Event.objects.all()
context['events'] = Event.objects.filter(public=True)
return context
class DashboardEventView(DetailView):
template_name = 'AKDashboard/dashboard_event.html'
context_object_name = 'event'
......
......@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-21 05:33+0000\n"
"POT-Creation-Date: 2020-07-12 16:17+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......@@ -56,15 +56,15 @@ msgstr "Die eingegebene Verfügbarkeit enthält ein ungültiges Datum."
msgid "Please fill in your availabilities!"
msgstr "Bitte Verfügbarkeiten eintragen!"
#: AKModel/availability/models.py:38 AKModel/models.py:41 AKModel/models.py:70
#: AKModel/models.py:122 AKModel/models.py:141 AKModel/models.py:173
#: AKModel/models.py:227 AKModel/models.py:273 AKModel/models.py:303
#: AKModel/availability/models.py:38 AKModel/models.py:44 AKModel/models.py:73
#: AKModel/models.py:125 AKModel/models.py:144 AKModel/models.py:176
#: AKModel/models.py:230 AKModel/models.py:276 AKModel/models.py:306
msgid "Event"
msgstr "Event"
#: AKModel/availability/models.py:39 AKModel/models.py:71 AKModel/models.py:123
#: AKModel/models.py:142 AKModel/models.py:174 AKModel/models.py:228
#: AKModel/models.py:274 AKModel/models.py:304
#: AKModel/availability/models.py:39 AKModel/models.py:74 AKModel/models.py:126
#: AKModel/models.py:145 AKModel/models.py:177 AKModel/models.py:231
#: AKModel/models.py:277 AKModel/models.py:307
msgid "Associated event"
msgstr "Zugehöriges Event"
......@@ -76,8 +76,8 @@ msgstr "Person"
msgid "Person whose availability this is"
msgstr "Person deren Verfügbarkeit hier abgebildet wird"
#: AKModel/availability/models.py:56 AKModel/models.py:277
#: AKModel/models.py:296
#: AKModel/availability/models.py:56 AKModel/models.py:280
#: AKModel/models.py:299
msgid "Room"
msgstr "Raum"
......@@ -85,8 +85,8 @@ msgstr "Raum"
msgid "Room whose availability this is"
msgstr "Raum dessen Verfügbarkeit hier abgebildet wird"
#: AKModel/availability/models.py:65 AKModel/models.py:233
#: AKModel/models.py:295
#: AKModel/availability/models.py:65 AKModel/models.py:236
#: AKModel/models.py:298
msgid "AK"
msgstr "AK"
......@@ -94,7 +94,7 @@ msgstr "AK"
msgid "AK whose availability this is"
msgstr "Verfügbarkeiten"
#: AKModel/availability/models.py:74 AKModel/models.py:126
#: AKModel/availability/models.py:74 AKModel/models.py:129
msgid "AK Category"
msgstr "AK Kategorie"
......@@ -106,9 +106,9 @@ msgstr "AK Kategorie dessen Verfügbarkeit hier abgebildet wird"
msgid "Availabilities"
msgstr "Verfügbarkeiten"
#: AKModel/models.py:16 AKModel/models.py:117 AKModel/models.py:138
#: AKModel/models.py:157 AKModel/models.py:171 AKModel/models.py:189
#: AKModel/models.py:266
#: AKModel/models.py:16 AKModel/models.py:120 AKModel/models.py:141
#: AKModel/models.py:160 AKModel/models.py:174 AKModel/models.py:192
#: AKModel/models.py:269
msgid "Name"
msgstr "Name"
......@@ -159,42 +159,50 @@ msgid "Time the event ends"
msgstr "Zeit zu der das Event endet"
#: AKModel/models.py:28
msgid "Public event"
msgstr "Öffentliches Event"
#: AKModel/models.py:29
msgid "Show this event on overview page."
msgstr "Zeige dieses Event auf der Übersichtseite an"
#: AKModel/models.py:31
msgid "Active State"
msgstr "Aktiver Status"
#: AKModel/models.py:28
#: AKModel/models.py:31
msgid "Marks currently active events"
msgstr "Markiert aktuell aktive Events"
#: AKModel/models.py:29
#: AKModel/models.py:32
msgid "Plan Hidden"
msgstr "Plan verborgen"
#: AKModel/models.py:29
#: AKModel/models.py:32
msgid "Hides plan for non-staff users"
msgstr "Verbirgt den Plan für Nutzer*innen ohne erweiterte Rechte"
#: AKModel/models.py:32
#: AKModel/models.py:35
msgid "Base URL"
msgstr "URL-Prefix"
#: AKModel/models.py:32
#: AKModel/models.py:35
msgid "Prefix for wiki link construction"
msgstr "Prefix für die automatische Generierung von Wiki-Links"
#: AKModel/models.py:33
#: AKModel/models.py:36
msgid "Default Slot Length"
msgstr "Standardslotlänge"
#: AKModel/models.py:34
#: AKModel/models.py:37
msgid "Default length in hours that is assumed for AKs in this event."
msgstr "Standardlänge von Slots (in Stunden) für dieses Event"
#: AKModel/models.py:36
#: AKModel/models.py:39
msgid "Contact email address"
msgstr "E-Mail Kontaktadresse"
#: AKModel/models.py:38
#: AKModel/models.py:41
msgid ""
"An email address that is displayed on every page and can be used for all "
"kinds of questions"
......@@ -202,216 +210,216 @@ msgstr ""
"Eine Mailadresse die auf jeder Seite angezeigt wird und für alle Arten von "
"Fragen genutzt werden kann"
#: AKModel/models.py:42
#: AKModel/models.py:45
msgid "Events"
msgstr "Events"
#: AKModel/models.py:65
#: AKModel/models.py:68
msgid "Nickname"
msgstr "Spitzname"
#: AKModel/models.py:65
#: AKModel/models.py:68
msgid "Name to identify an AK owner by"
msgstr "Name durch den eine AK Leitung identifiziert wird"
#: AKModel/models.py:66
#: AKModel/models.py:69
msgid "Slug"
msgstr "Slug"
#: AKModel/models.py:66
#: AKModel/models.py:69
msgid "Slug for URL generation"
msgstr "Slug für URL-Generierung"
#: AKModel/models.py:67
#: AKModel/models.py:70
msgid "Institution"
msgstr "Instutution"
#: AKModel/models.py:67
#: AKModel/models.py:70
msgid "Uni etc."
msgstr "Universität o.ä."
#: AKModel/models.py:68 AKModel/models.py:198
#: AKModel/models.py:71 AKModel/models.py:201
msgid "Web Link"
msgstr "Internet Link"
#: AKModel/models.py:68
#: AKModel/models.py:71
msgid "Link to Homepage"
msgstr "Link zu Homepage oder Webseite"
#: AKModel/models.py:74
#: AKModel/models.py:77
msgid "AK Owner"
msgstr "AK Leitung"
#: AKModel/models.py:75
#: AKModel/models.py:78
msgid "AK Owners"
msgstr "AK Leitungen"
#: AKModel/models.py:117
#: AKModel/models.py:120
msgid "Name of the AK Category"
msgstr "Name des AK Kategorie"
#: AKModel/models.py:118 AKModel/models.py:139
#: AKModel/models.py:121 AKModel/models.py:142
msgid "Color"
msgstr "Farbe"
#: AKModel/models.py:118 AKModel/models.py:139
#: AKModel/models.py:121 AKModel/models.py:142
msgid "Color for displaying"
msgstr "Farbe für die Anzeige"
#: AKModel/models.py:119 AKModel/models.py:192
#: AKModel/models.py:122 AKModel/models.py:195
msgid "Description"
msgstr "Beschreibung"
#: AKModel/models.py:120
#: AKModel/models.py:123
msgid "Short description of this AK Category"
msgstr "Beschreibung der AK-Kategorie"
#: AKModel/models.py:127
#: AKModel/models.py:130
msgid "AK Categories"
msgstr "AK Kategorien"
#: AKModel/models.py:138
#: AKModel/models.py:141
msgid "Name of the AK Track"
msgstr "Name des AK Tracks"
#: AKModel/models.py:145
#: AKModel/models.py:148
msgid "AK Track"
msgstr "AK Track"
#: AKModel/models.py:146
#: AKModel/models.py:149
msgid "AK Tracks"
msgstr "AK Tracks"
#: AKModel/models.py:157
#: AKModel/models.py:160
msgid "Name of the AK Tag"
msgstr "Name das AK Tags"
#: AKModel/models.py:160
#: AKModel/models.py:163
msgid "AK Tag"
msgstr "AK Tag"
#: AKModel/models.py:161
#: AKModel/models.py:164
msgid "AK Tags"
msgstr "AK Tags"
#: AKModel/models.py:171
#: AKModel/models.py:174
msgid "Name of the Requirement"
msgstr "Name der Anforderung"
#: AKModel/models.py:177
#: AKModel/models.py:180
msgid "AK Requirement"
msgstr "AK Anforderung"
#: AKModel/models.py:178
#: AKModel/models.py:181
msgid "AK Requirements"
msgstr "AK Anforderungen"
#: AKModel/models.py:189
#: AKModel/models.py:192
msgid "Name of the AK"
msgstr "Name des AKs"
#: AKModel/models.py:190
#: AKModel/models.py:193
msgid "Short Name"
msgstr "Kurzer Name"
#: AKModel/models.py:191
#: AKModel/models.py:194
msgid "Name displayed in the schedule"
msgstr "Name zur Anzeige im AK Plan"
#: AKModel/models.py:192
#: AKModel/models.py:195
msgid "Description of the AK"
msgstr "Beschreibung des AKs"
#: AKModel/models.py:194
#: AKModel/models.py:197
msgid "Owners"
msgstr "Leitungen"
#: AKModel/models.py:195
#: AKModel/models.py:198
msgid "Those organizing the AK"
msgstr "Menschen, die den AK organisieren und halten"
#: AKModel/models.py:198
#: AKModel/models.py:201
msgid "Link to wiki page"
msgstr "Link zur Wiki Seite"
#: AKModel/models.py:199
#: AKModel/models.py:202
msgid "Protocol Link"
msgstr "Protokolllink"
#: AKModel/models.py:199
#: AKModel/models.py:202
msgid "Link to protocol"
msgstr "Link zum Protokoll"
#: AKModel/models.py:201
#: AKModel/models.py:204
msgid "Category"
msgstr "Kategorie"
#: AKModel/models.py:202
#: AKModel/models.py:205
msgid "Category of the AK"
msgstr "Kategorie des AKs"
#: AKModel/models.py:203
#: AKModel/models.py:206
msgid "Tags"
msgstr "Tags"
#: AKModel/models.py:203
#: AKModel/models.py:206
msgid "Tags provided by owners"
msgstr "Tags, die durch die AK Leitung vergeben wurden"
#: AKModel/models.py:204
#: AKModel/models.py:207
msgid "Track"
msgstr "Track"
#: AKModel/models.py:205
#: AKModel/models.py:208
msgid "Track the AK belongs to"
msgstr "Track zu dem der AK gehört"
#: AKModel/models.py:207
#: AKModel/models.py:210
msgid "Resolution Intention"
msgstr "Resolutionsabsicht"
#: AKModel/models.py:208
#: AKModel/models.py:211
msgid "Intends to submit a resolution"
msgstr "Beabsichtigt eine Resolution einzureichen"
#: AKModel/models.py:209
#: AKModel/models.py:212
msgid "Present this AK"
msgstr "AK Präsentieren"
#: AKModel/models.py:210
#: AKModel/models.py:213
msgid "Present results of this AK"
msgstr "Die Ergebnisse dieses AKs vorstellen"
#: AKModel/models.py:212 AKModel/templates/admin/AKModel/status.html:76
#: AKModel/models.py:215 AKModel/templates/admin/AKModel/status.html:76
msgid "Requirements"
msgstr "Anforderungen"
#: AKModel/models.py:213
#: AKModel/models.py:216
msgid "AK's Requirements"
msgstr "Anforderungen des AKs"
#: AKModel/models.py:215
#: AKModel/models.py:218
msgid "Conflicting AKs"
msgstr "AK Konflikte"
#: AKModel/models.py:216
#: AKModel/models.py:219
msgid "AKs that conflict and thus must not take place at the same time"
msgstr ""
"AKs, die Konflikte haben und deshalb nicht gleichzeitig stattfinden dürfen"
#: AKModel/models.py:217
#: AKModel/models.py:220
msgid "Prerequisite AKs"
msgstr "Vorausgesetzte AKs"
#: AKModel/models.py:218
#: AKModel/models.py:221
msgid "AKs that should precede this AK in the schedule"
msgstr "AKS die im AK Plan vor diesem AK stattfinden müssen"
#: AKModel/models.py:220
#: AKModel/models.py:223
msgid "Organizational Notes"
msgstr "Notizen zur Organisation"
#: AKModel/models.py:221
#: AKModel/models.py:224
msgid ""
"Notes to organizers. These are public. For private notes, please send an e-"
"mail."
......@@ -419,96 +427,96 @@ msgstr ""
"Notizen an die Organisator*innen. Diese sind öffentlich, für private "
"Anmerkungen bitte eine E-Mail schicken."
#: AKModel/models.py:223
#: AKModel/models.py:226
msgid "Interest"
msgstr "Interesse"
#: AKModel/models.py:223
#: AKModel/models.py:226
msgid "Expected number of people"
msgstr "Erwartete Personenzahl"
#: AKModel/models.py:224
#: AKModel/models.py:227
msgid "Interest Counter"
msgstr "Interessenszähler"
#: AKModel/models.py:225
#: AKModel/models.py:228
msgid "People who have indicated interest online"
msgstr "Anzahl Personen, die online Interesse bekundet haben"
#: AKModel/models.py:234 AKModel/templates/admin/AKModel/status.html:47
#: AKModel/models.py:237 AKModel/templates/admin/AKModel/status.html:47
#: AKModel/templates/admin/AKModel/status.html:54
msgid "AKs"
msgstr "AKs"
#: AKModel/models.py:266
#: AKModel/models.py:269
msgid "Name or number of the room"
msgstr "Name oder Nummer des Raums"
#: AKModel/models.py:267
#: AKModel/models.py:270
msgid "Location"
msgstr "Ort"
#: AKModel/models.py:268
#: AKModel/models.py:271
msgid "Name or number of the location"
msgstr "Name oder Nummer des Ortes"
#: AKModel/models.py:269
#: AKModel/models.py:272
msgid "Capacity"
msgstr "Kapazität"
#: AKModel/models.py:269
#: AKModel/models.py:272
msgid "Maximum number of people"
msgstr "Maximale Personenzahl"
#: AKModel/models.py:270
#: AKModel/models.py:273
msgid "Properties"
msgstr "Eigenschaften"
#: AKModel/models.py:271
#: AKModel/models.py:274
msgid "AK requirements fulfilled by the room"
msgstr "AK Anforderungen, die dieser Raum erfüllt"
#: AKModel/models.py:278 AKModel/templates/admin/AKModel/status.html:31
#: AKModel/models.py:281 AKModel/templates/admin/AKModel/status.html:31
msgid "Rooms"
msgstr "Räume"
#: AKModel/models.py:295
#: AKModel/models.py:298
msgid "AK being mapped"
msgstr "AK, der zugeordnet wird"
#: AKModel/models.py:297
#: AKModel/models.py:300
msgid "Room the AK will take place in"
msgstr "Raum in dem der AK stattfindet"
#: AKModel/models.py:298
#: AKModel/models.py:301
msgid "Slot Begin"
msgstr "Beginn des Slots"
#: AKModel/models.py:298
#: AKModel/models.py:301
msgid "Time and date the slot begins"
msgstr "Zeit und Datum zu der der AK beginnt"
#: AKModel/models.py:300
#: AKModel/models.py:303
msgid "Duration"
msgstr "Dauer"
#: AKModel/models.py:301
#: AKModel/models.py:304
msgid "Length in hours"
msgstr "Länge in Stunden"
#: AKModel/models.py:306
#: AKModel/models.py:309
msgid "Last update"
msgstr "Letzte Aktualisierung"
#: AKModel/models.py:309
#: AKModel/models.py:312
msgid "AK Slot"
msgstr "AK Slot"
#: AKModel/models.py:310
#: AKModel/models.py:313
msgid "AK Slots"
msgstr "AK Slot"
#: AKModel/models.py:324
#: AKModel/models.py:327
msgid "Not scheduled yet"
msgstr "Noch nicht geplant"
......
# Generated by Django 3.0.6 on 2020-07-12 15:54
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('AKModel', '0036_protocol_link'),
]
operations = [
migrations.AddField(
model_name='event',
name='public',
field=models.BooleanField(default=True, help_text='Show this event on overview page.', verbose_name='Public event'),
),
]
......@@ -25,6 +25,9 @@ class Event(models.Model):
start = models.DateTimeField(verbose_name=_('Start'), help_text=_('Time the event begins'))
end = models.DateTimeField(verbose_name=_('End'), help_text=_('Time the event ends'))
public = models.BooleanField(verbose_name=_('Public event'), default=True,
help_text=_('Show this event on overview page.'))
active = models.BooleanField(verbose_name=_('Active State'), help_text=_('Marks currently active events'))
plan_hidden = models.BooleanField(verbose_name=_('Plan Hidden'), help_text=_('Hides plan for non-staff users'),
default=True)
......
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-24 17:46+0000\n"
"POT-Creation-Date: 2020-07-12 16:40+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......@@ -17,7 +17,13 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: AKPlan/templates/AKPlan/plan_base.html:24
#: AKPlan/templates/AKPlan/plan_base.html:9
#, fuzzy
#| msgid "AK Plan"
msgid "Plan"
msgstr "Plan"
#: AKPlan/templates/AKPlan/plan_base.html:29
msgid "Write to organizers of this event for questions and comments"
msgstr "Fragen oder Kommentare? Schreib den Orgas dieses Events eine Mail"
......
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-24 17:46+0000\n"
"POT-Creation-Date: 2020-07-12 16:17+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......@@ -42,13 +42,14 @@ msgstr ""
#: AKSubmission/templates/AKSubmission/ak_edit.html:8
#: AKSubmission/templates/AKSubmission/ak_history.html:11
#: AKSubmission/templates/AKSubmission/ak_overview.html:8
#: AKSubmission/templates/AKSubmission/ak_overview.html:33
#: AKSubmission/templates/AKSubmission/ak_overview.html:12
#: AKSubmission/templates/AKSubmission/ak_overview.html:38
#: AKSubmission/templates/AKSubmission/akowner_create_update.html:7
#: AKSubmission/templates/AKSubmission/akslot_add_update.html:7
#: AKSubmission/templates/AKSubmission/akslot_delete.html:7
#: AKSubmission/templates/AKSubmission/submission_not_configured.html:7
#: AKSubmission/templates/AKSubmission/submission_overview.html:7
#: AKSubmission/templates/AKSubmission/submission_overview.html:38
#: AKSubmission/templates/AKSubmission/submission_overview.html:43
#: AKSubmission/templates/AKSubmission/submit_new.html:8
#: AKSubmission/templates/AKSubmission/submit_new_wish.html:7
msgid "AKs"
......@@ -60,141 +61,142 @@ msgstr "AKs"
msgid "AK"
msgstr "AK"
#: AKSubmission/templates/AKSubmission/ak_detail.html:16
#: AKSubmission/templates/AKSubmission/ak_detail.html:22
#: AKSubmission/templates/AKSubmission/ak_edit.html:13
#: AKSubmission/templates/AKSubmission/ak_history.html:16
#: AKSubmission/templates/AKSubmission/ak_overview.html:22
#: AKSubmission/templates/AKSubmission/ak_overview.html:27
#: AKSubmission/templates/AKSubmission/akowner_create_update.html:12
#: AKSubmission/templates/AKSubmission/akslot_add_update.html:12
#: AKSubmission/templates/AKSubmission/akslot_delete.html:12
#: AKSubmission/templates/AKSubmission/submission_not_configured.html:7
#: AKSubmission/templates/AKSubmission/submission_not_configured.html:11
#: AKSubmission/templates/AKSubmission/submission_overview.html:7
#: AKSubmission/templates/AKSubmission/submission_overview.html:34
#: AKSubmission/templates/AKSubmission/submission_overview.html:11
#: AKSubmission/templates/AKSubmission/submission_overview.html:39
#: AKSubmission/templates/AKSubmission/submit_new.html:25
#: AKSubmission/templates/AKSubmission/submit_new_wish.html:22
#: AKSubmission/templates/AKSubmission/submit_new_wish.html:24
msgid "AK Submission"
msgstr "AK-Eintragung"
#: AKSubmission/templates/AKSubmission/ak_detail.html:31
#: AKSubmission/templates/AKSubmission/ak_detail.html:37
msgid "Interest"
msgstr "Interesse"
#: AKSubmission/templates/AKSubmission/ak_detail.html:34
#: AKSubmission/templates/AKSubmission/ak_detail.html:40
msgid "Show Interest"
msgstr "Interesse bekunden"
#: AKSubmission/templates/AKSubmission/ak_detail.html:40
#: AKSubmission/templates/AKSubmission/ak_detail.html:46
#: AKSubmission/templates/AKSubmission/ak_table.html:48
msgid "Open external link"
msgstr "Externen Link öffnen"
#: AKSubmission/templates/AKSubmission/ak_detail.html:45
#: AKSubmission/templates/AKSubmission/ak_detail.html:51
msgid "Open protocol link"
msgstr "Protokolllink öffnen"
#: AKSubmission/templates/AKSubmission/ak_detail.html:50
#: AKSubmission/templates/AKSubmission/ak_detail.html:56
#: AKSubmission/templates/AKSubmission/ak_history.html:19
#: AKSubmission/templates/AKSubmission/ak_history.html:31
msgid "History"
msgstr "Versionsgeschichte"
#: AKSubmission/templates/AKSubmission/ak_detail.html:53
#: AKSubmission/templates/AKSubmission/ak_detail.html:168
#: AKSubmission/templates/AKSubmission/ak_detail.html:59
#: AKSubmission/templates/AKSubmission/ak_detail.html:174
#: AKSubmission/templates/AKSubmission/ak_edit.html:16
#: AKSubmission/templates/AKSubmission/ak_table.html:53
msgid "Edit"
msgstr "Bearbeiten"
#: AKSubmission/templates/AKSubmission/ak_detail.html:58
#: AKSubmission/templates/AKSubmission/ak_detail.html:64
#: AKSubmission/templates/AKSubmission/ak_history.html:31
#: AKSubmission/templates/AKSubmission/ak_table.html:35
msgid "AK Wish"
msgstr "AK-Wunsch"
#: AKSubmission/templates/AKSubmission/ak_detail.html:62
#: AKSubmission/templates/AKSubmission/ak_detail.html:68
#: AKSubmission/templates/AKSubmission/ak_table.html:10
msgid "Who?"
msgstr "Wer?"
#: AKSubmission/templates/AKSubmission/ak_detail.html:68
#: AKSubmission/templates/AKSubmission/ak_detail.html:74
#: AKSubmission/templates/AKSubmission/ak_history.html:36
#: AKSubmission/templates/AKSubmission/ak_table.html:11
msgid "Category"
msgstr "Kategorie"
#: AKSubmission/templates/AKSubmission/ak_detail.html:75
#: AKSubmission/templates/AKSubmission/ak_detail.html:81
#: AKSubmission/templates/AKSubmission/ak_history.html:37
msgid "Track"
msgstr "Track"
#: AKSubmission/templates/AKSubmission/ak_detail.html:80
#: AKSubmission/templates/AKSubmission/ak_detail.html:86
msgid "Present this AK"
msgstr "Diesen AK vorstellen"
#: AKSubmission/templates/AKSubmission/ak_detail.html:84
#: AKSubmission/templates/AKSubmission/ak_detail.html:90
#: AKSubmission/templates/AKSubmission/ak_table.html:12
msgid "Tags"
msgstr "Tags"
#: AKSubmission/templates/AKSubmission/ak_detail.html:90
#: AKSubmission/templates/AKSubmission/ak_detail.html:96
msgid "Reso?"
msgstr "Reso?"
#: AKSubmission/templates/AKSubmission/ak_detail.html:97
#: AKSubmission/templates/AKSubmission/ak_detail.html:103
msgid "Requirements"
msgstr "Anforderungen"
#: AKSubmission/templates/AKSubmission/ak_detail.html:110
#: AKSubmission/templates/AKSubmission/ak_detail.html:116
msgid "Conflicting AKs"
msgstr "AK Konflikte"
#: AKSubmission/templates/AKSubmission/ak_detail.html:118
#: AKSubmission/templates/AKSubmission/ak_detail.html:124
msgid "Prerequisite AKs"
msgstr "AK Voraussetzungen"
#: AKSubmission/templates/AKSubmission/ak_detail.html:126
#: AKSubmission/templates/AKSubmission/ak_detail.html:132
msgid "Notes"
msgstr "Notizen"
#: AKSubmission/templates/AKSubmission/ak_detail.html:143
#: AKSubmission/templates/AKSubmission/ak_detail.html:149
#: AKSubmission/templates/AKSubmission/akslot_delete.html:35
msgid "Duration"
msgstr "Dauer"
#: AKSubmission/templates/AKSubmission/ak_detail.html:145
#: AKSubmission/templates/AKSubmission/ak_detail.html:151
msgid "When?"
msgstr "Wann?"
#: AKSubmission/templates/AKSubmission/ak_detail.html:146
#: AKSubmission/templates/AKSubmission/ak_detail.html:152
msgid "Room"
msgstr "Raum"
#: AKSubmission/templates/AKSubmission/ak_detail.html:171
#: AKSubmission/templates/AKSubmission/ak_detail.html:177
msgid "Delete"
msgstr "Löschen"
#: AKSubmission/templates/AKSubmission/ak_detail.html:176
#: AKSubmission/templates/AKSubmission/ak_detail.html:182
msgid "Go to virtual room"
msgstr "Zum virtuellen Raum"
#: AKSubmission/templates/AKSubmission/ak_detail.html:182
#: AKSubmission/templates/AKSubmission/ak_detail.html:188
msgid "Schedule"
msgstr "Schedule"
#: AKSubmission/templates/AKSubmission/ak_detail.html:194
#: AKSubmission/templates/AKSubmission/ak_detail.html:200
msgid "Add another slot"
msgstr "Einen neuen AK-Slot hinzufügen"
#: AKSubmission/templates/AKSubmission/ak_detail.html:198
#: AKSubmission/templates/AKSubmission/ak_detail.html:204
msgid "Possible Times"
msgstr "Mögliche Zeiten"
#: AKSubmission/templates/AKSubmission/ak_detail.html:202
#: AKSubmission/templates/AKSubmission/ak_detail.html:208
msgid "Start"
msgstr "Start"
#: AKSubmission/templates/AKSubmission/ak_detail.html:203
#: AKSubmission/templates/AKSubmission/ak_detail.html:209
msgid "End"
msgstr "Ende"
......@@ -234,11 +236,11 @@ msgstr "Alle AKs"
msgid "Tracks"
msgstr "Tracks"
#: AKSubmission/templates/AKSubmission/ak_overview.html:23
#: AKSubmission/templates/AKSubmission/ak_overview.html:28
msgid "AK List"
msgstr "AK-Liste"
#: AKSubmission/templates/AKSubmission/ak_overview.html:29
#: AKSubmission/templates/AKSubmission/ak_overview.html:34
msgid "Add AK"
msgstr "AK hinzufügen"
......@@ -303,40 +305,40 @@ msgstr ""
"Das System ist bisher nicht für Eintragen und Anzeige von AKs konfiguriert. "
"Bitte versuche es später wieder."
#: AKSubmission/templates/AKSubmission/submission_overview.html:42
#: AKSubmission/templates/AKSubmission/submission_overview.html:47
msgid ""
"On this page you can see a list of current AKs, change them and add new ones."
msgstr ""
"Auf dieser Seite kannst du eine Liste von aktuellen AKs sehen, diese "
"bearbeiten und neue hinzufügen."
#: AKSubmission/templates/AKSubmission/submission_overview.html:49
#: AKSubmission/templates/AKSubmission/submission_overview.html:54
#: AKSubmission/templates/AKSubmission/submit_new_wish.html:7
#: AKSubmission/templates/AKSubmission/submit_new_wish.html:23
#: AKSubmission/templates/AKSubmission/submit_new_wish.html:27
#: AKSubmission/templates/AKSubmission/submit_new_wish.html:25
#: AKSubmission/templates/AKSubmission/submit_new_wish.html:29
msgid "New AK Wish"
msgstr "Neuer AK-Wunsch"
#: AKSubmission/templates/AKSubmission/submission_overview.html:53
#: AKSubmission/templates/AKSubmission/submission_overview.html:58
msgid "Who"
msgstr "Wer"
#: AKSubmission/templates/AKSubmission/submission_overview.html:56
#: AKSubmission/templates/AKSubmission/submission_overview.html:61
msgid "I do not own AKs yet"
msgstr "Ich leite bisher keine AKs"
#: AKSubmission/templates/AKSubmission/submission_overview.html:64
#: AKSubmission/templates/AKSubmission/submission_overview.html:69
#: AKSubmission/templates/AKSubmission/submit_new.html:8
#: AKSubmission/templates/AKSubmission/submit_new.html:28
#: AKSubmission/templates/AKSubmission/submit_new.html:35
msgid "New AK"
msgstr "Neuer AK"
#: AKSubmission/templates/AKSubmission/submission_overview.html:70
#: AKSubmission/templates/AKSubmission/submission_overview.html:75
msgid "Edit Person Info"
msgstr "Personen-Info bearbeiten"
#: AKSubmission/templates/AKSubmission/submission_overview.html:77
#: AKSubmission/templates/AKSubmission/submission_overview.html:82
msgid "This event is not active. You cannot add or change AKs"
msgstr ""
"Dieses Event is nicht aktiv. Es können keine AKs hinzugefügt oder bearbeitet "
......
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