From a7b0dede1baa924312e4803907d28aeaf26f7725 Mon Sep 17 00:00:00 2001
From: Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de>
Date: Wed, 12 Jan 2022 11:31:01 +0000
Subject: [PATCH] rework and fix handling of JS translations, re #5

---
 Makefile                                      |    36 +-
 .../VueGettextSplitTranslations.php           |    35 -
 cli/studip                                    |     1 -
 locale/compileTranslation                     |    14 -
 .../de/LC_MESSAGES/js-resources.json          |     0
 locale/en/LC_MESSAGES/js-resources.json       |     1 +
 locale/en/LC_MESSAGES/js-resources.po         |  3274 +
 locale/en/LC_MESSAGES/studip.mo.old           |   Bin 939906 -> 0 bytes
 locale/en/LC_MESSAGES/studip.po.old           | 54867 ----------------
 locale/extractTranslationStrings              |    17 -
 resources/assets/javascripts/chunks/vue.js    |     1 +
 resources/assets/javascripts/lib/gettext.js   |     5 +-
 resources/locales/en_GB.json                  |   185 -
 13 files changed, 3307 insertions(+), 55129 deletions(-)
 delete mode 100644 cli/Commands/Translations/VueGettextSplitTranslations.php
 delete mode 100755 locale/compileTranslation
 rename resources/locales/de_DE.json => locale/de/LC_MESSAGES/js-resources.json (100%)
 create mode 100644 locale/en/LC_MESSAGES/js-resources.json
 create mode 100644 locale/en/LC_MESSAGES/js-resources.po
 delete mode 100644 locale/en/LC_MESSAGES/studip.mo.old
 delete mode 100644 locale/en/LC_MESSAGES/studip.po.old
 delete mode 100755 locale/extractTranslationStrings
 delete mode 100644 resources/locales/en_GB.json

diff --git a/Makefile b/Makefile
index d25d6fa2566..82048500b31 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,11 @@
 CODECEPT  = composer/bin/codecept
-SVGO = node_modules/svgo/bin/svgo
+CATALOGS  = locale/en/LC_MESSAGES/studip.mo locale/en/LC_MESSAGES/js-resources.json
+NPM_BIN   = $(shell npm bin)
 RESOURCES = $(shell find resources -type f)
 
+PHP_SOURCES = $(shell find app config lib public templates -name '*.php' \( ! -path 'public/plugins_packages/*' -o -path 'public/plugins_packages/core/*' \))
+VUE_SOURCES = $(shell find resources -name '*.js' -o -name '*.vue')
+
 # build all needed files
 build: composer webpack-prod
 
@@ -75,14 +79,30 @@ test-jsonapi: $(CODECEPT)
 test-unit: $(CODECEPT)
 	$(CODECEPT) run unit
 
+catalogs: npm $(CATALOGS)
+
 optimize-icons: npm
-	$(SVGO) --config=config/svgo.config.js -f public/assets/images/icons/black -r
-	$(SVGO) --config=config/svgo.config.js -f public/assets/images/icons/blue -r
-	$(SVGO) --config=config/svgo.config.js -f public/assets/images/icons/green -r
-	$(SVGO) --config=config/svgo.config.js -f public/assets/images/icons/grey -r
-	$(SVGO) --config=config/svgo.config.js -f public/assets/images/icons/red -r
-	$(SVGO) --config=config/svgo.config.js -f public/assets/images/icons/white -r
-	$(SVGO) --config=config/svgo.config.js -f public/assets/images/icons/yellow -r
+	find public/assets/images/icons -type f | xargs -P0 $(NPM_BIN)/svgo -q --config=config/svgo.config.js
+
+# default rules for gettext handling
+%.pot: $(PHP_SOURCES)
+	xgettext -o $@ --from-code=UTF-8 $(PHP_SOURCES)
+
+%.po: %.pot
+	msgmerge -qU $@ $<
+
+%.mo: %.po
+	msgfmt -o $@ $<
+
+js-%.pot: $(VUE_SOURCES)
+	$(NPM_BIN)/gettext-extract --attribute v-translate --output $@ $(VUE_SOURCES)
+
+js-%.po: js-%.pot
+	msgmerge -qU -C $(dir $@)studip.po $@ $<
+
+js-%.json: js-%.po
+	$(NPM_BIN)/gettext-compile --output $@ $<
+	sed -i 's/^{[^{]*//;s/}$$//' $@
 
 # dummy target to force update of "doc" target
 force_update:
diff --git a/cli/Commands/Translations/VueGettextSplitTranslations.php b/cli/Commands/Translations/VueGettextSplitTranslations.php
deleted file mode 100644
index d9579f203f1..00000000000
--- a/cli/Commands/Translations/VueGettextSplitTranslations.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-
-namespace Studip\Cli\Commands\Translations;
-
-use Symfony\Component\Console\Command\Command;
-use Symfony\Component\Console\Input\InputInterface;
-use Symfony\Component\Console\Output\OutputInterface;
-
-class VueGettextSplitTranslations extends Command
-{
-    protected static $defaultName = 'translations:vue-gettext-split';
-
-    protected function configure(): void
-    {
-        $this->setDescription('Split vue-gettext.');
-        $this->setHelp('Split vue-gettext translations');
-    }
-
-    protected function execute(InputInterface $input, OutputInterface $output): int
-    {
-        $translationsFile = $GLOBALS['STUDIP_BASE_PATH'] . '/resources/locales/translations.json';
-        if (file_exists($translationsFile)) {
-            $file = file_get_contents($translationsFile);
-            $json = json_decode($file, true);
-            foreach ($json as $lang => $content) {
-                $langFile = realpath(__DIR__ . '/../resources/locales/') . '/' . $lang . '.json';
-                file_put_contents($langFile, json_encode($content));
-            }
-            return Command::SUCCESS;
-        } else {
-            $output->writeln(sprintf('<error>Could not find translations in %s</error>', $translationsFile));
-            return Command::FAILURE;
-        }
-    }
-}
diff --git a/cli/studip b/cli/studip
index b723ad58ae6..7654aa3edcc 100755
--- a/cli/studip
+++ b/cli/studip
@@ -51,7 +51,6 @@ $commands = [
     Commands\Plugins\I18N\I18NCompile::class,
     Commands\Resources\UpdateBookingIntervals::class,
     Commands\SORM\DescribeModels::class,
-    Commands\Translations\VueGettextSplitTranslations::class,
     Commands\Users\UserDelete::class,
     Commands\Users\UserDelete::class,
 ];
diff --git a/locale/compileTranslation b/locale/compileTranslation
deleted file mode 100755
index 35efc604dd5..00000000000
--- a/locale/compileTranslation
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-#
-#  STEP 2:
-#  convert all Stud.IP message strings into a binary format
-#
-
-LOCALE_RELATIVE_PATH="."
-
-for language in en
-do
-	test -f "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.mo" && mv "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.mo" "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.mo.old"
-	msgfmt "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.po" --output-file="$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.mo"
-done
diff --git a/resources/locales/de_DE.json b/locale/de/LC_MESSAGES/js-resources.json
similarity index 100%
rename from resources/locales/de_DE.json
rename to locale/de/LC_MESSAGES/js-resources.json
diff --git a/locale/en/LC_MESSAGES/js-resources.json b/locale/en/LC_MESSAGES/js-resources.json
new file mode 100644
index 00000000000..576a5c98599
--- /dev/null
+++ b/locale/en/LC_MESSAGES/js-resources.json
@@ -0,0 +1 @@
+{"[versteckt]":"[hidden]","[Vertretung]":"[Substitute]","Abbrechen":"Cancel","Abschicken":"Submit","Abschnitt":"Section","Abschnitt bearbeiten":"Edit section","Abschnitt löschen":"Delete section","Aktionen":"Actions","Aktionsmenü":"Action menu","Aktivitäten":"Activities","Allgemeine Einstellungen":"General settings","Anmelderegel konfigurieren":"Configure admission setting","Antwort":"Reply","April":"April","August":"August","Autor":"Author","Autor/-in":"Author","Bearbeiten":"Edit","beliebig":"any","Benachrichtigungen aktiviert":"Notifications activated","Benachrichtigungen für diese Konversation abstellen.":"Unsubscribe from notifications for this conversation.","Beschreibung":"Description","Bezeichnung":"Notation","Bild":"Picture","Bild löschen":"Delete picture","bis":"until","Bitte bestätigen Sie die Aktion":"Please confirm action","Bitte geben Sie Ihren tatsächlichen Nachnamen an.":"Please enter your real last name.","Blenden Sie die restlichen Termine ein":"Show the remaining dates","Breite":"Width","Das Herunterladen dieser Datei ist nur eingeschränkt möglich.":"The download of this file is restricted.","Das Passwort ist zu kurz. Es sollte mindestens 8 Zeichen lang sein.":"The password is too short. It should have at least 8 characters.","Datei hochladen":"Upload file","Dateibereich":"File area","Dateien":"Files","Dateityp":"File type","Datum":"Date","Detailanzeige umschalten":"Switch detailed view","Dezember":"December","Di":"Tue.","Die Teilnahme ist bindend. Bitte wenden Sie sich an die Lehrenden.":"Participation is binding. Please contact the lecturers.","Dienstag":"Tuesday","Dieser Ordner ist leer":"This folder is empty","Do":"Thu.","Dokument hinzufügen":"Add document","Dokument suchen":"Search document","Donnerstag":"Thursday","Downloads":"Downloads","Einstellungen":"Settings","Entwurf":"Draft","Erlauben":"Allow","Erstellen":"Create","Es wurden keine Veranstaltungen gefunden.":"No course found.","Export":"Export","Exportieren":"Export","Extern":"External","Fach löschen":"Delete field of study","Farbgruppierung ändern":"Change colour grouping","Favoriten":"Favourites","Februar":"February","Feedback":"Feedback","Fehler":"Error","Fortschritt":"Progress","Fr":"Fri.","Freitag":"Friday","Gelb":"Yellow","groß":"large","Größe":"Size","Grün":"Green","Grunddaten":"Basic details","Gruppe":"Group","Gruppen":"Groups","HH:mm":"HH:mm","hinzufügen":"add","Höhe":"Height","Icon":"Icon","Importieren":"Import","Information":"Information","Informationen":"Information","Inhalt":"Content","Intern":"Internal","Ja":"Yes","Januar":"January","Juli":"July","Juni":"June","Keine":"None","Keine Auswahl":"No selection","Keine Dateien vorhanden":"No files available","klein":"small","Kommentare":"Comments","Kommentare anzeigen":"Show comments","Kopieren":"Copy","Lesen":"Read","Leser/-innen":"Readers","Liste":"List","Mai":"May","März":"March","Mi":"Wed.","Minute":"Minute","Minuten":"Minutes","Mittwoch":"Wednesday","Mo":"Mon.","Modul suchen":"Search for module","Montag":"Monday","Nachrichtenbox schließen":"Close message box","Name":"Name","Navigation":"Navigation","Nein":"No","normal":"normal","November":"November","Nr.":"No.","Nur buchbare Räume anzeigen":"Display bookable rooms only","oder":"or","Ok":"Ok","Oktober":"October","Ordner":"Folder","Quelle":"Resource","Quelle auswählen":"Select source","Rot":"Red","Sa":"Sat.","Samstag":"Saturday","Schliessen":"Close","Schließen":"Close","Seite bearbeiten":"Edit page","Seite löschen":"Delete page","Sekunden":"Seconds","September":"September","Sichtbar ab":"Visible from","Sichtbarkeit":"Visibility","Sie haben nicht angegeben, wer die Nachricht empfangen soll!":"You did not specify who should receive the message!","Sie haben noch keine Anmelderegeln festgelegt.":"You haven't yet defined any admission rule.","Smileys":"Smileys","So":"Sun.","Sonntag":"Sunday","Sonstiges":"Miscellanea","Speichern":"Save","Sprache":"Language","Standard":"Standard","Status":"Status","Studiengang suchen":"Search course of study","Studiengangteil suchen":"Search course of study","Studierende":"Students","Stunde":"Hour","Suche zurücksetzen":"Reset search","Suche...":"Searching...","Suchergebnisse":"Search results","Tag":"Day","Tage":"Days","Text":"Text","Titel":"Title","Typ":"Type","Übernehmen":"Accept","Überschrift":"Header","Uhrzeit":"Time","Um die Veranstaltung sichtbar zu machen, wählen Sie den Punkt \"Sichtbarkeit\" im Administrationsbereich der Veranstaltung.":"In order to enable visibility of the course, please choose the tab \"visibility\" in the administration area of the course.","Untertitel":"Subtitle","URL":"URL","Veranstaltung berücksichtigen":"Regard course","Veranstaltung nicht berücksichtigen":"Do not regard course","Veranstaltungen":"Courses","Veranstaltungsdetails":"Course details","Versteckte Veranstaltungen können über die Suchfunktionen nicht gefunden werden.":"Hidden courses cannot be found via the search feature.","von":"from","Vorlage":"Template","weiter":"continue","Wert":"Value","Zeit":"Time","Zum Hauptordner":"Go to main folder","zurück":"back","Zurück":"Back","Zurücksetzen":"Reset","Zweck":"Purpose"}
\ No newline at end of file
diff --git a/locale/en/LC_MESSAGES/js-resources.po b/locale/en/LC_MESSAGES/js-resources.po
new file mode 100644
index 00000000000..d5ea9d9cd87
--- /dev/null
+++ b/locale/en/LC_MESSAGES/js-resources.po
@@ -0,0 +1,3274 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Language: en\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: easygettext\n"
+
+#: resources/assets/javascripts/lib/multi_person_search.js:70
+msgid " Dieser Filter enthält keine (neuen) Personen."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:9
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:6
+msgid "(Seite %{pageNum} von %{pageCount})"
+msgstr ""
+
+#: resources/vue/components/MyCoursesTables.vue:164
+#: resources/vue/components/MyCoursesTiles.vue:78
+msgid "[versteckt]"
+msgstr "[hidden]"
+
+#: resources/vue/components/MyCoursesTables.vue:160
+#: resources/vue/components/MyCoursesTiles.vue:74
+msgid "[Vertretung]"
+msgstr "[Substitute]"
+
+#: resources/assets/javascripts/lib/multi_select.js:11
+msgid "<%= count %> ausgewählt"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockEdit.vue:7
+msgid "Abbrechen"
+msgstr "Cancel"
+
+#: resources/vue/components/courseware/CoursewareCourseDashboard.vue:18
+msgid "abgeschlossene Seiten"
+msgstr ""
+
+#: resources/vue/components/BlubberThread.vue:215
+msgid "Abschicken"
+msgstr "Submit"
+
+#: resources/assets/javascripts/mvv.js:125
+msgid "AbschlussKategorie suchen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:74
+#: resources/vue/components/courseware/CoursewareManagerFiling.vue:3
+msgid "Abschnitt"
+msgstr "Section"
+
+#: resources/vue/components/courseware/CoursewareBlockAdderArea.vue:5
+msgid "Abschnitt aktiv - Blöcke werden hier eingefügt"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareContainerActions.vue:13
+#: resources/vue/components/courseware/CoursewareDefaultContainer.vue:23
+msgid "Abschnitt bearbeiten"
+msgstr "Edit section"
+
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:292
+#, fuzzy
+msgid "Abschnitt konnte nicht kopiert werden"
+msgstr "Data could not be copied!"
+
+#: resources/vue/components/courseware/CoursewareContainerActions.vue:10
+#: resources/vue/components/courseware/CoursewareContainerActions.vue:14
+msgid "Abschnitt löschen"
+msgstr "Delete section"
+
+#: resources/vue/components/courseware/CoursewareDefaultContainer.vue:24
+msgid "Abschnitt unwiderruflich löschen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareContainerAdderItem.vue:33
+msgid "Abschnitt wurde erfolgreich eingefügt."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:7
+msgid "Abschnitte"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:21
+msgid "Abschnitte sortieren"
+msgstr ""
+
+#: resources/vue/components/FilesTable.vue:267
+#: resources/vue/components/StudipActionMenu.vue:26
+#: resources/vue/components/StudipActionMenu.vue:36
+msgid "Aktionen"
+msgstr "Actions"
+
+#: resources/vue/components/StudipActionMenu.vue:28
+msgid "Aktionsmenü"
+msgstr "Action menu"
+
+#: resources/vue/components/courseware/CoursewareCourseDashboard.vue:65
+msgid "Aktivitäten"
+msgstr "Activities"
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:23
+msgid "Alle Blöcke"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/multi_select.js:7
+#: resources/assets/javascripts/lib/multi_person_search.js:34
+#: resources/assets/javascripts/lib/multi_select.js:28
+msgid "Alle entfernen"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/multi_select.js:6
+#: resources/assets/javascripts/lib/multi_person_search.js:30
+#: resources/assets/javascripts/lib/multi_select.js:23
+msgid "Alle hinzufügen"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/raumzeit.js:118
+msgid "Alle Räume anzeigen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:4
+msgid "Alle Teilnehmenden haben Leserechte"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:8
+msgid "Alle Teilnehmenden haben Schreibrechte"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:10
+msgid "Alles exportieren"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:106
+msgid "Alles importieren"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsAdmin.vue:4
+msgid "Allgemeine Einstellungen"
+msgstr "General settings"
+
+#: resources/vue/components/courseware/CoursewareManagerFiling.vue:5
+msgid "an dieser Stelle einfügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseDashboard.vue:17
+msgid "angefangene Seiten"
+msgstr ""
+
+#: resources/assets/javascripts/lib/admission.js:43
+#: resources/assets/javascripts/lib/admission.js:53
+msgid "Anmelderegel konfigurieren"
+msgstr "Configure admission setting"
+
+#: resources/assets/javascripts/lib/toolbar.js:73
+msgid "Antwort"
+msgstr "Reply"
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:98
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:49
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:446
+#, fuzzy
+msgid "Apfelgrün"
+msgstr "created"
+
+#: resources/assets/javascripts/studip-ui.js:61
+msgid "Apr"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:47
+msgid "April"
+msgstr "April"
+
+#: resources/vue/components/courseware/CoursewareToolsAdmin.vue:6
+msgid "Art der Kapitelabfolge"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:76
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:61
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:28
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:7
+msgid "Art des Links"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:97
+msgid "Audio"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:85
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:27
+msgid "Audio Aufnahmen zulassen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:56
+msgid "Aufgaben & Interaktion"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:35
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:32
+msgid "Aufnahme aktivieren"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:44
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:41
+msgid "Aufnahme beenden"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:53
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:50
+msgid "Aufnahme läuft"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:47
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:44
+msgid "Aufnahme löschen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:50
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:47
+msgid "Aufnahme speichern"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:38
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:35
+msgid "Aufnahme starten"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:41
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:38
+msgid "Aufnahme wiederholen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:410
+msgid "Aufnahme wurde erfolgreich im Dateibereich abgelegt."
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:65
+msgid "Aug"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:51
+msgid "August"
+msgstr "August"
+
+#: resources/vue/mixins/MyCoursesMixin.js:86
+#: resources/vue/mixins/MyCoursesMixin.js:96
+msgid "Aus der Veranstaltung austragen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerCopySelector.vue:3
+msgid "Aus meine Inhalte kopieren"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerCopySelector.vue:4
+msgid "Aus Veranstaltung kopieren"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/multi_select.js:8
+#: resources/vue/components/MyCoursesColorPicker.vue:27
+msgid "ausgewählt"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:74
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:58
+msgid "Author"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:33
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:11
+msgid "Autoplay"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:40
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:18
+msgid "Autoplay Timer in Sekunden"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:10
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:7
+msgid "Autor"
+msgstr "Author"
+
+#: resources/vue/components/FilesTable.vue:242
+msgid "Autor/-in"
+msgstr "Author"
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:16
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:10
+msgid "Balkendiagramm"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:23
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:6
+msgid "Band"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockEdit.vue:2
+#: resources/vue/components/courseware/CoursewareViewWidget.vue:3
+msgid "Bearbeiten"
+msgstr "Edit"
+
+#: resources/vue/components/BlubberThread.vue:159
+msgid "Bearbeiten."
+msgstr ""
+
+#: resources/assets/javascripts/lib/user_filter.js:12
+msgid "Bedingung konfigurieren"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:113
+msgid "beliebig"
+msgstr "any"
+
+#: resources/vue/components/BlubberThread.vue:73
+msgid "Benachrichtigungen aktiviert"
+msgstr "Notifications activated"
+
+#: resources/vue/components/BlubberThread.vue:60
+msgid "Benachrichtigungen für diese Konversation abstellen."
+msgstr "Unsubscribe from notifications for this conversation."
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:67
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:205
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:264
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:9
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:7
+msgid "Beschreibung"
+msgstr "Description"
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:9
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:3
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:72
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:57
+msgid "Beschriftung"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareConfirmBlock.vue:5
+#: resources/vue/components/courseware/CoursewareConfirmBlock.vue:2
+#, fuzzy
+msgid "Bestätigung"
+msgstr "Confirm"
+
+#: resources/vue/components/courseware/CoursewareCourseDashboard.vue:16
+msgid "bevorstehende Seiten"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:35
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:29
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:68
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:53
+msgid "Bezeichnung"
+msgstr "Notation"
+
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:101
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:98
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:81
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:52
+msgid "Bild"
+msgstr "Picture"
+
+#: resources/assets/javascripts/lib/lightbox.js:68
+msgid "Bild %u von %u"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:141
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:83
+msgid "Bild hochladen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:72
+msgid "Bild im Dateibereich speichern"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:135
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:77
+msgid "Bild löschen"
+msgstr "Delete picture"
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:41
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:14
+msgid "Bild Rückseite"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:33
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:6
+msgid "Bild Vorderseite"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:448
+msgid "Bild wurde erfolgreich im Dateibereich abgelegt."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:55
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:14
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:18
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:3
+msgid "Bilddatei"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:122
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:64
+msgid "bis"
+msgstr "until"
+
+#: resources/assets/javascripts/bootstrap/forms.js:151
+msgid "Bitte %u Zeichen mehr eingeben"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/forms.js:147
+msgid "Bitte %u Zeichen weniger eingeben"
+msgstr ""
+
+#: resources/assets/javascripts/lib/dialog.js:609
+#: resources/vue/components/StudipDialog.vue:92
+msgid "Bitte bestätigen Sie die Aktion"
+msgstr "Please confirm action"
+
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:94
+msgid "Bitte geben Sie ein Datum an"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:96
+msgid "Bitte geben Sie eine Uhrzeit an"
+msgstr ""
+
+#: resources/assets/javascripts/lib/register.js:92
+msgid "Bitte geben Sie Ihren tatsächlichen Nachnamen an."
+msgstr "Please enter your real last name."
+
+#: resources/assets/javascripts/lib/register.js:80
+msgid "Bitte geben Sie Ihren tatsächlichen Vornamen an."
+msgstr ""
+
+#: resources/assets/javascripts/lib/jsupdater.js:168
+msgid "Bitte laden Sie die Seite neu, um fortzufahren"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:114
+msgid "Bitte wählen Sie ein Nachherbilder aus."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:87
+msgid "Bitte wählen Sie ein Video aus"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:113
+msgid "Bitte wählen Sie ein Vorherbilder aus."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:173
+msgid "Bitte wählen Sie eine Datei aus"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:72
+msgid "Bitte wählen Sie eine Seite als Ziel aus"
+msgstr ""
+
+#: resources/assets/javascripts/lib/quick_search.js:147
+msgid "Bitte wählen Sie einen gültigen Wert aus!"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockadderItem.vue:58
+msgid "Bitte wählen Sie einen Ort aus, an dem der Block eingefügt werden soll."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:25
+msgid "blau"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:83
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:107
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:34
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:34
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:333
+msgid "Blau"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/application.js:175
+#: resources/assets/javascripts/bootstrap/application.js:188
+msgid "Blenden Sie die restlichen Termine aus"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/application.js:178
+#: resources/assets/javascripts/bootstrap/application.js:191
+msgid "Blenden Sie die restlichen Termine ein"
+msgstr "Show the remaining dates"
+
+#: resources/vue/components/courseware/CoursewareManagerFiling.vue:4
+msgid "Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockActions.vue:41
+#, fuzzy
+msgid "Block bearbeiten"
+msgstr "Edit subject"
+
+#: resources/vue/mixins/courseware/import.js:118
+msgid "Block konnte nicht erstellt werden"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:354
+#, fuzzy
+msgid "Block konnte nicht kopiert werden"
+msgstr "Data could not be copied!"
+
+#: resources/vue/components/courseware/CoursewareBlockActions.vue:65
+msgid "Block löschen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDefaultBlock.vue:51
+msgid "Block unwiderruflich löschen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockadderItem.vue:52
+msgid "Block wurde erfolgreich eingefügt."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockInfo.vue:14
+msgid "Block wurde erstellt am"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockInfo.vue:10
+msgid "Block wurde erstellt von"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockAdderArea.vue:4
+msgid "Block zu diesem Abschnitt hinzufügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:24
+msgid "Blockassistent"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockInfo.vue:6
+msgid "Blockbeschreibung"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerContainer.vue:59
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:4
+msgid "Blöcke"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerContainer.vue:15
+msgid "Blöcke sortieren"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:56
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:41
+msgid "Breite"
+msgstr "Width"
+
+#: resources/vue/components/CacheAdministration.vue:4
+msgid "Cachetyp"
+msgstr ""
+
+#: resources/vue/components/CacheAdministration.vue:7
+msgid "Cachetyp auswählen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:43
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:36
+msgid "Contextmenü"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:65
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:13
+msgid "Countdown"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:47
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:31
+msgid "Creative Commons Angaben"
+msgstr ""
+
+#: resources/assets/javascripts/lib/toolbar.js:69
+msgid "Das Aktivieren des WYSIWYG Editors ist fehlgeschlagen."
+msgstr ""
+
+#: resources/vue/components/FilesTable.vue:404
+msgid "Das Herunterladen dieser Datei ist nur eingeschränkt möglich."
+msgstr "The download of this file is restricted."
+
+#: resources/vue/components/courseware/CoursewareActionWidget.vue:93
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:674
+msgid "Das Lesezeichen wurde gesetzt"
+msgstr ""
+
+#: resources/assets/javascripts/lib/register.js:52
+msgid "Das Passwort ist zu kurz. Es sollte mindestens 8 Zeichen lang sein."
+msgstr "The password is too short. It should have at least 8 characters."
+
+#: resources/assets/javascripts/lib/register.js:67
+msgid "Das Passwort stimmt nicht mit dem Bestätigungspasswort überein!"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:77
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:19
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:20
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:35
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:14
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:29
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:24
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:7
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:36
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:7
+#: resources/vue/components/courseware/CoursewareFileChooser.vue:4
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:25
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:18
+msgid "Datei"
+msgstr ""
+
+#: resources/assets/javascripts/lib/files.js:128
+#: resources/assets/javascripts/lib/files.js:132
+#: resources/vue/components/BlubberPublicComposer.vue:24
+#: resources/vue/components/BlubberThread.vue:224
+msgid "Datei hochladen"
+msgstr "Upload file"
+
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:24
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:21
+msgid "Datei ist nicht verfügbar"
+msgstr ""
+
+#: resources/assets/javascripts/lib/files.js:122
+msgid "Datei ist zu groß oder hat eine nicht erlaubte Endung."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:11
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:26
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:5
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:20
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:16
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:9
+msgid "Dateibereich"
+msgstr "File area"
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:67
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:9
+msgid "Dateibereich Datei"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareFileChooser.vue:25
+msgid "Dateibereich der Veranstaltung"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareFolderChooser.vue:14
+msgid "Dateibereich dieser Veranstaltung"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:68
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:10
+msgid "Dateibereich Ordner"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:58
+msgid "Dateien"
+msgstr "Files"
+
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:51
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:29
+msgid "Dateinamen anzeigen"
+msgstr ""
+
+#: resources/vue/components/FileCacheConfig.vue:3
+msgid "Dateipfad"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:35
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:18
+msgid "Dateityp"
+msgstr "File type"
+
+#: resources/assets/javascripts/mvv.js:603
+msgid "Datenfeld in Original-Sprache nicht verfügbar."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:25
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:19
+msgid "Datensatz"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:35
+msgid "Datensatz entfernen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:57
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:51
+msgid "Datensatz hinzufügen"
+msgstr ""
+
+#: resources/vue/components/FilesTable.vue:251
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:55
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:66
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:3
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:14
+msgid "Datum"
+msgstr "Date"
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:65
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:24
+msgid "deaktiviert"
+msgstr ""
+
+#: resources/assets/javascripts/lib/register.js:36
+msgid ""
+"Der Benutzername enthält unzulässige Zeichen, er darf keine Sonderzeichen "
+"oder Leerzeichen enthalten."
+msgstr ""
+
+#: resources/assets/javascripts/lib/register.js:27
+msgid "Der Benutzername ist zu kurz, er sollte mindestens 4 Zeichen lang sein."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:175
+#, fuzzy
+msgid "Der Kopiervorgang ist fehlgeschlagen."
+msgstr "Registration of %s failed."
+
+#: resources/vue/components/StudipMessageBox.vue:21
+#: resources/vue/components/StudipMessageBox.vue:24
+msgid "Detailanzeige umschalten"
+msgstr "Switch detailed view"
+
+#: resources/assets/javascripts/lib/instschedule.js:13
+msgid "Detaillierte Veranstaltungsliste"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:69
+msgid "Dez"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:55
+msgid "Dezember"
+msgstr "December"
+
+#: resources/assets/javascripts/studip-ui.js:83
+msgid "Di"
+msgstr "Tue."
+
+#: resources/assets/javascripts/lib/news.js:70
+msgid "Dialog wird geladen..."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:46
+msgid "Die angeforderte Seite ist nicht Teil dieser Courseware."
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/studip_helper_attributes.js:217
+msgid "Die beiden Werte \"$1\" und \"$2\" stimmen nicht überein. "
+msgstr ""
+
+#: resources/assets/javascripts/lib/register.js:115
+msgid "Die E-Mail-Adresse ist nicht korrekt!"
+msgstr ""
+
+#: resources/assets/javascripts/studip-jquery.multi-select.tweaks.js:56
+msgid "Die Person ist bereits eingetragen."
+msgstr ""
+
+#: resources/assets/javascripts/lib/toolbar.js:56
+msgid ""
+"Die Seite muss danach neu geladen werden, um den WYSIWYG Editor zu laden."
+msgstr ""
+
+#: resources/vue/mixins/MyCoursesMixin.js:89
+msgid "Die Teilnahme ist bindend. Bitte wenden Sie sich an die Lehrenden."
+msgstr "Participation is binding. Please contact the lecturers."
+
+#: resources/assets/javascripts/lib/calendar.js:16
+#: resources/assets/javascripts/studip-ui.js:74
+msgid "Dienstag"
+msgstr "Tuesday"
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:50
+msgid "Diese Courseware"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:567
+msgid "Diese Datei ist kein Bild. Bitte wählen Sie ein Bild aus."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:565
+msgid "Diese Datei ist zu groß. Bitte wählen Sie eine kleinere Datei."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDashboardProgress.vue:42
+msgid "diese Seite"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDashboardProgress.vue:38
+msgid "diese Seite inkl. darunter liegende Seiten"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:249
+msgid "Diese Seite steht Ihnen leider nicht zur Verfügung"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareActionWidget.vue:61
+#: resources/vue/components/courseware/CoursewareActionWidget.vue:69
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:514
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:522
+msgid "Diese Seite wird bereits bearbeitet."
+msgstr ""
+
+#: resources/vue/components/StudipDialog.vue:75
+msgid "Diesen Dialog schließen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerContainer.vue:25
+msgid "Dieser Abschnitt enthält keine Blöcke."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDefaultContainer.vue:59
+#: resources/vue/components/courseware/CoursewareDefaultContainer.vue:67
+msgid "Dieser Abschnitt wird bereits bearbeitet."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDefaultBlock.vue:127
+#: resources/vue/components/courseware/CoursewareDefaultBlock.vue:148
+msgid "Dieser Block wird bereits bearbeitet."
+msgstr ""
+
+#: resources/vue/components/FilesTable.vue:273
+#: resources/vue/components/courseware/CoursewareFolderBlock.vue:16
+#: resources/vue/components/courseware/CoursewareFolderBlock.vue:13
+msgid "Dieser Ordner ist leer"
+msgstr "This folder is empty"
+
+#: resources/assets/javascripts/lib/big_image_handler.js:61
+msgid ""
+"Dieses Bild wird verkleinert dargestellt. Klicken Sie für eine größere "
+"Darstellung."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:31
+msgid "Dieses Element enthält keine Abschnitte."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:51
+msgid "Dieses Element enthält keine Seiten."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDashboardProgress.vue:15
+msgid "Dieses Seite enthält keine darunter liegenden Seiten"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:85
+msgid "Do"
+msgstr "Thu."
+
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:105
+#, fuzzy
+msgid "Dokument"
+msgstr "Documents"
+
+#: resources/assets/javascripts/lib/files.js:63
+#: resources/assets/javascripts/lib/files.js:68
+#: resources/assets/javascripts/lib/folders.js:14
+msgid "Dokument hinzufügen"
+msgstr "Add document"
+
+#: resources/assets/javascripts/mvv.js:100
+msgid "Dokument suchen"
+msgstr "Search document"
+
+#: resources/assets/javascripts/lib/calendar.js:18
+#: resources/assets/javascripts/studip-ui.js:76
+msgid "Donnerstag"
+msgstr "Thursday"
+
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:28
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:11
+msgid "Download-Icon anzeigen"
+msgstr ""
+
+#: resources/vue/components/FilesTable.vue:232
+msgid "Downloads"
+msgstr "Downloads"
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:41
+msgid "Dunkelgrau"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsAdmin.vue:14
+msgid "Editierberechtigung für Tutor/-innen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareFileChooser.vue:26
+msgid "eigener Dateibereich"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareFolderChooser.vue:15
+msgid "Eigener Dateibereich"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareWellcomeScreen.vue:11
+msgid "Einen Abschnitt auswählen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareEmptyElementBox.vue:4
+#: resources/vue/components/courseware/CoursewareEmptyElementBox.vue:1
+msgid "Einen Abschnitt hinzufügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareRibbonToolbar.vue:12
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:283
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:28
+msgid "Einstellungen"
+msgstr "Settings"
+
+#: resources/vue/components/courseware/CoursewareToolsAdmin.vue:27
+msgid "Einstellungen wurden übernommen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareWellcomeScreen.vue:50
+msgid "Elemente für Ihren ersten Inhalt wurden angelegt"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareRibbonToolbar.vue:9
+msgid "Elemente hinzufügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:47
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:21
+msgid "Endpunkt wählen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:52
+msgid "Enthält der Inhalt eine oder mehrere Dateien?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:98
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:40
+msgid "Entwurf"
+msgstr "Draft"
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:97
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:39
+msgid "ePortfolio"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:45
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:38
+msgid "Erlauben"
+msgstr "Allow"
+
+#: resources/vue/mixins/courseware/export.js:32
+msgid "Erstelle Zip-Archiv"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:68
+msgid "Erstellen"
+msgstr "Create"
+
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:19
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:16
+msgid "erstellt von"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareWellcomeScreen.vue:10
+msgid "Ersten Inhalt erstellen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:199
+msgid "erstes Element"
+msgstr ""
+
+#: resources/vue/mixins/courseware/import.js:217
+msgid "Erzeuge Datei"
+msgstr ""
+
+#: resources/assets/javascripts/lib/files.js:191
+msgid "Es gab einen Fehler beim Hochladen der Datei(en):"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:442
+msgid ""
+"Es ist ein Fehler aufgetretten! Das Bild konnte nicht gespeichert werden."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareErrorBlock.vue:23
+msgid ""
+"Es ist ein Fehler aufgetretten! Der Block-Typ dieses Blocks ist nicht "
+"verfügbar."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:404
+msgid ""
+"Es ist ein Fehler aufgetretten! Die Aufnahme konnte nicht gespeichert werden."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:31
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:28
+msgid "Es ist keine Audio-Datei verfügbar"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:45
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:39
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:1
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:50
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:67
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:84
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:108
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:33
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:91
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:1
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:35
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:20
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:1
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:23
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:41
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:14
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:32
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:1
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:81
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:23
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:1
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:30
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:14
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:1
+msgid "Es steht keine Auswahl zur Verfügung"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareEmptyElementBox.vue:13
+msgid "Es wurden bisher noch keine Inhalte eingepflegt."
+msgstr ""
+
+#: resources/assets/javascripts/lib/multi_person_search.js:88
+msgid "Es wurden keine neuen Ergebnisse für \"<%= needle %>\" gefunden."
+msgstr ""
+
+#: resources/vue/components/MyCourses.vue:58
+msgid "Es wurden keine Veranstaltungen gefunden."
+msgstr "No course found."
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:64
+msgid "Export"
+msgstr "Export"
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:81
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:838
+msgid "Export läuft, bitte haben sie einen Moment Geduld..."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockExportOptions.vue:2
+msgid "Export Options"
+msgstr ""
+
+#: resources/vue/mixins/courseware/export.js:50
+msgid "Exportiere Elemente"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:63
+msgid "Exportieren"
+msgstr "Export"
+
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:30
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:9
+msgid "Extern"
+msgstr "External"
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:59
+msgid "Externe Inhalte"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:79
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:64
+msgid "Externer Link"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAccordionContainer.vue:43
+#: resources/vue/components/courseware/CoursewareAccordionContainer.vue:29
+msgid "Fach hinzufügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAccordionContainer.vue:39
+#: resources/vue/components/courseware/CoursewareAccordionContainer.vue:25
+msgid "Fach löschen"
+msgstr "Delete field of study"
+
+#: resources/assets/javascripts/lib/overlapping.js:29
+msgid "Fachsemester auswählen (optional)"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:110
+msgid "FAQ"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:39
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:33
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:97
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:80
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:29
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:14
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:17
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:8
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:75
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:17
+#, fuzzy
+msgid "Farbe"
+msgstr "Colour selector"
+
+#: resources/vue/mixins/MyCoursesMixin.js:74
+msgid "Farbgruppierung ändern"
+msgstr "Change colour grouping"
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:22
+msgid "Favoriten"
+msgstr "Favourites"
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:32
+msgid "Favoriten bearbeiten"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:35
+msgid "Favoriten bearbeiten schließen"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:59
+msgid "Feb"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:45
+msgid "Februar"
+msgstr "February"
+
+#: resources/vue/components/courseware/CoursewareBlockFeedback.vue:2
+msgid "Feedback"
+msgstr "Feedback"
+
+#: resources/vue/components/courseware/CoursewareBlockActions.vue:52
+msgid "Feedback anzeigen"
+msgstr ""
+
+#: resources/assets/javascripts/lib/quick_search.js:102
+#: resources/vue/components/courseware/CoursewareDefaultBlock.vue:85
+msgid "Fehler"
+msgstr "Error"
+
+#: resources/assets/javascripts/lib/news.js:88
+#: resources/assets/javascripts/lib/news.js:124
+msgid "Fehler beim Aufruf des News-Controllers"
+msgstr ""
+
+#: resources/assets/javascripts/lib/tour.js:104
+msgid "Fehler beim Aufruf des Tour-Controllers"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:589
+msgid "Fehler beim Hochladen der Datei."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:98
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:83
+msgid "Form entfernen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseDashboard.vue:55
+msgid "Fortschritt"
+msgstr "Progress"
+
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:48
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:19
+msgid "Fortschritt erst beim Herunterladen"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:86
+msgid "Fr"
+msgstr "Fri."
+
+#: resources/vue/components/courseware/CoursewareToolsAdmin.vue:8
+msgid "Frei"
+msgstr ""
+
+#: resources/assets/javascripts/lib/calendar.js:19
+#: resources/assets/javascripts/studip-ui.js:77
+msgid "Freitag"
+msgstr "Friday"
+
+#: resources/vue/components/courseware/CoursewareWellcomeScreen.vue:42
+msgid "Fügt einen Standard-Abschnitt mit einem Text-Block hinzu"
+msgstr ""
+
+#: resources/assets/javascripts/lib/questionnaire.js:120
+msgid "Füllen Sie noch die rot markierten Stellen korrekt aus."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:67
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:26
+msgid "für alle"
+msgstr ""
+
+#: resources/vue/components/CacheAdministration.vue:23
+#: resources/vue/components/CacheAdministration.vue:1
+msgid "Für diesen Cachetyp ist keine Konfiguration erforderlich."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:26
+msgid "gelb"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:87
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:110
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:38
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:38
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:365
+msgid "Gelb"
+msgstr "Yellow"
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:111
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:53
+msgid "Geschätzter zeitlicher Aufwand"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:15
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:7
+msgid "Geschwindigkeit"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:57
+msgid "Gestaltung"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:31
+msgid "grau"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:88
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:40
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:39
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:373
+msgid "Grau"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:99
+msgid "groß"
+msgstr "large"
+
+#: resources/vue/components/FilesTable.vue:221
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:86
+msgid "Größe"
+msgstr "Size"
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:22
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:5
+msgid "Große Schrift"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:25
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:8
+msgid "Großes Icon davor"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:24
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:7
+msgid "Großes Icon oben"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:27
+msgid "grün"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:86
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:109
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:35
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:37
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:357
+msgid "Grün"
+msgstr "Green"
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:258
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:3
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:51
+msgid "Grunddaten"
+msgstr "Basic details"
+
+#: resources/vue/components/MyCoursesColorPicker.vue:25
+msgid "Gruppe"
+msgstr "Group"
+
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:78
+msgid "Gruppen"
+msgstr "Groups"
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:32
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:15
+msgid "Halb"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:47
+msgid "Halbe Breite"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:48
+msgid "Halbe Breite (zentriert)"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:67
+msgid "Handelt es sich bei dem Inhalt hauptsächlich um Text?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:36
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:19
+msgid "Haupttitel"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:84
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:35
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:341
+msgid "Hellblau"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:94
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:45
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:414
+#, fuzzy
+msgid "Helles Seegrün"
+msgstr "Current semester"
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:32
+msgid "hellgrau"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:105
+msgid "HH:mm"
+msgstr "HH:mm"
+
+#: resources/vue/components/BlubberThread.vue:172
+msgid "Hierauf antworten."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:231
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:2
+msgid ""
+"Hiermit exportieren Sie die Seite \"{{ currentElement.attributes.title }}\" "
+"als\n"
+"                            ZIP-Datei."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:48
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:7
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:119
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:102
+msgid "Hintergrundbild"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:102
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:85
+msgid "Hintergrundfarbe"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:95
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:78
+msgid "Hintergrundtyp"
+msgstr ""
+
+#: resources/assets/javascripts/mvv.js:176
+msgid "hinzufügen"
+msgstr "add"
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:29
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:12
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:27
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:11
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:54
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:39
+msgid "Höhe"
+msgstr "Height"
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:90
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:41
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:382
+msgid "Holzkohle"
+msgstr ""
+
+#: resources/vue/components/MemcachedCacheConfig.vue:11
+#: resources/vue/components/RedisCacheConfig.vue:4
+msgid "Hostname"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:18
+msgid ""
+"Ich helfe Ihnen bei der Auswahl des richtigen Blocks. Beantworten Sie mir "
+"einfach ein paar Fragen. Meine Vorschläge werden dann hier anzeigen."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAccordionContainer.vue:22
+#: resources/vue/components/courseware/CoursewareAccordionContainer.vue:8
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:61
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:44
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:35
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:26
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:24
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:8
+msgid "Icon"
+msgstr "Icon"
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:78
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:61
+msgid "Icon-Farbe"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:244
+msgid "Ihr Browser unterstützt dieses Audioformat leider nicht."
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/data_secure.js:131
+#: resources/assets/javascripts/bootstrap/data_secure.js:141
+#: resources/assets/javascripts/lib/overlay.js:71
+msgid "Ihre Eingaben wurden bislang noch nicht gespeichert."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:209
+msgid "Import erfolgreich!"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:215
+msgid ""
+"Import läuft. Bitte verlassen Sie die Seite nicht bis der Import "
+"abgeschlossen wurde."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:81
+msgid "Importdatei auswählen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:90
+msgid "Importiere Dateien"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:98
+msgid "Importiere Elemente"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:205
+msgid "Importieren"
+msgstr "Import"
+
+#: resources/vue/components/MyCourses.vue:13
+#: resources/vue/components/MyCourses.vue:8
+msgid ""
+"In dem ausgewählten <strong>Semester</strong> wurden keine Veranstaltungen "
+"belegt.\n"
+"                        <br>\n"
+"                        Wählen Sie links im <strong>Semesterfilter</strong> "
+"ein anderes Semester aus!\n"
+"                    </br>"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerCopySelector.vue:126
+msgid "In dieser Veranstaltung wurden noch keine Inhalte angelegt"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:44
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:15
+msgid "Infobox nach Download"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:40
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:11
+msgid "Infobox vor Download"
+msgstr ""
+
+#: resources/vue/components/StudipDialog.vue:95
+msgid "Information"
+msgstr "Information"
+
+#: resources/vue/components/courseware/CoursewareBlockInfo.vue:2
+msgid "Informationen"
+msgstr "Information"
+
+#: resources/vue/components/courseware/CoursewareActionWidget.vue:8
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:280
+msgid "Informationen anzeigen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:94
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:1
+msgid "Informationen zum Audio-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareConfirmBlock.vue:25
+#: resources/vue/components/courseware/CoursewareConfirmBlock.vue:1
+msgid "Informationen zum Bestätigungs-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:40
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:1
+msgid "Informationen zum Bildvergleich-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:124
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:1
+msgid "Informationen zum Blickfang-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockActions.vue:58
+msgid "Informationen zum Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:60
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:1
+msgid "Informationen zum Chart-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:71
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:1
+msgid "Informationen zum Date-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareFolderBlock.vue:34
+#: resources/vue/components/courseware/CoursewareFolderBlock.vue:1
+msgid "Informationen zum Dateiordner-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:58
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:1
+msgid "Informationen zum DialogCards-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:43
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:1
+msgid "Informationen zum Document-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:57
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:1
+msgid "Informationen zum Download-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:53
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:1
+msgid "Informationen zum Embed-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:60
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:1
+msgid "Informationen zum Galerie-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:84
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:1
+msgid "Informationen zum IFrame-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:51
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:1
+msgid "Informationen zum Inhaltsverzeichnis-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:73
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:1
+msgid "Informationen zum Leinwand-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:49
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:1
+msgid "Informationen zum Link-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:54
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:1
+msgid "Informationen zum Merksatz-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCodeBlock.vue:22
+#: resources/vue/components/courseware/CoursewareCodeBlock.vue:1
+msgid "Informationen zum Quelltext-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:47
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:1
+msgid "Informationen zum Schreibmaschinen-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTextBlock.vue:9
+#: resources/vue/components/courseware/CoursewareTextBlock.vue:1
+msgid "Informationen zum Text-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:105
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:1
+msgid "Informationen zum Verweissensitive-Grafik-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:51
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:1
+msgid "Informationen zum Video-Block"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:58
+msgid "Informationen zur Seite"
+msgstr ""
+
+#: resources/vue/components/MyCoursesTables.vue:99
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:94
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:36
+msgid "Inhalt"
+msgstr "Content"
+
+#: resources/vue/components/courseware/IndexApp.vue:10
+msgid "Inhalte werden geladen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareRibbon.vue:16
+#: resources/vue/components/courseware/CoursewareRibbonToolbar.vue:6
+#, fuzzy
+msgid "Inhaltsverzeichnis"
+msgstr "Course directory"
+
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:31
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:10
+msgid "Intern"
+msgstr "Internal"
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:78
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:63
+msgid "Interner Link"
+msgstr ""
+
+#: resources/assets/javascripts/lib/dialog.js:615
+#: resources/vue/components/StudipDialog.vue:52
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:87
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:29
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:34
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:55
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:70
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:50
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:9
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:30
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:13
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:51
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:22
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:35
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:46
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:53
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:13
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:24
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:31
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:34
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:18
+#: resources/vue/components/courseware/CoursewareToolsAdmin.vue:17
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:39
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:32
+msgid "Ja"
+msgstr "Yes"
+
+#: resources/assets/javascripts/studip-ui.js:58
+msgid "Jan"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:44
+msgid "Januar"
+msgstr "January"
+
+#: resources/assets/javascripts/studip-ui.js:42
+#: resources/vue/components/StudipDateTime.vue:39
+msgid "Jetzt"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:64
+msgid "Jul"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:50
+msgid "Juli"
+msgstr "July"
+
+#: resources/assets/javascripts/studip-ui.js:63
+msgid "Jun"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:49
+msgid "Juni"
+msgstr "June"
+
+#: resources/vue/components/MyCoursesSidebarSwitch.vue:9
+msgid "Kachelansicht"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:46
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:11
+msgid "Kacheln"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:127
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:133
+msgid "Karte"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:50
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:23
+msgid "Karte entfernen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:28
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:1
+msgid "Karte hinzufügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:61
+msgid "Karte umdrehen"
+msgstr ""
+
+#: resources/assets/javascripts/lib/quick_search.js:68
+msgid "Kein Ergebnis gefunden."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareFolderChooser.vue:2
+msgid "kein Ordner ausgewählt"
+msgstr ""
+
+#: resources/assets/javascripts/lib/oer.js:23
+msgid "Kein passendes Element für Vollbildmodus."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:49
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:33
+msgid "Keine"
+msgstr "None"
+
+#: resources/assets/javascripts/mvv.js:304
+#: resources/assets/javascripts/mvv.js:316
+#: resources/assets/javascripts/mvv.js:324
+#: resources/assets/javascripts/mvv.js:332
+msgid "Keine Angabe beim Fach"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareFileChooser.vue:7
+msgid "Keine Auswahl"
+msgstr "No selection"
+
+#: resources/vue/components/courseware/CoursewareFileChooser.vue:20
+msgid "Keine Dateien vorhanden"
+msgstr "No files available"
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:93
+msgid "keine nächste Karte"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/forms.js:164
+msgid "Keine Übereinstimmungen gefunden"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:50
+msgid "keine vorherige Karte"
+msgstr ""
+
+#: resources/assets/javascripts/lib/overlapping.js:59
+msgid "Keine weitere Auswahl möglich"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:89
+msgid "klein"
+msgstr "small"
+
+#: resources/vue/components/BlubberThread.vue:385
+msgid "Kommentar schreiben. Enter zum Abschicken."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockComments.vue:2
+msgid "Kommentare"
+msgstr "Comments"
+
+#: resources/vue/components/courseware/CoursewareBlockActions.vue:20
+msgid "Kommentare anzeigen"
+msgstr "Show comments"
+
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:31
+msgid "Kommt der Inhalt von einer anderen Plattform, z.B. Youtube?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:93
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:44
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:406
+msgid "Königin blau"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:91
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:42
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:390
+#, fuzzy
+msgid "Königliches Purpur"
+msgstr "Possible search criteria"
+
+#: resources/assets/javascripts/lib/blubber.js:45
+msgid "Konnte die Konversation nicht laden. Probieren Sie es nachher erneut."
+msgstr ""
+
+#: resources/assets/javascripts/lib/blubber.js:69
+#: resources/assets/javascripts/lib/blubber.js:81
+msgid "Konnte die Suche nicht ausführen. Probieren Sie es nachher erneut."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:255
+#, fuzzy
+msgid "konnte nicht kopiert werden."
+msgstr "Data could not be copied!"
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:194
+msgid "Kopieren"
+msgstr "Copy"
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:22
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:7
+msgid "Kreis hinzufügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:17
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:11
+msgid "Kreisdiagramm"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:96
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:47
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:430
+msgid "Kürbis"
+msgstr ""
+
+#: resources/vue/mixins/courseware/export.js:65
+msgid "Lade Dateien"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/forms.js:154
+msgid "Lade mehr Ergebnisse..."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:17
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:9
+msgid "Langsam"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:63
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:11
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:20
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:3
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:42
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:7
+msgid "Layout"
+msgstr ""
+
+#: resources/vue/mixins/courseware/import.js:189
+msgid "Lege Ordner an"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:92
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:43
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:398
+msgid "Leguangrün"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:2
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:1
+msgid "Lehrende in Stud.IP"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:22
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:56
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:87
+#: resources/vue/components/courseware/CoursewareViewWidget.vue:2
+msgid "Lesen"
+msgstr "Read"
+
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:23
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:88
+msgid "Lesen und Schreiben"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:48
+msgid "Leser/-innen"
+msgstr "Readers"
+
+#: resources/vue/components/courseware/CoursewareActionWidget.vue:9
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:281
+msgid "Lesezeichen setzen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:28
+msgid "lila"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:36
+msgid "Lila"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:20
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:14
+msgid "Liniendiagramm"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/copyable_links.js:24
+msgid "Link wurde kopiert"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:44
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:9
+msgid "Liste"
+msgstr "List"
+
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:45
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:10
+msgid "Liste mit Beschreibung"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:11
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:78
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:8
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:62
+msgid "Lizenz der Plattform"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:103
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:275
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:45
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:20
+msgid "Lizenztyp"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:48
+#: resources/assets/javascripts/studip-ui.js:62
+msgid "Mai"
+msgstr "May"
+
+#: resources/assets/javascripts/studip-ui.js:60
+msgid "Mär"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:46
+msgid "März"
+msgstr "March"
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:95
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:46
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:422
+msgid "Maulbeere"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:29
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:7
+msgid "Maximale Höhe"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareWellcomeScreen.vue:8
+msgid "Mehr über Courseware erfahren"
+msgstr ""
+
+#: resources/vue/components/MemcachedCacheConfig.vue:5
+msgid "Memcached-Server"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:12
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:3
+#, fuzzy
+msgid "Merksatz"
+msgstr "Clipboard"
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:53
+msgid "Metadaten"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:84
+msgid "Mi"
+msgstr "Wed."
+
+#: resources/assets/javascripts/studip-ui.js:103
+msgid "Mikrosekunde"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:102
+msgid "Millisekunde"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:100
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:26
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:23
+msgid "Minute"
+msgstr "Minute"
+
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:29
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:26
+msgid "Minuten"
+msgstr "Minutes"
+
+#: resources/assets/javascripts/lib/calendar.js:17
+#: resources/assets/javascripts/studip-ui.js:75
+msgid "Mittwoch"
+msgstr "Wednesday"
+
+#: resources/assets/javascripts/studip-ui.js:82
+msgid "Mo"
+msgstr "Mon."
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:128
+msgid "Möchten Sie die Seite"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:125
+msgid "Möchten Sie die Seite wirklich löschen?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDefaultContainer.vue:25
+msgid "Möchten Sie diesen Abschnitt wirklich löschen?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDefaultBlock.vue:52
+msgid "Möchten Sie diesen Block wirklich löschen?"
+msgstr ""
+
+#: resources/assets/javascripts/mvv.js:117
+msgid "Modul suchen"
+msgstr "Search for module"
+
+#: resources/vue/components/MyCourses.vue:58
+msgid "Mögliche Ursachen:"
+msgstr ""
+
+#: resources/assets/javascripts/lib/calendar.js:15
+#: resources/assets/javascripts/studip-ui.js:73
+msgid "Montag"
+msgstr "Monday"
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:55
+msgid "Multimedia"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:107
+msgid "nachm."
+msgstr ""
+
+#: resources/vue/components/BlubberThread.vue:386
+msgid "Nachricht schreiben. Enter zum Abschicken."
+msgstr ""
+
+#: resources/vue/components/StudipMessageBox.vue:32
+#: resources/vue/components/StudipMessageBox.vue:35
+msgid "Nachrichtenbox schließen"
+msgstr "Close message box"
+
+#: resources/vue/components/FilesTable.vue:212
+#: resources/vue/components/MyCoursesTables.vue:96
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:24
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:57
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:89
+msgid "Name"
+msgstr "Name"
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:190
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:12
+msgid "Name der neuen Seite"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:39
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:23
+msgid "Name des Übergabeparameters"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:50
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:34
+msgid "Namensnennung"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:58
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:42
+msgid "Namensnennung & Keine Bearbeitung"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:55
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:39
+msgid "Namensnennung & Nicht kommerziell"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:61
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:45
+msgid "Namensnennung & Nicht kommerziell & Keine Bearbeitung"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:65
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:49
+msgid ""
+"Namensnennung & Nicht kommerziell & Weitergabe unter gleichen Bedingungen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:52
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:36
+msgid "Namensnennung & Weitergabe unter gleichen Bedingungen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:44
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:22
+msgid "Navigation"
+msgstr "Navigation"
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:184
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:6
+msgid "Neben der aktuellen Seite"
+msgstr ""
+
+#: resources/assets/javascripts/lib/dialog.js:620
+#: resources/vue/components/StudipDialog.vue:72
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:88
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:30
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:38
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:59
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:74
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:51
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:10
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:31
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:14
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:50
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:21
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:36
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:47
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:54
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:14
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:25
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:32
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:33
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:17
+#: resources/vue/components/courseware/CoursewareToolsAdmin.vue:16
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:38
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:31
+msgid "Nein"
+msgstr "No"
+
+#: resources/assets/javascripts/lib/jsupdater.js:170
+msgid "Neu laden"
+msgstr ""
+
+#: resources/assets/javascripts/lib/schedule.js:59
+msgid "Neuen Termin eintragen"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/raumzeit.js:106
+msgid "Nicht buchbare Räume:"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:115
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:268
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:57
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:13
+msgid "Niveau"
+msgstr ""
+
+#: resources/assets/javascripts/lib/questionnaire.js:120
+msgid "Noch nicht komplett ausgefüllt."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:94
+msgid "normal"
+msgstr "normal"
+
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:18
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:10
+msgid "Normal"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:68
+msgid "Nov"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:54
+msgid "November"
+msgstr "November"
+
+#: resources/vue/components/MyCoursesTables.vue:87
+msgid "Nr."
+msgstr "No."
+
+#: resources/assets/javascripts/lib/raumzeit.js:15
+msgid "Nur buchbare Räume anzeigen"
+msgstr "Display bookable rooms only"
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:66
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:25
+msgid "nur für Lehrende"
+msgstr ""
+
+#: resources/vue/components/MyCoursesNewContentToggle.vue:4
+msgid "Nur neue Inhalte anzeigen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:31
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:15
+msgid "Nutzerspezifische ID übergeben"
+msgstr ""
+
+#: resources/assets/javascripts/lib/user_filter.js:64
+msgid "oder"
+msgstr "or"
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:96
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:38
+#, fuzzy
+msgid "OER-Material"
+msgstr "Materials"
+
+#: resources/vue/components/StudipDialog.vue:67
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:23
+msgid "Ok"
+msgstr "Ok"
+
+#: resources/assets/javascripts/studip-ui.js:67
+msgid "Okt"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:53
+msgid "Oktober"
+msgstr "October"
+
+#: resources/assets/javascripts/lib/overlapping.js:20
+#: resources/assets/javascripts/lib/overlapping.js:49
+msgid "Optional weitere Studiengangteile (max. 5)"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:29
+msgid "orange"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:39
+msgid "Orange"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:81
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:23
+#: resources/vue/components/courseware/CoursewareFolderBlock.vue:28
+#: resources/vue/components/courseware/CoursewareFolderBlock.vue:7
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:25
+#: resources/vue/components/courseware/CoursewareGalleryBlock.vue:3
+msgid "Ordner"
+msgstr "Folder"
+
+#: resources/vue/components/courseware/CoursewareFileChooser.vue:2
+msgid "Ordner-Filter"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:23
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:8
+msgid "Oval hinzufügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:19
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:13
+msgid "Polardiagramm"
+msgstr ""
+
+#: resources/vue/components/MemcachedCacheConfig.vue:17
+#: resources/vue/components/RedisCacheConfig.vue:10
+msgid "Port"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:181
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:3
+msgid "Position der neuen Seite"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:46
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:82
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:88
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:121
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:127
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:133
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:139
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:145
+msgid "Prima! Hier sind meine Vorschläge."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:65
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:7
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:33
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:7
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:14
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:7
+msgid "Quelle"
+msgstr "Resource"
+
+#: resources/vue/components/courseware/CoursewareManagerCopySelector.vue:7
+msgid "Quelle auswählen"
+msgstr "Select source"
+
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:24
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:18
+msgid "Quelle nachher"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:9
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:3
+msgid "Quelle vorher"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCodeBlock.vue:16
+#: resources/vue/components/courseware/CoursewareCodeBlock.vue:7
+#, fuzzy
+msgid "Quelltext"
+msgstr "Resource"
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:48
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:62
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:64
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:33
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:47
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:49
+msgid "Radius"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:54
+msgid "Rechte"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:24
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:9
+msgid "Rechteck hinzufügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:104
+msgid "riesig"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:18
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:12
+msgid "Ringdiagramm"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:24
+msgid "rot"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:85
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:108
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:37
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:36
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:349
+msgid "Rot"
+msgstr "Red"
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:65
+msgid "Rückgängig"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:87
+msgid "Sa"
+msgstr "Sat."
+
+#: resources/assets/javascripts/lib/calendar.js:20
+#: resources/assets/javascripts/studip-ui.js:78
+msgid "Samstag"
+msgstr "Saturday"
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:15
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:9
+msgid "Säulendiagramm"
+msgstr ""
+
+#: resources/assets/javascripts/lib/smiley_picker.js:83
+msgid "Schliessen"
+msgstr "Close"
+
+#: resources/vue/components/courseware/CoursewareRibbonToolbar.vue:22
+msgid "schließen"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/application.js:204
+#: resources/assets/javascripts/lib/dialog.js:423
+#: resources/assets/javascripts/lib/jsupdater.js:173
+#: resources/assets/javascripts/studip-ui.js:39
+#: resources/vue/components/StudipDialog.vue:77
+#: resources/vue/components/courseware/CoursewareBlockComments.vue:10
+#: resources/vue/components/courseware/CoursewareBlockExportOptions.vue:4
+#: resources/vue/components/courseware/CoursewareBlockFeedback.vue:10
+#: resources/vue/components/courseware/CoursewareBlockInfo.vue:26
+#: resources/vue/components/courseware/CoursewareDefaultContainer.vue:22
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:50
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:59
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:64
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:69
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:114
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:640
+msgid "Schließen"
+msgstr "Close"
+
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:19
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:11
+msgid "Schnell"
+msgstr ""
+
+#: resources/vue/components/BlubberPublicComposer.vue:15
+msgid "Schreib was, frag was. Enter zum Abschicken."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockFeedback.vue:17
+msgid "Schreiben Sie ein Feedback..."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:25
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:17
+msgid "Schriftart"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:37
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:29
+msgid "Schriftgröße"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:33
+msgid "schwarz"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:80
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:105
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:42
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:31
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:316
+msgid "Schwarz"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:20
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:12
+msgid "Sehr schnell"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:39
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:18
+#: resources/vue/components/courseware/CoursewareManagerFiling.vue:2
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:662
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:26
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:23
+msgid "Seite"
+msgid_plural "Seiten"
+msgstr[0] ""
+msgstr[1] ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:112
+msgid "Seite auf"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareActionWidget.vue:14
+msgid "Seite auf %{oerTitle} veröffentlichen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareActionWidget.vue:3
+#: resources/vue/components/courseware/CoursewareEmptyElementBox.vue:5
+#: resources/vue/components/courseware/CoursewareEmptyElementBox.vue:2
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:48
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:286
+msgid "Seite bearbeiten"
+msgstr "Edit page"
+
+#: resources/vue/components/courseware/CoursewareActionWidget.vue:11
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:62
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:293
+msgid "Seite exportieren"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareActionWidget.vue:6
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:67
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:290
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:637
+msgid "Seite hinzufügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareActionWidget.vue:17
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:304
+msgid "Seite löschen"
+msgstr "Delete page"
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:124
+msgid "Seite unwiderruflich löschen"
+msgstr ""
+
+#: resources/vue/mixins/courseware/export.js:189
+msgid "Seite wurde an OER Campus gesendet."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:213
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:15
+msgid "Seite wurde erstellt am"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:209
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:11
+msgid "Seite wurde erstellt von"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:7
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:8
+msgid "Seite zum kopieren für Lehrende freigeben"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:169
+msgid "Seiten"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:41
+msgid "Seiten sortieren"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:57
+msgid ""
+"Seiten, Abschnitte und Blöcke lassen sich aus einer anderen Veranstaltung "
+"und Ihren\n"
+"                        eigenen Inhalten kopieren.\n"
+"                        Hierzu wählen Sie auf der linken Seite unter \"Diese "
+"Courseware\" die Schaltfläche\n"
+"                        \"Seite an diese Stelle einfügen\", \"Abschnitt an "
+"diese Stelle einfügen\" oder\n"
+"                        \"Block an diese Stelle einfügen\". Wählen Sie dann "
+"auf der rechten Seite unter\n"
+"                        \"Kopieren\" erst die Veranstaltung aus der Sie "
+"kopieren möchten oder Ihre eigenen\n"
+"                        Inhalte. Wählen sie dann das Objekt aus das Sie "
+"kopieren möchten. Kopierbare Objekte\n"
+"                        erkennen Sie an den zwei nach links zeigenden gelben "
+"Pfeilen."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:37
+msgid ""
+"Seiten, Abschnitte und Blöcke lassen sich in ihrer Reihenfolge sortieren.\n"
+"                        Hierzu wählen Sie auf der linken Seite unter \"Diese "
+"Courseware\" die Schaltfläche \"Seiten sortieren\",\n"
+"                        \"Abschnitte sortieren\" oder \"Blöcke sortieren\".\n"
+"                        An den Objekten werden Pfeile angezeigt, mit diesen "
+"können die Objekte an die gewünschte\n"
+"                        Position gebracht werden. Um die neue Sortierung zu "
+"speichern wählen Sie \"Sortieren beenden\".\n"
+"                        Sie können die Änderungen auch rückgängig machen "
+"indem Sie \"Sortieren abbrechen\" wählen."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:47
+msgid ""
+"Seiten, Abschnitte und Blöcke lassen sich verschieben.\n"
+"                        Hierzu wählen Sie auf der linken Seite unter \"Diese "
+"Courseware\" die Schaltfläche\n"
+"                        \"Seite an diese Stelle einfügen\", \"Abschnitt an "
+"diese Stelle einfügen\" oder\n"
+"                        \"Block an diese Stelle einfügen\". Wählen Sie dann "
+"auf der rechten Seite unter\n"
+"                        \"Verschieben\" das Objekt aus das Sie verschieben "
+"möchten. Verschiebbare Objekte\n"
+"                        erkennen Sie an den zwei nach links zeigenden gelben "
+"Pfeilen."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:29
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:22
+msgid "Seitenverhältnis"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:27
+msgid "Sektion entfernen"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:101
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:35
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:32
+msgid "Sekunde"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:38
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:35
+msgid "Sekunden"
+msgstr "Seconds"
+
+#: resources/vue/components/courseware/CoursewareBlockComments.vue:9
+#: resources/vue/components/courseware/CoursewareBlockFeedback.vue:9
+msgid "Senden"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:66
+msgid "Sep"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:52
+msgid "September"
+msgstr "September"
+
+#: resources/vue/components/courseware/CoursewareToolsAdmin.vue:9
+msgid "Sequentiell"
+msgstr ""
+
+#: resources/vue/components/MemcachedCacheConfig.vue:24
+msgid "Server hinzufügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:164
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:106
+msgid "Sichtbar ab"
+msgstr "Visible from"
+
+#: resources/vue/components/courseware/CoursewareBlockActions.vue:46
+msgid "sichtbar setzen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:55
+msgid "Sichtbarkeit"
+msgstr "Visibility"
+
+#: resources/assets/javascripts/lib/multi_person_search.js:20
+msgid "Sie haben <%= count %> Personen ausgewählt"
+msgstr ""
+
+#: resources/assets/javascripts/lib/messages.js:209
+msgid "Sie haben nicht angegeben, wer die Nachricht empfangen soll!"
+msgstr "You did not specify who should receive the message!"
+
+#: resources/assets/javascripts/lib/admission.js:99
+msgid "Sie haben noch keine Anmelderegeln festgelegt."
+msgstr "You haven't yet defined any admission rule."
+
+#: resources/vue/components/courseware/CoursewareManagerCopySelector.vue:144
+msgid "Sie haben noch keine eigenen Inhalte angelegt"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:25
+msgid "Sie haben noch keine Lieblingsblöcke ausgewählt."
+msgstr ""
+
+#: resources/assets/javascripts/lib/admission.js:163
+msgid "Sie haben noch niemanden hinzugefügt."
+msgstr ""
+
+#: resources/vue/components/MyCourses.vue:7
+#: resources/vue/components/MyCourses.vue:2
+msgid ""
+"Sie haben zur Zeit keine Veranstaltungen belegt, an denen Sie teilnehmen "
+"können.\n"
+"                        <br>\n"
+"                        Bitte nutzen Sie <a :href=\"searchCoursesUrl\"> "
+"<strong>Veranstaltung suchen / hinzufügen</strong> </a> um sich für "
+"Veranstaltungen anzumelden.\n"
+"                    </br>"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:279
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:24
+msgid "Sie können diese Daten unter \"Seite bearbeiten\" verändern"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/forms.js:158
+msgid "Sie können nur %u Eintrag auswählen"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/forms.js:159
+msgid "Sie können nur %u Einträge auswählen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:363
+msgid "Sie müssen ein Mikrofon freigeben, um eine Aufnahme starten zu können."
+msgstr ""
+
+#: resources/assets/javascripts/lib/jsupdater.js:187
+msgid "Sie sind nicht mehr im System angemeldet."
+msgstr ""
+
+#: resources/assets/javascripts/lib/smiley_picker.js:70
+msgid "Smileys"
+msgstr "Smileys"
+
+#: resources/assets/javascripts/studip-ui.js:81
+msgid "So"
+msgstr "Sun."
+
+#: resources/assets/javascripts/lib/toolbar.js:54
+msgid "Soll der WYSIWYG Editor aktiviert werden?"
+msgstr ""
+
+#: resources/assets/javascripts/lib/resources.js:194
+msgid "Soll die ausgewählte Berechtigung wirklich entfernt werden?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:97
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:48
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:438
+msgid "Sonnenschein"
+msgstr ""
+
+#: resources/assets/javascripts/lib/calendar.js:21
+#: resources/assets/javascripts/studip-ui.js:72
+msgid "Sonntag"
+msgstr "Sunday"
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:99
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:41
+msgid "Sonstiges"
+msgstr "Miscellanea"
+
+#: resources/vue/components/courseware/CoursewareManagerContainer.vue:21
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:27
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:47
+msgid "Sortieren abbrechen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerContainer.vue:18
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:24
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:44
+msgid "Sortieren beenden"
+msgstr ""
+
+#: resources/vue/components/CacheAdministration.vue:28
+#: resources/vue/components/courseware/CoursewareBlockEdit.vue:6
+#: resources/vue/components/courseware/CoursewareDefaultContainer.vue:21
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:49
+msgid "Speichern"
+msgstr "Save"
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:59
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:18
+msgid "Speicherort"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCodeBlock.vue:12
+#: resources/vue/components/courseware/CoursewareCodeBlock.vue:3
+msgid "Sprache"
+msgstr "Language"
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:46
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:53
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:27
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:19
+msgid "Standard"
+msgstr "Standard"
+
+#: resources/vue/components/BlubberThread.vue:22
+msgid "Starte die Konversation jetzt!"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:43
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:17
+msgid "Startpunkt wählen"
+msgstr ""
+
+#: resources/assets/javascripts/lib/toolbar.js:72
+msgid "Status"
+msgstr "Status"
+
+#: resources/vue/components/courseware/CoursewareBlockComments.vue:16
+msgid "Stellen Sie eine Frage oder kommentieren Sie..."
+msgstr ""
+
+#: resources/assets/javascripts/mvv.js:109
+msgid "Studiengang suchen"
+msgstr "Search course of study"
+
+#: resources/assets/javascripts/lib/overlapping.js:11
+msgid "Studiengangteil suchen"
+msgstr "Search course of study"
+
+#: resources/vue/components/courseware/CoursewareStructuralElementPermissions.vue:13
+msgid "Studierende"
+msgstr "Students"
+
+#: resources/assets/javascripts/studip-ui.js:99
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:17
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:14
+msgid "Stunde"
+msgstr "Hour"
+
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:20
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:17
+msgid "Stunden"
+msgstr ""
+
+#: resources/assets/javascripts/mvv.js:230
+msgid "Suche zurücksetzen"
+msgstr "Reset search"
+
+#: resources/assets/javascripts/bootstrap/forms.js:167
+msgid "Suche..."
+msgstr "Searching..."
+
+#: resources/assets/javascripts/lib/multi_person_search.js:25
+msgid "Suchergebnisse"
+msgstr "Search results"
+
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:45
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:29
+msgid "Tab hinzufügen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:41
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:25
+msgid "Tab löschen"
+msgstr ""
+
+#: resources/vue/components/MyCoursesSidebarSwitch.vue:4
+msgid "Tabellarische Ansicht"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:8
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:5
+msgid "Tag"
+msgstr "Day"
+
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:11
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:8
+msgid "Tage"
+msgstr "Days"
+
+#: resources/assets/javascripts/lib/schedule.js:145
+msgid "Termindetails bearbeiten"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareConfirmBlock.vue:20
+#: resources/vue/components/courseware/CoursewareConfirmBlock.vue:3
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:10
+#: resources/vue/components/courseware/CoursewareTypewriterBlock.vue:2
+msgid "Text"
+msgstr "Text"
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:45
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:18
+msgid "Text Rückseite"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:37
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:10
+msgid "Text Vorderseite"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:54
+msgid "Texte"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:37
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:34
+msgid "Texteingabe mit Enter-Taste bestätigen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:44
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:27
+msgid "Textfarbe"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:116
+msgid "Textwerkzeug"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:19
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:3
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:24
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:3
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:63
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:201
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:5
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:3
+msgid "Titel"
+msgstr "Title"
+
+#: resources/vue/components/courseware/CoursewareAccordionContainer.vue:18
+#: resources/vue/components/courseware/CoursewareAccordionContainer.vue:4
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:20
+#: resources/vue/components/courseware/CoursewareTabsContainer.vue:4
+msgid "Title"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:32
+msgid "Transparent"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:30
+msgid "türkis"
+msgstr ""
+
+#: resources/vue/components/FilesTable.vue:203
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:13
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:7
+msgid "Typ"
+msgstr "Type"
+
+#: resources/vue/components/courseware/CoursewareCourseDashboard.vue:14
+msgid "Überblick"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareToolsAdmin.vue:22
+msgid "Übernehmen"
+msgstr "Accept"
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:61
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:3
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:44
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:3
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:20
+#: resources/vue/components/courseware/CoursewareDocumentBlock.vue:3
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:32
+#: resources/vue/components/courseware/CoursewareDownloadBlock.vue:3
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:29
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:3
+#: resources/vue/components/courseware/CoursewareFolderBlock.vue:24
+#: resources/vue/components/courseware/CoursewareFolderBlock.vue:3
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:38
+#: resources/vue/components/courseware/CoursewareTableOfContentsBlock.vue:3
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:10
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:3
+msgid "Überschrift"
+msgstr "Header"
+
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:59
+#: resources/vue/components/courseware/CoursewareDateBlock.vue:7
+msgid "Uhrzeit"
+msgstr "Time"
+
+#: resources/vue/mixins/MyCoursesMixin.js:48
+msgid ""
+"Um die Veranstaltung sichtbar zu machen, wählen Sie den Punkt \"Sichtbarkeit"
+"\" im Administrationsbereich der Veranstaltung."
+msgstr ""
+"In order to enable visibility of the course, please choose the tab "
+"\"visibility\" in the administration area of the course."
+
+#: resources/vue/mixins/MyCoursesMixin.js:50
+msgid ""
+"Um die Veranstaltung sichtbar zu machen, wenden Sie sich an Administrierende."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:94
+msgid "Um weleche Art von Datei(en) handelt es sich?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:168
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:110
+msgid "Unsichtbar ab"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDefaultBlock.vue:9
+msgid "unsichtbar für Nutzende ohne Schreibrecht"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockActions.vue:45
+msgid "unsichtbar setzen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:186
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:8
+msgid "Unterhalb der aktuellen Seite"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:237
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:8
+msgid "Unterseiten exportieren"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:285
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:30
+msgid "Unterseiten veröffentlichen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:40
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:23
+msgid "Untertitel"
+msgstr "Subtitle"
+
+#: resources/assets/javascripts/lib/toolbar.js:71
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:73
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:15
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:16
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:31
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:10
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:25
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:39
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:13
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:23
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:7
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:35
+#: resources/vue/components/courseware/CoursewareLinkBlock.vue:14
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:21
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:14
+msgid "URL"
+msgstr "URL"
+
+#: resources/vue/components/courseware/CoursewareManagerCopySelector.vue:8
+msgid "Veranstaltung auswählen"
+msgstr ""
+
+#: resources/assets/javascripts/lib/overlapping.js:84
+msgid "Veranstaltung berücksichtigen"
+msgstr "Regard course"
+
+#: resources/assets/javascripts/lib/overlapping.js:85
+msgid "Veranstaltung nicht berücksichtigen"
+msgstr "Do not regard course"
+
+#: resources/vue/components/courseware/CoursewareManagerCopySelector.vue:10
+msgid "Veranstaltungen"
+msgstr "Courses"
+
+#: resources/assets/javascripts/lib/schedule.js:129
+#: resources/assets/javascripts/lib/schedule.js:162
+#: resources/vue/mixins/MyCoursesMixin.js:61
+msgid "Veranstaltungsdetails"
+msgstr "Course details"
+
+#: resources/assets/javascripts/lib/overlapping.js:32
+msgid "Veranstaltungstyp auswählen (optional)"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:46
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:39
+msgid "Verhindern"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:112
+msgid "veröffentlichen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:113
+msgid "Veröffentlichen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:22
+#: resources/vue/components/courseware/CoursewareEmbedBlock.vue:19
+msgid "veröffentlicht auf"
+msgstr ""
+
+#: resources/vue/mixins/MyCoursesMixin.js:45
+msgid ""
+"Versteckte Veranstaltungen können über die Suchfunktionen nicht gefunden "
+"werden."
+msgstr "Hidden courses cannot be found via the search feature."
+
+#: resources/vue/components/courseware/CoursewareBlockHelper.vue:109
+msgid "Video"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:36
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:29
+msgid "Video startet automatisch"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:31
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:14
+msgid "Voll"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareRibbon.vue:18
+msgid "Vollbild ausschalten"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareRibbon.vue:17
+msgid "Vollbild einschalten"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:116
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:58
+msgid "von"
+msgstr "from"
+
+#: resources/assets/javascripts/studip-ui.js:41
+msgid "Vor"
+msgstr ""
+
+#: resources/vue/components/StudipDateTime.vue:42
+msgid "Vor %s Minuten"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareManagerElement.vue:49
+msgid "Vorgang läuft. Bitte warten Sie einen Moment."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:95
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:37
+msgid "Vorlage"
+msgstr "Template"
+
+#: resources/assets/javascripts/studip-ui.js:106
+msgid "vorm."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:260
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:5
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:530
+msgid "Vorschaubild"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:25
+msgid ""
+"Wählen Sie auf der linken Seite \"Diese Courseware\" aus.\n"
+"                        Beim laden der Seite ist dies immer gewählt. Die "
+"Überschrift\n"
+"                        gibt an welche Seite Sie grade ausgewählt haben. "
+"Darunter befinden\n"
+"                        sich die Abschnitte der Seite und innerhalb dieser "
+"dessen Blöcke.\n"
+"                        Möchten Sie eine Seite die unterhalb der gewählten "
+"liegt bearbeiten,\n"
+"                        können Sie diese über die Schaltflächen im Bereich "
+"\"Seiten\" wählen.\n"
+"                        Über der Überschrift wird eine Navigation "
+"eingeblendet, mit dieser können\n"
+"                        Sie beliebig weit hoch in der Hierarchie springen."
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:69
+#: resources/vue/components/courseware/CoursewareAudioBlock.vue:11
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:12
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:27
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:6
+#: resources/vue/components/courseware/CoursewareBeforeAfterBlock.vue:21
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:17
+#: resources/vue/components/courseware/CoursewareVideoBlock.vue:10
+msgid "Web-Adresse"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:81
+#: resources/vue/components/courseware/CoursewareHeadlineBlock.vue:106
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:33
+#: resources/vue/components/courseware/CoursewareKeyPointBlock.vue:32
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:324
+msgid "Weiß"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:73
+msgid "weiter"
+msgstr "continue"
+
+#: resources/assets/javascripts/bootstrap/raumzeit.js:157
+msgid ""
+"Wenn Sie die regelmäßige Zeit ändern, verlieren Sie die Raumbuchungen für "
+"alle in der Zukunft liegenden Termine! Sind Sie sicher, dass Sie die "
+"regelmäßige Zeit ändern möchten?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:9
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:70
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:6
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:54
+msgid "Werk"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:31
+#: resources/vue/components/courseware/CoursewareChartBlock.vue:25
+msgid "Wert"
+msgstr "Value"
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:63
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:22
+msgid "Werte anderer Nutzer anzeigen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:115
+msgid "Wie finde ich die gewünschte Stelle?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:160
+msgid "Wie kopiere ich Objekte?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:130
+msgid "Wie sortiere ich Objekte?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCourseManager.vue:145
+msgid "Wie verschiebe ich Objekte?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareWellcomeScreen.vue:4
+msgid "Willkommen bei Courseware"
+msgstr ""
+
+#: resources/assets/javascripts/lib/admission.js:23
+msgid "Wird geladen"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:132
+msgid "wirklich löschen?"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:89
+msgid "Wo"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/studip_helper_attributes.js:177
+msgid "Wollen Sie die Aktion wirklich ausführen?"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/raumzeit.js:138
+msgid "Wollen Sie die gewünschten Termine wirklich löschen?"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/resources.js:902
+msgid "Wollen Sie die im Plan gezeigten Anfragen wirklich buchen?"
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/consultations.js:16
+msgid "Wollen Sie diese Termine wirklich löschen?"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:666
+msgid "wurde erfolgreich angelegt."
+msgstr ""
+
+#: resources/assets/javascripts/bootstrap/forms.js:29
+msgid "Zeichen verbleibend: "
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:111
+msgid "Zeichenwerkzeug"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:98
+msgid "Zeit"
+msgstr "Time"
+
+#: resources/assets/javascripts/studip-ui.js:97
+msgid "Zeit wählen"
+msgstr ""
+
+#: resources/assets/javascripts/studip-ui.js:104
+msgid "Zeitzone"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:83
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:91
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:68
+#: resources/vue/components/courseware/CoursewareImageMapBlock.vue:76
+msgid "Ziel des Links"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:43
+#: resources/vue/components/courseware/CoursewareIframeBlock.vue:27
+msgid "Zufallszeichen für Verschlüsselung (Salt)"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockInfo.vue:22
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:221
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:23
+msgid "Zuletzt bearbeitet am"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareBlockInfo.vue:18
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:217
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:19
+msgid "Zuletzt bearbeitet von"
+msgstr ""
+
+#: resources/vue/components/FilesTable.vue:123
+msgid "Zum Hauptordner"
+msgstr "Go to main folder"
+
+#: resources/vue/components/BlubberGlobalstream.vue:17
+msgid "Zur Diskussion"
+msgstr ""
+
+#: resources/assets/javascripts/lib/smiley_picker.js:75
+msgid "Zur Gesamtübersicht"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:93
+msgid "zur nächsten Karte"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareDialogCardsBlock.vue:50
+msgid "zur vorherigen Karte"
+msgstr ""
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:72
+msgid "zurück"
+msgstr "back"
+
+#: resources/assets/javascripts/studip-ui.js:40
+msgid "Zurück"
+msgstr "Back"
+
+#: resources/vue/components/courseware/CoursewareCanvasBlock.vue:60
+msgid "Zurücksetzen"
+msgstr "Reset"
+
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:92
+#: resources/vue/components/courseware/CoursewareStructuralElement.vue:34
+msgid "Zweck"
+msgstr "Purpose"
+
+#: resources/vue/components/courseware/CoursewareToolsBlockadder.vue:200
+msgid "zweites Element"
+msgstr ""
diff --git a/locale/en/LC_MESSAGES/studip.mo.old b/locale/en/LC_MESSAGES/studip.mo.old
deleted file mode 100644
index 8d4f9d415d2855fe8e0892926fb5cf65899f4ac4..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 939906
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

diff --git a/locale/en/LC_MESSAGES/studip.po.old b/locale/en/LC_MESSAGES/studip.po.old
deleted file mode 100644
index a826b6fb869..00000000000
--- a/locale/en/LC_MESSAGES/studip.po.old
+++ /dev/null
@@ -1,54867 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-# Translators:
-# honkmaster <tiemerding-online@web.de>, 2021
-# Arno <transifex@senlogik.de>, 2021
-# Datenpunk <transifex@tillgloeggler.de>, 2021
-# André Noack <noackorama@googlemail.com>, 2021
-# Nils Gehrke <nils.gehrke@uni-goettingen.de>, 2021
-# Marco <bohnsack@me.com>, 2021
-# David Broz, 2021
-# Jakob Diel <jakobdiel@gmail.com>, 2021
-# M S <strohm@data-quest.de>, 2021
-# Jan-Hendrik Willms <tleilax@gmail.com>, 2021
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-05-20 15:01+0200\n"
-"PO-Revision-Date: 2021-01-26 11:15+0000\n"
-"Last-Translator: Jan-Hendrik Willms <tleilax@gmail.com>, 2021\n"
-"Language-Team: English (https://www.transifex.com/studip/teams/36183/en/)\n"
-"Language: en\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: ../public/admin_range_tree.php:46
-msgid "Einrichtungshierarchie bearbeiten"
-msgstr "nEdit institute hierarchy"
-
-#: ../public/register2.php:21 ../public/register1.php:23
-msgid "Registrierung ausgeschaltet"
-msgstr "Registration disabled"
-
-#: ../public/register2.php:22 ../public/register1.php:24
-msgid ""
-"In dieser Installation ist die Möglichkeit zur Registrierung ausgeschaltet."
-msgstr "Registration is disabled for this installation."
-
-#: ../public/register2.php:26 ../public/register1.php:28
-#: ../public/register1.php:42
-msgid "Hier geht es zur Startseite."
-msgstr "Go to start page."
-
-#: ../public/register2.php:40
-msgid "Registrierung erfolgreich"
-msgstr "Successful registration"
-
-#: ../public/show_evaluation.php:102 ../public/show_evaluation.php:105
-msgid "Stud.IP Online-Evaluation"
-msgstr "Stud.IP online evaluation"
-
-#: ../public/show_evaluation.php:131
-msgid "Sie haben keine Antworten gewählt."
-msgstr "You have not selected any reply."
-
-#: ../public/show_evaluation.php:138
-#, php-format
-msgid ""
-"Sie haben %s erforderliche Fragen nicht beantwortet. Diese wurden gesondert "
-"markiert."
-msgstr ""
-"You have left %s mandatory questions unanswered. These have been specially "
-"marked."
-
-#: ../public/wiki.php:68
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:115
-#: ../lib/modules/CoreWiki.class.php:58 ../lib/modules/CoreWiki.class.php:98
-#: ../app/controllers/archive.php:21 ../app/views/settings/general.php:122
-#: ../app/views/admin/sem_classes/details.php:217
-msgid "Wiki"
-msgstr "Wiki"
-
-#: ../public/wiki.php:96 ../lib/modules/CoreWiki.class.php:111
-msgid "Alle Seiten"
-msgstr "All pages"
-
-#: ../public/wiki.php:103 ../lib/modules/CoreWiki.class.php:110
-msgid "Neue Seiten"
-msgstr "New pages"
-
-#: ../public/wiki.php:110 ../public/wiki.php:117
-msgid "Seite mit Änderungen"
-msgstr "Changed pages"
-
-#: ../public/wiki.php:124
-msgid "Versionen dieser Seite"
-msgstr "Versions of this page"
-
-#: ../public/wiki.php:131 ../lib/wiki.inc.php:1069
-msgid "Seiten exportieren"
-msgstr "Export pages"
-
-#: ../public/wiki.php:144 ../public/wiki.php:174
-msgid "Es wurde keine zu editierende Seite übergeben!"
-msgstr "No page has not been transferred for editing!"
-
-#: ../public/wiki.php:150
-msgid "Sie haben keine Berechtigung, Seiten zu editieren!"
-msgstr "You do not have the permission to edit pages!"
-
-#: ../public/wiki.php:153 ../app/controllers/siteinfo.php:100
-#: ../app/views/siteinfo/edit.php:13
-msgid "Seite bearbeiten"
-msgstr "Edit page"
-
-#: ../public/wiki.php:169
-msgid ""
-"Sie haben keine Berechtigung, in dieser Veranstaltung Seiten zu editieren!"
-msgstr "You are not allowed to edit pages in this course!"
-
-#: ../public/wiki.php:182
-#, php-format
-msgid ""
-"Die Wiki-Seite \"%s\" existiert bereits. Änderungen hier überschreiben diese "
-"Seite!"
-msgstr ""
-"The wiki page \"%s\" already exists. Changes made here will overwrite this "
-"page!"
-
-#: ../public/wiki.php:239
-msgid "Aktuelle Seite"
-msgstr "Current page"
-
-#: ../public/wiki.php:246 ../lib/classes/WikiFormat.php:175
-#, php-format
-msgid "Sie haben keine Berechtigung, die Seite %s zu lesen!"
-msgstr "You are not allowed to read the page %s!"
-
-#: ../public/admin_evaluation.php:56
-msgid "Verwaltung von Evaluationen"
-msgstr "Evaluation management"
-
-#: ../public/eval_summary.php:47 ../public/eval_summary_export.php:57
-#: ../public/eval_config.php:69
-msgid ""
-"Diese Evaluation ist nicht vorhanden oder Sie haben nicht ausreichend Rechte!"
-msgstr "Evaluation not available or no permission!"
-
-#: ../public/eval_summary.php:193 ../public/eval_summary.php:263
-#: ../public/eval_summary.php:302 ../public/eval_summary_export.php:284
-#: ../public/eval_summary_export.php:295
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:11
-#: ../public/plugins_packages/core/Forum/views/index/index.php:195
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2681
-#: ../lib/evaluation/evaluation_admin_template.lib.php:468
-#: ../lib/evaluation/evaluation_admin_template.lib.php:528
-#: ../lib/evaluation/evaluation_admin_template.lib.php:620
-#: ../app/views/messages/read.php:91
-msgid "Antworten"
-msgstr "Reply"
-
-#: ../public/eval_summary.php:206 ../public/eval_summary.php:310
-#: ../public/eval_summary_export.php:183 ../public/eval_summary_export.php:279
-#: ../public/eval_summary_export.php:289
-msgid "Anzahl der Teilnehmenden"
-msgstr "Number of participants"
-
-#: ../public/eval_summary.php:263
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:320
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:355
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:301
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:315
-#: ../lib/evaluation/evaluation_show.lib.php:410
-#: ../app/views/questionnaire/_overview_questionnaire.php:112
-msgid "Auswertung"
-msgstr "Assessment"
-
-#: ../public/eval_summary.php:308 ../public/eval_summary_export.php:294
-#: ../app/views/resources/room_request/resolve.php:114
-msgid "Antwort"
-msgstr "Reply"
-
-#: ../public/eval_summary.php:312 ../public/eval_summary.php:470
-#: ../public/eval_summary_export.php:302 ../public/eval_summary_export.php:522
-msgid "Werte ohne Enthaltungen"
-msgstr "Values without abstentions"
-
-#: ../public/eval_summary.php:381
-msgid "Zum Darstellungstyp Tabelle wechseln"
-msgstr "Switch to display type table"
-
-#: ../public/eval_summary.php:385
-msgid "Zum Darstellungstyp Normal wechseln"
-msgstr "Switch to display type normal"
-
-#: ../public/eval_summary.php:449 ../public/eval_summary_export.php:481
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:113
-#: ../lib/meine_seminare_func.inc.php:640
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:68
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:97
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:76
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:50
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:79
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:298
-#: ../lib/classes/ModulesNotification.class.php:64
-#: ../lib/classes/calendar/SingleCalendar.php:525
-#: ../lib/modules/CoreStudygroupParticipants.class.php:19
-#: ../lib/modules/CoreStudygroupParticipants.class.php:32
-#: ../lib/modules/CoreParticipants.class.php:57
-#: ../lib/modules/CoreParticipants.class.php:124
-#: ../lib/modules/CoreParticipants.class.php:133
-#: ../lib/modules/CoreParticipants.class.php:166 ../lib/archiv.inc.php:188
-#: ../app/controllers/course/members.php:59
-#: ../app/controllers/course/basicdata.php:148
-#: ../app/controllers/course/studygroup.php:506
-#: ../app/controllers/admin/courses.php:1102
-#: ../app/controllers/calendar/calendar.php:385
-#: ../app/views/course/details/index.php:189
-#: ../app/views/course/lti/grades.php:10
-#: ../app/views/evaluation/_evaluation.php:48
-#: ../app/views/admin/courses/_course.php:107
-#: ../app/views/admin/courses/courses.php:147
-#: ../app/views/calendar/group/_attendees.php:29
-#: ../app/views/questionnaire/overview.php:11
-msgid "Teilnehmende"
-msgstr "Participants "
-
-#: ../public/eval_summary.php:520 ../public/eval_summary_export.php:581
-#: ../lib/evaluation/classes/db/EvaluationObjectDB.class.php:57
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1731
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2060
-msgid "Systemweite Evaluationen"
-msgstr "System wide evaluation"
-
-#: ../public/eval_summary.php:523 ../public/eval_summary_export.php:584
-#: ../lib/models/Course.class.php:648 ../lib/classes/EventLog.php:25
-#: ../lib/classes/Context.php:170 ../lib/cronjobs/check_admission.class.php:81
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1743
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1747
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1752
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1758
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2071
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2078
-#: ../lib/functions.php:77 ../lib/functions.php:82
-#: ../templates/sidebar/time-range-filter.php:15
-#: ../app/controllers/admission/courseset.php:453
-#: ../app/controllers/admission/courseset.php:482
-#: ../app/controllers/admission/courseset.php:568
-#: ../app/controllers/admin/lockrules.php:49
-#: ../app/controllers/admin/lockrules.php:74
-#: ../app/controllers/admin/banner.php:41
-#: ../app/views/resources/room_request/resolve.php:37
-#: ../app/views/course/topics/copy.php:21
-#: ../app/views/course/grouping/parent.php:35
-#: ../app/views/settings/notification.php:16
-#: ../app/views/admin/autoinsert/manual.php:40
-#: ../app/views/admin/autoinsert/index.php:28
-#: ../app/views/admin/autoinsert/_search.php:14
-#: ../app/views/admin/courses/courses.php:75
-#: ../app/views/admin/user/_priority_list.php:20
-#: ../app/views/admin/user/_course_files.php:28
-#: ../app/views/admin/user/_course_list.php:26
-#: ../app/views/admin/user/_waiting_list.php:21
-#: ../app/views/my_courses/groups.php:9
-#: ../app/views/calendar/single/_event_data.php:13
-#: ../app/views/calendar/single/_tooltip.php:12
-#: ../app/views/questionnaire/assign_step1.php:19
-#: ../app/views/blubber/compose.php:21
-msgid "Veranstaltung"
-msgstr "Course"
-
-#: ../public/eval_summary.php:528 ../public/eval_summary_export.php:589
-#: ../public/admin_sem_tree.php:260 ../lib/models/StudipNews.class.php:211
-#: ../lib/models/Course.class.php:380 ../lib/models/Course.class.php:539
-#: ../lib/meine_seminare_func.inc.php:163
-#: ../lib/meine_seminare_func.inc.php:185
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:798
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:1418
-#: ../lib/extern/modules/views/ExternSemBrowse.class.php:450
-#: ../lib/extern/modules/views/ExternSemBrowseTable.class.php:350
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:448
-#: ../lib/classes/SemBrowse.class.php:606
-#: ../lib/classes/SemBrowse.class.php:883
-#: ../lib/classes/globalsearch/GlobalSearchModules.php:123
-#: ../lib/classes/globalsearch/GlobalSearchModules.php:124
-#: ../lib/classes/StudipSemTreeView.class.php:179
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:632
-#: ../lib/classes/searchtypes/MyCoursesSearch.class.php:114
-#: ../lib/classes/searchtypes/StandardSearch.class.php:114
-#: ../lib/classes/searchtypes/StandardSearch.class.php:137
-#: ../lib/classes/searchtypes/SeminarSearch.class.php:67
-#: ../lib/functions.php:798 ../templates/filesystem/timed_folder/edit.php:6
-#: ../templates/filesystem/timed_folder/edit.php:7
-#: ../templates/filesystem/timed_folder/edit.php:13
-#: ../templates/filesystem/timed_folder/edit.php:14
-#: ../app/views/shared/modul/_modul.php:170
-#: ../app/views/shared/modul/_modullv.php:80
-#: ../app/views/module/module/modulteil.php:185
-#: ../app/views/module/module/modulteil.php:188
-#: ../app/views/module/module/copy_form.php:44
-#: ../app/views/module/module/copy_form.php:62
-#: ../app/views/module/module/modul.php:423
-#: ../app/views/module/module/modul.php:426
-#: ../app/views/admin/banner/index.php:43
-msgid "unbegrenzt"
-msgstr "unlimited"
-
-#: ../public/eval_summary.php:538 ../public/eval_summary_export.php:599
-#: ../lib/evaluation/classes/db/EvaluationObjectDB.class.php:79
-#: ../lib/evaluation/classes/db/EvaluationObjectDB.class.php:83
-#: ../lib/evaluation/classes/db/EvaluationObjectDB.class.php:169
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1733
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2062
-#: ../lib/navigation/AvatarNavigation.php:27
-#: ../lib/navigation/ProfileNavigation.php:19
-#: ../lib/navigation/ProfileNavigation.php:58 ../app/controllers/news.php:52
-#: ../app/controllers/news.php:618 ../app/controllers/profile.php:46
-msgid "Profil"
-msgstr "Profile"
-
-#: ../public/eval_summary.php:543 ../public/eval_summary_export.php:604
-#: ../public/show_bereich.php:81 ../lib/models/Institute.class.php:224
-#: ../lib/models/Institute.class.php:238 ../lib/models/MvvContact.php:439
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:87
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:142
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:242
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:81
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:127
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:230
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:78
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:121
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:201
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:66
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:123
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:236
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:354
-#: ../lib/extern/modules/views/ExternSemBrowse.class.php:61
-#: ../lib/extern/modules/views/ExternSemBrowseTable.class.php:59
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:201
-#: ../lib/extern/admin_extern.inc.php:261
-#: ../lib/extern/admin_extern.inc.php:293 ../lib/classes/SemBrowse.class.php:49
-#: ../lib/classes/EventLog.php:26 ../lib/classes/Context.php:173
-#: ../lib/classes/sidebar/InstituteSelectWidget.class.php:25
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1748
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1753
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1759
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2072
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2079
-#: ../lib/functions.php:93 ../config/config.inc.php:168
-#: ../config/config_develop.inc.php:193
-#: ../templates/admin/institute_search.php:7
-#: ../app/controllers/search/globalsearch.php:100
-#: ../app/controllers/admin/lockrules.php:50
-#: ../app/controllers/admin/lockrules.php:75
-#: ../app/controllers/admin/autoinsert.php:226
-#: ../app/controllers/admin/courseplanning.php:565
-#: ../app/controllers/admin/banner.php:42
-#: ../app/controllers/admin/courses.php:1335
-#: ../app/views/public_courses/index.php:38
-#: ../app/views/search/module/index.php:38
-#: ../app/views/search/archive/index.php:38
-#: ../app/views/module/institute/index.php:5
-#: ../app/views/settings/studies/institute.php:16
-#: ../app/views/files_dashboard/_search_tr.php:63
-#: ../app/views/admin/courses/sidebar.php:17
-#: ../app/views/admin/user/new.php:161 ../app/views/admin/user/index.php:74
-#: ../app/views/admin/plugin/default_activation.php:21
-#: ../app/views/admin/datafields/new.php:113
-#: ../app/views/admin/datafields/edit.php:150
-#: ../app/views/questionnaire/assign.php:23
-#: ../app/views/studiengaenge/studiengaenge/index.php:16
-msgid "Einrichtung"
-msgstr "Institute"
-
-#: ../public/eval_summary.php:547 ../public/eval_summary_export.php:608
-#: ../lib/models/Test.php:139 ../lib/models/BlubberThread.php:393
-#: ../lib/models/BlubberThread.php:415 ../lib/models/BlubberThread.php:868
-#: ../lib/models/resources/ResourceRequest.class.php:1300
-#: ../lib/models/Freetext.php:130 ../lib/models/OERMaterial.php:571
-#: ../lib/models/BlubberComment.php:84 ../lib/models/BlubberComment.php:89
-#: ../lib/models/Vote.php:143 ../lib/models/OERMaterialUser.php:30
-#: ../lib/classes/globalsearch/GlobalSearchFiles.php:230
-#: ../lib/classes/globalsearch/GlobalSearchMessages.php:71
-#: ../lib/classes/globalsearch/GlobalSearchBlubber.php:120
-#: ../lib/wiki.inc.php:394 ../lib/user_visible.inc.php:205
-#: ../lib/calendar/CalendarWriterICalendar.class.php:531
-#: ../lib/functions.php:346 ../lib/functions.php:378
-#: ../lib/filesystem/LibraryFile.class.php:132
-#: ../templates/register/form.php:116 ../templates/wiki/pageversions.php:46
-#: ../templates/wiki/list.php:59
-#: ../templates/blubber/coursegroup_context.php:27
-#: ../templates/blubber/private_context.php:33
-#: ../app/controllers/messages.php:630
-#: ../app/controllers/resources/admin.php:646
-#: ../app/controllers/resources/admin.php:647
-#: ../app/controllers/resources/admin.php:654
-#: ../app/controllers/resources/admin.php:655
-#: ../app/controllers/resources/admin.php:687
-#: ../app/controllers/resources/admin.php:688
-#: ../app/controllers/resources/admin.php:695
-#: ../app/controllers/resources/admin.php:696
-#: ../app/controllers/resources/resource.php:631
-#: ../app/controllers/course/basicdata.php:356
-#: ../app/controllers/course/basicdata.php:357
-#: ../app/views/admission/courseset/configure.php:51
-#: ../app/views/oer/market/details.php:169
-#: ../app/views/oer/mymaterial/edit.php:168
-#: ../app/views/resources/booking/index.php:16
-#: ../app/views/resources/booking/index.php:52
-#: ../app/views/resources/booking/index.php:61
-#: ../app/views/resources/booking/index.php:79
-#: ../app/views/resources/_common/building.php:26
-#: ../app/views/resources/_common/_request_info.php:46
-#: ../app/views/resources/_common/_request_info.php:58
-#: ../app/views/resources/_common/_request_info.php:90
-#: ../app/views/resources/_common/_permission_table.php:124
-#: ../app/views/web_migrate/index.php:73
-#: ../app/views/course/studygroup/_members_gallery.php:27
-#: ../app/views/settings/account/index.php:3 ../app/views/admin/user/new.php:79
-#: ../app/views/admin/user/_results.php:112
-#: ../app/views/admin/user/edit.php:168 ../app/views/admin/user/edit.php:323
-msgid "unbekannt"
-msgstr "unknown"
-
-#: ../public/eval_summary.php:557 ../public/eval_summary.php:597
-#: ../public/eval_config.php:57
-msgid "Evaluations-Auswertung"
-msgstr "Evaluation assessment"
-
-#: ../public/eval_summary.php:558
-msgid "PDF-Export"
-msgstr "PDF export"
-
-#: ../public/eval_summary.php:558 ../lib/wiki.inc.php:1316
-#: ../app/controllers/resources/resource.php:531
-#: ../app/controllers/calendar/instschedule.php:107
-#: ../app/views/calendar/schedule/index.php:46
-msgid "Druckansicht"
-msgstr "Print view"
-
-#: ../public/eval_summary.php:558
-msgid "Auswertung konfigurieren"
-msgstr "Configure assessment"
-
-#: ../public/eval_summary.php:563 ../public/eval_summary_export.php:651
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1860
-msgid "Diese Evaluation ist folgenden Bereichen zugeordnet:"
-msgstr "This evaluation has been assigned to the following areas:"
-
-#: ../public/eval_summary.php:577 ../public/eval_summary_export.php:663
-msgid "Teilnehmende insgesamt"
-msgstr "Total number of participants"
-
-#: ../public/eval_summary.php:578 ../public/eval_summary_export.php:664
-msgid "Die Teilnahme war nicht anonym."
-msgstr "Participation was not anonymous."
-
-#: ../public/eval_summary.php:578 ../public/eval_summary_export.php:664
-#: ../lib/evaluation/evaluation_show.lib.php:254
-msgid "Die Teilnahme war anonym."
-msgstr "The participation was anonymous."
-
-#: ../public/eval_summary.php:579 ../public/eval_summary_export.php:665
-msgid "Eigentümer"
-msgstr "Owner"
-
-#: ../public/eval_summary.php:579 ../public/eval_summary_export.php:665
-msgid "Unbekannter Nutzer"
-msgstr "Unknown user"
-
-#: ../public/activate_email.php:27
-msgid ""
-"Sollten Sie keine E-Mail erhalten haben, können Sie sich einen neuen "
-"Aktivierungsschlüssel zuschicken lassen. Geben Sie dazu Ihre gewünschte E-"
-"Mail-Adresse unten an"
-msgstr ""
-"If you have not received any e-mail yet, then you may request a new "
-"confirmation code. To this end, please enter your e-mail address below"
-
-#: ../public/activate_email.php:30
-#: ../lib/extern/elements/ExternElementContact.class.php:67
-#: ../lib/extern/elements/ExternElementContact.class.php:97
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:71
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:66
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:86
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:64
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:71
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:75
-#: ../lib/extern/modules/ExternModulePersons.class.php:61
-#: ../lib/classes/LockRules.class.php:228
-#: ../lib/evaluation/classes/EvaluationExportManagerCSV.class.php:141
-#: ../templates/register/form.php:140 ../templates/login_emailactivation.php:32
-#: ../app/controllers/admission/courseset.php:453
-#: ../app/controllers/admission/courseset.php:480
-#: ../app/controllers/admission/courseset.php:599
-#: ../app/controllers/shared/contacts.php:829
-#: ../app/controllers/questionnaire.php:371
-#: ../app/controllers/course/members.php:1788
-#: ../app/controllers/institute/members.php:120
-#: ../app/views/shared/contacts/add_ansprechpartner.php:93
-#: ../app/views/profile/index.php:13 ../app/views/tfa/setup.php:16
-#: ../app/views/tfa/index.php:3 ../app/views/settings/account/index.php:110
-#: ../app/views/settings/account/index.php:116
-#: ../app/views/admin/user/new.php:143 ../app/views/admin/user/new.php:146
-#: ../app/views/admin/user/_results.php:34 ../app/views/admin/user/index.php:20
-#: ../app/views/admin/user/edit.php:229 ../app/views/contact/index.php:34
-#: ../app/views/institute/overview/index.php:33
-#: ../app/views/start/edit_mail_address.php:9
-msgid "E-Mail"
-msgstr "E-mail"
-
-#: ../public/activate_email.php:33
-#: ../lib/classes/calendar/SingleCalendar.php:522
-#: ../lib/classes/calendar/SingleCalendar.php:637
-#: ../templates/login_emailactivation.php:33
-#: ../app/controllers/calendar/contentbox.php:164
-#: ../app/controllers/calendar/calendar.php:372
-#: ../app/views/calendar/single/_event_data.php:50
-#: ../app/views/calendar/single/edit.php:187
-#: ../app/views/calendar/single/_tooltip.php:42
-msgid "Wiederholung"
-msgstr "Repetition"
-
-#: ../public/activate_email.php:44
-msgid ""
-"Sie haben Ihre E-Mail-Adresse geändert. \n"
-"    Um diese frei zu schalten müssen Sie den Ihnen an Ihre neue Adresse "
-"zugeschickten Aktivierungs Schlüssel im unten stehenden Eingabefeld "
-"eintragen."
-msgstr ""
-"You have changed your e-mail address. In order to activate it, you have to "
-"enter in the input field below the confirmation code which has been sent to "
-"the new e-mail address. "
-
-#: ../public/activate_email.php:47
-msgid "Aktivierungs Schlüssel"
-msgstr "Confirmation code"
-
-#: ../public/activate_email.php:64 ../templates/login_emailactivation.php:9
-msgid "E-Mail Aktivierung"
-msgstr "E-mail activation"
-
-#: ../public/activate_email.php:80
-msgid "Ihre E-Mail-Adresse wurde erfolgreich geändert."
-msgstr "Your e-mail address has been changed."
-
-#: ../public/activate_email.php:81 ../public/activate_email.php:85
-msgid "Zum Login"
-msgstr "To the login page"
-
-#: ../public/activate_email.php:84
-msgid "Ihre E-Mail-Adresse ist bereits geändert."
-msgstr "Your e-mail address has already been changed."
-
-#: ../public/activate_email.php:88
-msgid "Falscher Bestätigungscode."
-msgstr "Invalid confirmation code."
-
-#: ../public/activate_email.php:95
-#, php-format
-msgid ""
-"Sie können sich %seinloggen%s und sich den Bestätigungscode neu oder an eine "
-"andere E-Mail-Adresse schicken lassen."
-msgstr ""
-"You may %slogin%s and request the confirmation code to be newly generated or "
-"to be send to a different e-mail address."
-
-#: ../public/activate_email.php:110
-msgid ""
-"Die eingegebenen E-Mail-Adressen stimmen nicht überein. Bitte überprüfen Sie "
-"Ihre Eingabe."
-msgstr ""
-"E-mail address and re-type e-mail address don't match. Please check your "
-"input."
-
-#: ../public/seminar_main.php:55 ../lib/functions.php:127
-#: ../app/controllers/course/overview.php:26
-#: ../app/controllers/institute/overview.php:36
-msgid "Sie haben kein Objekt gewählt."
-msgstr "You have not selected any object."
-
-#: ../public/sendfile.php:118
-msgid "Sie haben keine Zugriffsberechtigung für diesen Download!"
-msgstr "No permission to download this file!"
-
-#: ../public/sendfile.php:156
-#: ../lib/classes/JsonApi/Routes/Files/FileRefsContentShow.php:50
-msgid ""
-"Diese Datei wird von einem externen Server geladen und ist dort momentan "
-"nicht erreichbar!"
-msgstr ""
-"This file is to be loaded from an external server and presently is not "
-"accessible there!"
-
-#: ../public/sendfile.php:166 ../public/sendfile.php:185
-#: ../lib/classes/JsonApi/Routes/Files/FileRefsContentShow.php:64
-msgid "Fehler beim Laden der Inhalte der Datei"
-msgstr "Error while loading the content of the file"
-
-#: ../public/admin_elearning_interface.php:38
-msgid "Verwaltung der Lernmodul-Schnittstelle"
-msgstr "Learning module interface management"
-
-#: ../public/admin_elearning_interface.php:81
-#: ../public/admin_elearning_interface.php:83
-msgid "Bitte wählen Sie ein angebundenes System für die Schnittstelle: "
-msgstr "Please select a coupled system for the interface:"
-
-#: ../public/admin_elearning_interface.php:93
-#: ../public/admin_elearning_interface.php:103
-#: ../lib/evaluation/evaluation_show.lib.php:61
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:129
-#: ../templates/unhandled_exception.php:2
-#: ../app/views/resources/admin/user_permissions.php:58
-#: ../app/views/localizations/show.php:14
-#: ../app/views/admin/cronjobs/logs/display.php:29
-msgid "Fehler"
-msgstr "Error"
-
-#: ../public/admin_elearning_interface.php:97
-#: ../public/admin_elearning_interface.php:113 ../public/admin_sem_tree.php:288
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:669
-#: ../app/views/course/enrolment/apply.php:15
-#: ../app/views/course/enrolment/apply.php:50
-msgid "OK"
-msgstr "Ok"
-
-#: ../public/admin_elearning_interface.php:104
-msgid "Beim Laden der Schnittstelle sind Fehler aufgetreten. "
-msgstr "An error occurred while loading the interface."
-
-#: ../public/admin_elearning_interface.php:108
-msgid "Die Schnittstelle wurde automatisch deaktiviert!"
-msgstr "Interface automatically deactivated!"
-
-#: ../public/admin_elearning_interface.php:113
-#, php-format
-msgid "Die Schnittstelle zum %s-System ist korrekt konfiguriert."
-msgstr "The interface to the %s-system has correctly been configured."
-
-#: ../public/admin_elearning_interface.php:123
-#: ../public/admin_elearning_interface.php:133
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:68
-#: ../lib/extern/modules/ExternModuleLecturestable.class.php:67
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:77
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:69
-#: ../lib/classes/LockRules.class.php:175
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:280
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:316
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:351
-#: ../app/controllers/admission/courseset.php:453
-#: ../app/controllers/shared/contacts.php:831
-#: ../app/controllers/institute/members.php:469
-#: ../app/controllers/institute/members.php:554
-#: ../app/views/consultation/overview/ungrouped.php:24
-#: ../app/views/consultation/overview/index.php:17
-#: ../app/views/consultation/overview/booked.php:17
-#: ../app/views/consultation/admin/ungrouped.php:152
-#: ../app/views/consultation/admin/index.php:34
-#: ../app/views/shared/contacts/add_ansprechpartner.php:37
-#: ../app/views/shared/contacts/index.php:16 ../app/views/shared/filter.php:42
-#: ../app/views/profile/index.php:66 ../app/views/course/basicdata/view.php:201
-#: ../app/views/settings/deputies.php:27
-#: ../app/views/settings/statusgruppen/modify_institute.php:15
-#: ../app/views/admin/role/show_role.php:68
-#: ../app/views/admin/cronjobs/schedules/index.php:35
-#: ../app/views/admin/cronjobs/logs/index.php:16
-#: ../app/views/admin/user/edit_institute.php:13
-#: ../app/views/admin/user/_results.php:19
-#: ../app/views/admin/user/_course_list.php:28
-#: ../app/views/admin/user/index.php:35
-#: ../app/views/admin/user/_waiting_list.php:22
-#: ../app/views/my_courses/archive.php:25
-msgid "Status"
-msgstr "Status"
-
-#: ../public/admin_elearning_interface.php:125
-msgid "Die Schnittstelle ist <b>aktiv</b>."
-msgstr "Interface <b>activated</b>."
-
-#: ../public/admin_elearning_interface.php:127
-msgid "Hier können Sie die Schnittstelle deaktivieren."
-msgstr "Here you can deactivate the interface."
-
-#: ../public/admin_elearning_interface.php:129
-#: ../app/views/course/studygroup/globalmodules.php:32
-#: ../app/views/admin/cronjobs/schedules/index.php:149
-#: ../app/views/admin/cronjobs/tasks/index.php:77
-msgid "Deaktivieren"
-msgstr "Deactivate"
-
-#: ../public/admin_elearning_interface.php:135
-msgid "Die Schnittstelle ist nicht aktiv."
-msgstr "Interface deactivated."
-
-#: ../public/admin_elearning_interface.php:140
-msgid "Hier können Sie die Schnittstelle aktivieren."
-msgstr "Here you can activate the interface."
-
-#: ../public/admin_elearning_interface.php:142 ../app/views/tfa/setup.php:26
-#: ../app/views/admin/cronjobs/schedules/index.php:148
-#: ../app/views/admin/cronjobs/tasks/index.php:76
-#: ../app/views/admin/specification/_field.php:28
-msgid "Aktivieren"
-msgstr "Activate"
-
-#: ../public/admin_elearning_interface.php:155
-#: ../lib/classes/sidebar/OptionsWidget.php:18
-#: ../lib/navigation/AvatarNavigation.php:38
-#: ../lib/navigation/AdminNavigation.php:207
-#: ../lib/navigation/ProfileNavigation.php:91
-#: ../lib/navigation/StartNavigation.php:250
-#: ../app/controllers/course/feedback.php:43
-#: ../app/controllers/course/lti.php:56 ../app/controllers/start.php:82
-#: ../app/views/module/module/modulteil.php:108
-#: ../app/views/module/module/modul.php:217
-#: ../app/views/course/statusgroups/edit.php:6
-#: ../app/views/course/lti/config.php:5 ../app/views/course/lti/edit.php:5
-#: ../app/views/admin/install/mysql_check.php:31
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:132
-msgid "Einstellungen"
-msgstr "Settings"
-
-#: ../public/admin_elearning_interface.php:166
-#: ../lib/extern/views/extern_edit_module.inc.php:152
-#: ../lib/extern/admin_extern.inc.php:413
-#: ../templates/evaluation/config.php:122
-#: ../templates/evaluation/config.php:123
-#: ../app/controllers/course/room_requests.php:151
-#: ../app/controllers/course/room_requests.php:259
-#: ../app/controllers/course/room_requests.php:400
-#: ../app/controllers/course/room_requests.php:573
-#: ../app/controllers/course/room_requests.php:763
-#: ../app/controllers/course/room_requests.php:940
-#: ../app/controllers/course/management.php:53
-#: ../app/controllers/course/management.php:55
-#: ../app/controllers/course/studygroup.php:138
-#: ../app/controllers/calendar/instschedule.php:97
-#: ../app/views/consultation/admin/note.php:20
-msgid "Information"
-msgstr "Information"
-
-#: ../public/admin_elearning_interface.php:166
-msgid "Hier können Sie angebundene Systeme verwalten."
-msgstr "Here, you can manage coupled systems."
-
-#: ../public/admin_elearning_interface.php:167
-#: ../lib/classes/ContentGroupMenu.php:46
-#: ../lib/classes/sidebar/ActionsWidget.php:10
-#: ../templates/shared/action-menu.php:3 ../templates/shared/action-menu.php:10
-#: ../app/controllers/admission/userlist.php:32
-#: ../app/controllers/module/module.php:1319
-#: ../app/controllers/course/studygroup.php:122
-#: ../app/controllers/institute/members.php:494
-#: ../app/views/admission/courseset/index.php:35
-#: ../app/views/online/index.php:18 ../app/views/online/index.php:93
-#: ../app/views/search/archive/index.php:75 ../app/views/oer/admin/hosts.php:12
-#: ../app/views/shared/contacts/range.php:28
-#: ../app/views/shared/contacts/index.php:18
-#: ../app/views/shared/contacts/details.php:33
-#: ../app/views/resources/room_group/permissions.php:8
-#: ../app/views/resources/admin/categories.php:16
-#: ../app/views/resources/admin/separable_rooms.php:42
-#: ../app/views/resources/admin/properties.php:12
-#: ../app/views/resources/admin/global_locks.php:17
-#: ../app/views/resources/admin/user_permissions.php:86
-#: ../app/views/resources/admin/user_permissions.php:156
-#: ../app/views/resources/room_request/overview.php:33
-#: ../app/views/resources/room_planning/overbooked_rooms.php:8
-#: ../app/views/resources/_common/_room_thead.php:19
-#: ../app/views/fachabschluss/faecher/index.php:12
-#: ../app/views/fachabschluss/kategorien/index.php:16
-#: ../app/views/fachabschluss/abschluesse/index.php:13
-#: ../app/views/module/module/index.php:16
-#: ../app/views/module/institute/details.php:12
-#: ../app/views/files/_files_thead.php:46
-#: ../app/views/materialien/files/range.php:34
-#: ../app/views/materialien/files/index.php:17
-#: ../app/views/course/ilias_interface/add_object.php:82
-#: ../app/views/course/ilias_interface/index.php:21
-#: ../app/views/course/studygroup/members.php:53
-#: ../app/views/course/studygroup/members.php:121
-#: ../app/views/course/studygroup/_members_list.php:27
-#: ../app/views/course/gradebook/lecturers/edit_custom_definitions.php:9
-#: ../app/views/course/grouping/_perm_level.php:39
-#: ../app/views/course/feedback/index.php:44
-#: ../app/views/course/dates/index.php:45
-#: ../app/views/course/dates/index.php:85
-#: ../app/views/files_dashboard/search.php:46
-#: ../app/views/admin/role/assign_role.php:101
-#: ../app/views/admin/ilias_interface/index.php:24
-#: ../app/views/admin/course_wizard_steps/index.php:27
-#: ../app/views/admin/autoinsert/index.php:77
-#: ../app/views/admin/specification/index.php:16
-#: ../app/views/admin/domain/index.php:23
-#: ../app/views/admin/content_terms_of_use/index.php:10
-#: ../app/views/admin/banner/index.php:20
-#: ../app/views/admin/user/_course_files.php:31
-#: ../app/views/admin/user/_institute_files.php:20
-#: ../app/views/admin/plugin/index.php:45
-#: ../app/views/admin/lockrules/index.php:21
-#: ../app/views/admin/lti/index.php:22
-#: ../app/views/admin/login_style/index.php:17
-#: ../app/views/contact/index.php:37
-#: ../app/views/room_management/overview/locations.php:8
-#: ../app/views/room_management/overview/buildings.php:22
-#: ../app/views/room_management/overview/index.php:111
-#: ../app/views/room_management/overview/rooms.php:9
-#: ../app/views/calendar/single/manage_access.php:47
-#: ../app/views/my_ilias_accounts/index.php:23
-#: ../app/views/my_ilias_accounts/index.php:97
-#: ../app/views/questionnaire/overview.php:12
-#: ../app/views/lvgruppen/lvgruppen/index.php:14
-#: ../app/views/studiengaenge/versionen/index.php:7
-#: ../app/views/studiengaenge/informationen/degree.php:11
-#: ../app/views/studiengaenge/informationen/index.php:11
-#: ../app/views/studiengaenge/faecher/index.php:12
-#: ../app/views/studiengaenge/kategorien/index.php:6
-#: ../app/views/studiengaenge/fachbereiche/index.php:6
-#: ../app/views/studiengaenge/stgteilbezeichnungen/index.php:14
-#: ../app/views/studiengaenge/abschluesse/index.php:6
-#: ../app/views/studiengaenge/fachbereichestgteile/index.php:7
-#: ../app/views/studiengaenge/studiengangteile/index.php:15
-#: ../app/views/studiengaenge/studiengaenge/index.php:18
-msgid "Aktionen"
-msgstr "Actions"
-
-#: ../public/admin_elearning_interface.php:167
-msgid ""
-"Nachdem Sie ein angebundenes System ausgewählt haben wird die Verbindung zum "
-"System geprüft."
-msgstr "After selecting a coupled system the connection to it will be tested."
-
-#: ../public/admin_elearning_interface.php:173
-#, php-format
-msgid ""
-"Die Verbindung zum System \"%s\" ist <b>aktiv</b>. Sie können die Einbindung "
-"des Systems in Stud.IP jederzeit deaktivieren."
-msgstr ""
-"The connection to the system \"%s\" is <b>active</b>. You can deactivate the "
-"inclusion of the system in Stud.IP at any time."
-
-#: ../public/admin_elearning_interface.php:176
-#, php-format
-msgid ""
-"Die Verbindung zum System \"%s\" steht, das System ist jedoch nicht "
-"aktiviert. Sie können die Einbindung des Systems in Stud.IP jederzeit "
-"aktivieren. Solange die Verbindung nicht aktiviert wurde, werden die Module "
-"des Systems \"%s\" in Stud.IP nicht angezeigt."
-msgstr ""
-"There is an inactive connection to system \"%s\". At any time you can "
-"activate the connection of that system with Stud.IP. The modules of the "
-"system \"%s\" will not been shown in Stud.IP as long as the connection is "
-"not activated,."
-
-#: ../public/admin_elearning_interface.php:179
-#, php-format
-msgid ""
-"Bei der Prüfung der Verbindung sind Fehler aufgetreten. Sie müssen zunächst "
-"die Einträge in der Konfigurationsdatei korrigieren, bevor das System "
-"angebunden werden kann."
-msgstr ""
-"Errors have occurred while the connection has been tested. You have to "
-"correct the entries in the configuration file before the systems can be "
-"coupled."
-
-#: ../public/admin_elearning_interface.php:191
-msgid ""
-"Die Schnittstelle für die Integration von Lernmodulen ist nicht aktiviert.\n"
-"    Damit Lernmodule verwendet werden können, muss die Verbindung zu einem "
-"LCM-System in der Konfigurationsdatei von Stud.IP hergestellt werden.\n"
-"    Wenden Sie sich bitte an den/die AdministratorIn."
-msgstr ""
-"The interface for the integration of learning modules is not activated.\n"
-"    To be able to use learning modules the connection to a LCM system must "
-"be established in the Stud.IP configuration file.\n"
-"    Please contact the administrator."
-
-#: ../public/admin_elearning_interface.php:193
-msgid "E-Learning-Schnittstelle nicht eingebunden"
-msgstr "No e-learning interface available"
-
-#: ../public/eval_summary_export.php:634
-msgid "Erstellt mit Stud.IP"
-msgstr "Created with Stud.IP"
-
-#: ../public/eval_summary_export.php:634 ../lib/wiki.inc.php:792
-#: ../templates/shared/pagechooser.php:37
-#: ../templates/pagination/buttons.php:26
-#: ../templates/pagination/buttons.php:47 ../templates/pagination/links.php:28
-#: ../templates/pagination/links.php:49 ../app/controllers/tour.php:571
-#: ../app/views/tour/edit_step.php:47 ../app/views/tour/admin_details.php:133
-#: ../app/views/help_content/admin_overview.php:20
-msgid "Seite"
-msgstr "Page"
-
-#: ../public/eval_summary_export.php:643
-msgid "Stud.IP Evaluationsauswertung"
-msgstr "Stud.IP evaluation assessment"
-
-#: ../public/eval_summary_export.php:665
-msgid "Erzeugt am"
-msgstr "Created on"
-
-#: ../public/eval_summary_export.php:698
-msgid "Evaluation NICHT vorhanden oder keine Rechte!"
-msgstr "Evaluation NOT available or no permission!"
-
-#: ../public/admin_extern.php:48 ../lib/extern/admin_extern.inc.php:65
-msgid "Verwaltung externer Seiten"
-msgstr "External page management"
-
-#: ../public/admin_extern.php:55
-msgid ""
-"Die Verwaltung externer Seiten ist nicht eingebunden. Bitte aktivieren Sie "
-"diese in den Systemeinstellungen, oder wenden Sie sich an die "
-"Systemadministration."
-msgstr ""
-"External page management is deactivated. Please activate it in the system "
-"settings or contact a system administrator."
-
-#: ../public/admin_extern.php:56
-msgid "Modul \"externe Seiten\" nicht eingebunden"
-msgstr "Module \"external pages\" is deactivated"
-
-#: ../public/show_bereich.php:73 ../app/controllers/my_courses.php:819
-msgid "Studienbereich"
-msgstr "Field of study"
-
-#: ../public/show_bereich.php:74
-msgid "Übersicht aller Veranstaltungen eines Studienbereichs"
-msgstr "Overview on all courses in a field of study"
-
-#: ../public/show_bereich.php:75
-#, php-format
-msgid ""
-"Alle Veranstaltungen, die dem Studienbereich: <br><b>%s</b><br> zugeordnet "
-"wurden."
-msgstr "All courses assigned to this field of study: <br><b>%s</b><br>."
-
-#: ../public/show_bereich.php:82
-msgid "Übersicht aller Veranstaltungen einer Einrichtung"
-msgstr "Overview on all courses of an institute"
-
-#: ../public/show_bereich.php:83
-#, php-format
-msgid "Alle Veranstaltungen der Einrichtung: <b>%s</b>"
-msgstr "All courses of the institute <b>%s</b>"
-
-#: ../public/show_bereich.php:118
-msgid "Veranstaltungsübersicht.xls"
-msgstr "Courseoverview.xls"
-
-#: ../public/show_bereich.php:131
-msgid "Semester:"
-msgstr "Semester:"
-
-#: ../public/show_bereich.php:137
-msgid "Anzeige gruppieren:"
-msgstr "Group display:"
-
-#: ../public/show_bereich.php:149
-msgid "Daten ausgeben:"
-msgstr "Export data:"
-
-#: ../public/show_bereich.php:152 ../public/show_bereich.php:166
-#: ../lib/export/export_linking_func.inc.php:58
-#: ../lib/export/export_linking_func.inc.php:171
-msgid "Diese Daten exportieren"
-msgstr "Export these data"
-
-#: ../public/show_bereich.php:159 ../public/show_bereich.php:171
-msgid "Download als Excel Tabelle"
-msgstr "Download as Excel spreadsheet"
-
-#: ../public/eval_config.php:115
-msgid "Die Auswertungskonfiguration wurde gespeichert."
-msgstr "Assessment configuration has been saved."
-
-#: ../public/register1.php:38
-msgid "Sie sind schon als BenutzerIn am System angemeldet!"
-msgstr "You are already registered for the system!"
-
-#: ../public/register1.php:50 ../app/controllers/terms.php:22
-#: ../app/views/course/studygroup/globalmodules.php:70
-#: ../app/views/course/wizard/steps/basicdata/index_studygroup.php:60
-msgid "Nutzungsbedingungen"
-msgstr "Terms of use"
-
-#: ../public/install.php:13
-msgid "Diese Installation ist bereits konfiguriert"
-msgstr "This installation is already configured"
-
-#: ../public/ilias3_referrer.php:45
-msgid "Login nicht möglich"
-msgstr "Login not possible"
-
-#: ../public/ilias3_referrer.php:47
-#, php-format
-msgid ""
-"Automatischer Login für das System <b>%s</b> (Nutzername:%s) fehlgeschlagen."
-msgstr "Automatic login failed for system <b>%s</b> (username:%s)."
-
-#: ../public/ilias3_referrer.php:50
-msgid ""
-"Dieser Fehler kann dadurch hervorgerufen werden, dass Sie Ihr Passwort "
-"geändert haben. In diesem Fall versuchen Sie bitte Ihren Account erneut zu "
-"verknüpfen."
-msgstr ""
-"This error is possibly caused by changing your password. In this case please "
-"retry to link your account."
-
-#: ../public/ilias3_referrer.php:51
-#, php-format
-msgid "%sZurück%s zu Meine Lernmodule"
-msgstr "%sBack%s to My learning modules"
-
-#: ../public/index.php:64 ../templates/check_object_exception.php:17
-#: ../templates/unhandled_exception.php:14 ../app/controllers/start.php:29
-#: ../app/views/tour/admin_overview.php:42 ../app/views/tour/import.php:35
-msgid "Startseite"
-msgstr "Start page"
-
-#: ../public/admin_sem_tree.php:43
-msgid "Veranstaltungshierachie bearbeiten"
-msgstr "Edit course hierarchy"
-
-#: ../public/admin_sem_tree.php:78
-msgid ""
-"Es wurden mehr als 50 Veranstaltungen gefunden! Bitte schränken Sie Ihre "
-"Suche weiter ein."
-msgstr "More than 50 courses found! Please further restrict your search."
-
-#: ../public/admin_sem_tree.php:81
-#, php-format
-msgid "Es wurden %s Veranstaltungen gefunden, und in Ihre Merkliste eingefügt"
-msgstr "%s courses have been found and have been added to your clipboard"
-
-#: ../public/admin_sem_tree.php:93
-msgid ""
-"Es wurden keine Veranstaltungen gefunden, auf die Ihre Suchkriterien "
-"zutreffen."
-msgstr "No course matching your search criteria has been found."
-
-#: ../public/admin_sem_tree.php:109
-#, php-format
-msgid "%s Veranstaltung(en) wurde(n) aus Ihrer Merkliste entfernt."
-msgstr "%s course(s) removed from your clipboard."
-
-#: ../public/admin_sem_tree.php:130
-#, php-format
-msgid "%s Veranstaltung(en) in <b>"
-msgstr "%s course(s) in <b>"
-
-#: ../public/admin_sem_tree.php:146
-#, php-format
-msgid ""
-"Der Verschiebemodus ist aktiviert. Bitte wählen Sie ein Einfügesymbol %s "
-"aus, um das Element <b>%s</b> an diese Stelle zu verschieben.%s"
-msgstr ""
-"Moving modus activated. Select an insertion icon %s for moving element <b>"
-"%s</b> to this position.%s"
-
-#: ../public/admin_sem_tree.php:148
-#, php-format
-msgid ""
-"Der Kopiermodus ist aktiviert. Bitte wählen Sie ein Einfügesymbol %s aus, um "
-"das Element <b>%s</b> an diese Stelle zu kopieren.%s"
-msgstr ""
-"Copying modus activated. Select an insertion icon %s for copying element <b>"
-"%s</b> to this position.%s"
-
-#: ../public/admin_sem_tree.php:152
-msgid "Einfügesymbol"
-msgstr "Insertion icon"
-
-#: ../public/admin_sem_tree.php:156
-#: ../public/plugins_packages/core/ActivityFeed/templates/edit.php:20
-#: ../public/plugins_packages/core/Forum/views/area/_edit_area_form.php:6
-#: ../public/plugins_packages/core/Forum/views/area/_add_area_form.php:10
-#: ../public/plugins_packages/core/Forum/views/area/_edit_category_form.php:6
-#: ../public/plugins_packages/core/Forum/views/area/_js_templates.php:8
-#: ../public/plugins_packages/core/Forum/views/area/_js_templates.php:22
-#: ../public/plugins_packages/core/Forum/views/area/_js_templates.php:39
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:52
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:108
-#: ../public/plugins_packages/core/QuickSelection/templates/edit.php:19
-#: ../lib/extern/lib/ExternEdit.class.php:173
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:544
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:724
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:518
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:722
-#: ../lib/classes/Interactable.class.php:191
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:344
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2163
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2273
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1469
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1508
-#: ../lib/elearning/ELearningUtils.class.php:551
-#: ../templates/extern/upload_form.php:26 ../templates/tfa-validate.php:65
-#: ../templates/tour/tour.php:32 ../templates/wiki/edit.php:21
-#: ../templates/loginform.php:72 ../app/views/admission/rule/configure.php:12
-#: ../app/views/admission/rule/select_type.php:28
-#: ../app/views/admission/rule_administration/check_activation.php:98
-#: ../app/views/admission/courseset/configure.php:233
-#: ../app/views/admission/courseset/configure.php:237
-#: ../app/views/admission/user_list/configure.php:101
-#: ../app/views/consultation/overview/cancel.php:26
-#: ../app/views/consultation/overview/book.php:45
-#: ../app/views/consultation/admin/book.php:44
-#: ../app/views/consultation/admin/create.php:187
-#: ../app/views/consultation/admin/cancel_slot.php:46
-#: ../app/views/consultation/admin/tab.php:14
-#: ../app/views/consultation/admin/cancel_slots.php:53
-#: ../app/views/consultation/admin/note.php:28
-#: ../app/views/consultation/admin/reason.php:16
-#: ../app/views/consultation/admin/edit_room.php:17
-#: ../app/views/consultation/admin/cancel_block.php:34
-#: ../app/views/fachabschluss/faecher/fach.php:108
-#: ../app/views/fachabschluss/kategorien/kategorie.php:54
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:45
-#: ../app/views/module/module/modulteil.php:476
-#: ../app/views/module/module/copy_form.php:92
-#: ../app/views/module/module/approve.php:10
-#: ../app/views/module/module/modul.php:692
-#: ../app/views/module/module/lvgruppe.php:26 ../app/views/siteinfo/new.php:50
-#: ../app/views/siteinfo/delete.php:21 ../app/views/siteinfo/edit.php:52
-#: ../app/views/course/timesrooms/cancel.php:7
-#: ../app/views/course/studygroup/edit.php:52
-#: ../app/views/course/scm/edit.php:56 ../app/views/course/scm/edit.php:58
-#: ../app/views/course/gradebook/lecturers/edit_custom_definition.php:12
-#: ../app/views/course/gradebook/lecturers/weights.php:23
-#: ../app/views/course/gradebook/lecturers/custom_definitions.php:63
-#: ../app/views/course/gradebook/lecturers/new_custom_definition.php:12
-#: ../app/views/course/enrolment/apply.php:16
-#: ../app/views/course/members/select_course.php:30
-#: ../app/views/course/members/add_comment.php:15
-#: ../app/views/course/members/add_dozent.php:32
-#: ../app/views/course/members/add_member.php:98
-#: ../app/views/course/members/add_tutor.php:29
-#: ../app/views/course/members/import_autorlist.php:44
-#: ../app/views/course/room_requests/request_summary.php:95
-#: ../app/views/course/room_requests/request_summary.php:98
-#: ../app/views/course/room_requests/new.php:36
-#: ../app/views/course/room_requests/_request_form_footer.php:21
-#: ../app/views/course/room_requests/_request_form_footer.php:24
-#: ../app/views/course/statusgroups/_move_members.php:22
-#: ../app/views/course/statusgroups/_edit_groups_size.php:16
-#: ../app/views/course/statusgroups/_edit_groups_selfassign.php:34
-#: ../app/views/course/statusgroups/create_groups.php:137
-#: ../app/views/course/statusgroups/_askdelete_groups.php:19
-#: ../app/views/course/statusgroups/joinables.php:15
-#: ../app/views/course/statusgroups/_copy_members.php:22
-#: ../app/views/course/statusgroups/_askcancel_members.php:13
-#: ../app/views/course/statusgroups/edit.php:109
-#: ../app/views/course/statusgroups/_askdelete_members.php:14
-#: ../app/views/course/grouping/find_members_to_add.php:18
-#: ../app/views/course/grouping/create_children.php:47
-#: ../app/views/course/grouping/move_members_target.php:21
-#: ../app/views/course/lti/config.php:18
-#: ../app/views/course/lti/add_link.php:13 ../app/views/course/lti/edit.php:89
-#: ../app/views/course/feedback/create_form.php:6
-#: ../app/views/course/feedback/_add_edit_entry_form.php:27
-#: ../app/views/settings/notification.php:96
-#: ../app/views/multipersonsearch/no_js_form.php:87
-#: ../app/views/multipersonsearch/js_form.php:43
-#: ../app/views/contents/courseware/create_project.php:116
-#: ../app/views/messages/write.php:176
-#: ../app/views/admin/role/add_plugin.php:29 ../app/views/admin/role/add.php:18
-#: ../app/views/admin/ilias_interface/edit_server.php:85
-#: ../app/views/admin/ilias_interface/edit_permissions.php:23
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:52
-#: ../app/views/admin/ilias_interface/add_ilias.php:24
-#: ../app/views/admin/ilias_interface/edit_content.php:97
-#: ../app/views/admin/api/config.php:27 ../app/views/admin/api/edit.php:127
-#: ../app/views/admin/configuration/edit_range_config.php:18
-#: ../app/views/admin/configuration/edit_configuration.php:61
-#: ../app/views/admin/course_wizard_steps/edit.php:41
-#: ../app/views/admin/semester/lock.php:41
-#: ../app/views/admin/semester/edit.php:99
-#: ../app/views/admin/smileys/upload.php:35
-#: ../app/views/admin/smileys/edit.php:51
-#: ../app/views/admin/specification/edit.php:79
-#: ../app/views/admin/domain/edit.php:45
-#: ../app/views/admin/webservice_access/test.php:27
-#: ../app/views/admin/webservice_access/index.php:47
-#: ../app/views/admin/content_terms_of_use/delete.php:38
-#: ../app/views/admin/content_terms_of_use/edit.php:59
-#: ../app/views/admin/banner/new.php:89 ../app/views/admin/banner/edit.php:105
-#: ../app/views/admin/courses/notice.php:16
-#: ../app/views/admin/user/edit_institute.php:63
-#: ../app/views/admin/user/new.php:210 ../app/views/admin/user/edit.php:609
-#: ../app/views/admin/user/migrate.php:53
-#: ../app/views/admin/user/_delete.php:68
-#: ../app/views/admin/holidays/edit.php:33
-#: ../app/views/admin/statusgroups/sortAlphabetic.php:15
-#: ../app/views/admin/statusgroups/delete.php:15
-#: ../app/views/admin/statusgroups/editGroup.php:74
-#: ../app/views/admin/statusgroups/deleteGroup.php:15
-#: ../app/views/admin/statusgroups/sortGroups.php:18
-#: ../app/views/admin/datafields/config.php:16
-#: ../app/views/admin/datafields/type_select.php:28
-#: ../app/views/admin/datafields/new.php:170
-#: ../app/views/admin/datafields/preview.php:15
-#: ../app/views/admin/datafields/edit.php:199
-#: ../app/views/admin/sem_classes/details.php:300
-#: ../app/views/admin/lti/edit.php:69
-#: ../app/views/admin/login_style/newpic.php:31
-#: ../app/views/tour/edit_step.php:178 ../app/views/tour/admin_details.php:110
-#: ../app/views/my_courses/groups.php:56 ../app/views/contact/editGroup.php:22
-#: ../app/views/wiki/change_courseperms.php:22
-#: ../app/views/wiki/change_pageperms.php:52 ../app/views/wiki/create.php:17
-#: ../app/views/wiki/import.php:48 ../app/views/wiki/import.php:106
-#: ../app/views/event_log/edit.php:40
-#: ../app/views/calendar/single/manage_access.php:96
-#: ../app/views/calendar/single/_event_data.php:65
-#: ../app/views/calendar/single/_event_data.php:95
-#: ../app/views/calendar/single/share.php:59
-#: ../app/views/calendar/single/export_calendar.php:49
-#: ../app/views/calendar/single/import.php:26
-#: ../app/views/calendar/single/edit.php:437
-#: ../app/views/calendar/single/seminar_events.php:92
-#: ../app/views/calendar/single/_edit_status.php:45
-#: ../app/views/calendar/schedule/_entry_schedule.php:66
-#: ../app/views/calendar/schedule/_entry_schedule.php:70
-#: ../app/views/calendar/schedule/_entry_course.php:86
-#: ../app/views/calendar/schedule/settings.php:39
-#: ../app/views/my_ilias_accounts/new_account.php:13
-#: ../app/views/my_ilias_accounts/add_object.php:18
-#: ../app/views/file/edit_folder.php:13 ../app/views/file/update.php:33
-#: ../app/views/file/choose_destination.php:82 ../app/views/file/edit.php:35
-#: ../app/views/file/edit_urlfile.php:52 ../app/views/avatar/update.php:63
-#: ../app/views/start/add.php:28 ../app/views/help_content/edit.php:41
-#: ../app/views/lvgruppen/lvgruppen/lvgruppe.php:25
-#: ../app/views/userfilter/filter/configure.php:18
-#: ../app/views/new_password/set.php:21 ../app/views/new_password/index.php:16
-#: ../app/views/studiengaenge/versionen/abschnitt.php:30
-#: ../app/views/studiengaenge/versionen/approve.php:8
-#: ../app/views/studiengaenge/versionen/modul_zuordnung.php:36
-#: ../app/views/studiengaenge/versionen/modulteil_semester.php:54
-#: ../app/views/studiengaenge/versionen/version.php:144
-#: ../app/views/studiengaenge/stgteilbezeichnungen/stgteilbezeichnung.php:39
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:103
-#: ../app/views/studiengaenge/studiengangteile/approve.php:8
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:350
-#: ../app/views/studiengaenge/studiengaenge/approve.php:33
-msgid "Abbrechen"
-msgstr "Cancel"
-
-#: ../public/admin_sem_tree.php:158
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:520
-msgid "Verschieben / Kopieren abbrechen"
-msgstr "Cancel move / copy"
-
-#: ../public/admin_sem_tree.php:171 ../lib/navigation/StartNavigation.php:270
-msgid "Veranstaltungssuche"
-msgstr "Course search"
-
-#: ../public/admin_sem_tree.php:174
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:25
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:27
-#: ../public/plugins_packages/core/Forum/views/index/index.php:21
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:68
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:766
-#: ../lib/classes/StudipSemSearchHelper.class.php:31
-#: ../lib/classes/StudipSemSearchHelper.class.php:32
-#: ../lib/classes/LockRules.class.php:229
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:132
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:172
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:277
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:313
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:348
-#: ../templates/register/form.php:57
-#: ../templates/sembrowse/extended-search.php:19 ../templates/wiki/list.php:13
-#: ../templates/library/library_document_info.php:21
-#: ../app/controllers/tour.php:568 ../app/controllers/course/members.php:1788
-#: ../app/views/score/index.php:26 ../app/views/news/edit_news.php:44
-#: ../app/views/course/topics/edit.php:13 ../app/views/course/scm/edit.php:16
-#: ../app/views/course/lti/edit.php:10
-#: ../app/views/settings/account/index.php:68
-#: ../app/views/admin/api/edit.php:31
-#: ../app/views/admin/cronjobs/schedules/display.php:2
-#: ../app/views/admin/cronjobs/schedules/edit.php:50
-#: ../app/views/admin/user/new.php:102 ../app/views/admin/user/edit.php:92
-#: ../app/views/tour/admin_conflicts.php:22 ../app/views/tour/edit_step.php:18
-#: ../app/views/wiki/create.php:10
-#: ../app/views/calendar/schedule/_entry_schedule.php:43
-#: ../app/views/file/add_from_library.php:19
-#: ../app/views/file/add_from_library.php:99
-#: ../app/views/questionnaire/assign_step2.php:40
-msgid "Titel"
-msgstr "Title"
-
-#: ../public/admin_sem_tree.php:179
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:66
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:68
-#: ../lib/extern/modules/ExternModuleLecturestable.class.php:66
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:76
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:67
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:70
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:68
-#: ../lib/classes/StudipSemSearchHelper.class.php:33
-#: ../lib/classes/LockRules.class.php:174 ../lib/archiv.inc.php:130
-#: ../templates/sembrowse/extended-search.php:24
-#: ../app/controllers/course/archive.php:67
-#: ../app/views/course/overview/index.php:8
-#: ../app/views/course/wizard/steps/advancedbasicdata/index.php:5
-#: ../app/views/course/archive/confirm.php:32
-#: ../app/views/course/details/index.php:34
-#: ../app/views/my_courses/_exportcourse.php:48
-msgid "Untertitel"
-msgstr "Subtitle"
-
-#: ../public/admin_sem_tree.php:184
-#: ../lib/classes/StudipSemSearchHelper.class.php:31
-#: ../lib/classes/StudipSemSearchHelper.class.php:35
-#: ../lib/cronjobs/check_admission.class.php:81
-#: ../lib/evaluation/classes/EvaluationExportManagerCSV.class.php:136
-#: ../templates/sembrowse/extended-search.php:29
-#: ../app/controllers/admission/restricted_courses.php:74
-#: ../app/controllers/admission/courseset.php:401
-#: ../app/controllers/admission/courseset.php:568
-#: ../app/controllers/questionnaire.php:371
-#: ../app/views/module/module/modulteil.php:40
-#: ../app/views/admin/course_wizard_steps/index.php:25
-#: ../app/views/room_management/overview/buildings.php:20
-#: ../app/views/calendar/instschedule/_entry_details.php:11
-#: ../app/views/calendar/schedule/_entry_inst.php:12
-msgid "Nummer"
-msgstr "Number"
-
-#: ../public/admin_sem_tree.php:189
-#: ../lib/classes/exportdocument/ExportPDF.class.php:142
-#: ../lib/classes/StudipSemSearchHelper.class.php:36
-#: ../templates/sembrowse/extended-search.php:34
-#: ../templates/dates/missing_date.php:5
-#: ../app/views/resources/room_request/planning.php:120
-#: ../app/views/resources/resource/booking_plan.php:50
-#: ../app/views/resources/room_planning/semester_plan.php:141
-#: ../app/views/resources/room_planning/booking_plan.php:109
-#: ../app/views/module/module/modulteil.php:193
-#: ../app/views/module/module/modulteil.php:245
-#: ../app/views/module/module/modulteil.php:271
-#: ../app/views/module/module/modulteil.php:291
-#: ../app/views/module/module/modulteil.php:311
-#: ../app/views/module/module/modulteil.php:329
-#: ../app/views/module/module/modulteil.php:418
-#: ../app/views/module/module/modul.php:242
-#: ../app/views/module/module/modul.php:253
-#: ../app/views/module/module/modul.php:431
-#: ../app/views/module/module/modul.php:520
-#: ../app/views/module/module/modul.php:544
-#: ../app/views/module/module/modul.php:562
-#: ../app/views/course/cancel_dates/index.php:14
-#: ../app/views/course/timesrooms/_cancel_form.php:13
-#: ../app/views/course/feedback/_add_edit_entry_form.php:21
-#: ../app/views/course/feedback/index.php:83
-#: ../app/views/admin/configuration/edit_configuration.php:17
-#: ../app/views/admin/user/lock_comment.php:10
-#: ../app/views/admin/user/edit.php:21
-#: ../app/views/room_management/planning/semester_plan.php:97
-#: ../app/views/room_management/planning/index.php:94
-#: ../app/views/studiengaenge/versionen/abschnitt.php:12
-msgid "Kommentar"
-msgstr "Comment"
-
-#: ../public/admin_sem_tree.php:194
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:66
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:69
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:86
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:141
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:242
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:80
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:126
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:230
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:77
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:120
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:201
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:65
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:122
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:236
-#: ../lib/extern/modules/ExternModuleLecturestable.class.php:71
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:81
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:352
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:68
-#: ../lib/extern/modules/views/ExternSemBrowse.class.php:59
-#: ../lib/extern/modules/views/ExternSemBrowseTable.class.php:57
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:71
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:73
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:199
-#: ../lib/classes/SemBrowse.class.php:40
-#: ../lib/classes/StudipSemSearchHelper.class.php:31
-#: ../lib/classes/StudipSemSearchHelper.class.php:34
-#: ../lib/classes/LockRules.class.php:181 ../config/config.inc.php:84
-#: ../config/config_develop.inc.php:88
-#: ../templates/sembrowse/extended-search.php:39
-#: ../app/controllers/admission/courseset.php:401
-#: ../app/controllers/course/dates.php:441
-#: ../app/controllers/my_courses.php:822
-#: ../app/controllers/admin/courses.php:1101
-#: ../app/controllers/institute/members.php:186
-#: ../app/controllers/institute/members.php:328
-#: ../app/views/admission/courseset/configure_courses.php:6
-#: ../app/views/search/archive/index.php:72
-#: ../app/views/resources/room_request/resolve.php:40
-#: ../app/views/course/wizard/steps/basicdata/index.php:103
-#: ../app/views/course/archive/confirm.php:36
-#: ../app/views/admin/courses/courses.php:140
-#: ../app/views/my_courses/_exportcourse.php:54
-#: ../app/views/calendar/schedule/_entry_course.php:35
-#: ../app/views/questionnaire/assign_step1.php:20
-msgid "Lehrende"
-msgstr "Lecturers"
-
-#: ../public/admin_sem_tree.php:199
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:232
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:1343
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:86
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:141
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:242
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:80
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:126
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:230
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:77
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:120
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:201
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:65
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:122
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:236
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:351
-#: ../lib/extern/modules/views/ExternSemBrowse.class.php:58
-#: ../lib/extern/modules/views/ExternSemBrowseTable.class.php:56
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:198
-#: ../lib/classes/SemBrowse.class.php:36
-#: ../lib/classes/StudipSemSearchHelper.class.php:37
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1783
-#: ../templates/evaluation/config.php:22 ../templates/evaluation/config.php:34
-#: ../templates/sembrowse/extended-search.php:45
-#: ../app/views/search/archive/index.php:135
-#: ../app/views/admin/configuration/edit_configuration.php:37
-msgid "Bereich"
-msgstr "Area"
-
-#: ../public/admin_sem_tree.php:204
-msgid "Kombination"
-msgstr "Combination"
-
-#: ../public/admin_sem_tree.php:209
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:87
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:142
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:242
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:81
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:127
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:230
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:78
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:121
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:201
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:66
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:123
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:236
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:353
-#: ../lib/extern/modules/views/ExternSemBrowse.class.php:60
-#: ../lib/extern/modules/views/ExternSemBrowseTable.class.php:58
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:200
-#: ../lib/classes/SemBrowse.class.php:45 ../lib/visual.inc.php:710
-#: ../templates/sembrowse/extended-search.php:51
-#: ../templates/library/library_document_info.php:23
-#: ../app/controllers/course/dates.php:438
-#: ../app/controllers/my_courses.php:820
-#: ../app/views/resources/property/_add_edit_form.php:11
-#: ../app/views/resources/admin/property_groups.php:111
-#: ../app/views/resources/admin/properties.php:8
-#: ../app/views/files/_files_thead.php:33
-#: ../app/views/course/ilias_interface/add_object.php:81
-#: ../app/views/course/ilias_interface/index.php:20
-#: ../app/views/course/wizard/steps/basicdata/index.php:6
-#: ../app/views/course/wizard/steps/basicdata/index_studygroup.php:12
-#: ../app/views/course/dates/index.php:40
-#: ../app/views/course/dates/index.php:80
-#: ../app/views/files_dashboard/search.php:40
-#: ../app/views/admin/role/show_role.php:168 ../app/views/admin/api/index.php:9
-#: ../app/views/admin/api/edit.php:107
-#: ../app/views/admin/configuration/table-header.php:11
-#: ../app/views/admin/configuration/edit_configuration.php:33
-#: ../app/views/admin/cronjobs/schedules/display.php:30
-#: ../app/views/admin/cronjobs/schedules/index.php:12
-#: ../app/views/admin/cronjobs/schedules/index.php:84
-#: ../app/views/admin/webservice_access/index.php:19
-#: ../app/views/admin/banner/index.php:14
-#: ../app/views/admin/user/_course_files.php:29
-#: ../app/views/admin/user/_course_list.php:27
-#: ../app/views/admin/plugin/index.php:41
-#: ../app/views/admin/plugin/manifest.php:8
-#: ../app/views/admin/datafields/index.php:24
-#: ../app/views/tour/admin_overview.php:40
-#: ../app/views/my_ilias_accounts/index.php:22
-#: ../app/views/my_ilias_accounts/_ilias_module.php:41
-#: ../app/views/file/add_from_library.php:101
-#: ../app/views/file/choose_folder.php:73 ../app/views/file/choose_file.php:60
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_table.php:25
-msgid "Typ"
-msgstr "Type"
-
-#: ../public/admin_sem_tree.php:214 ../lib/models/AuxLockRule.php:106
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:67
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:86
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:141
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:242
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:80
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:126
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:230
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:77
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:120
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:201
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:65
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:122
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:236
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:350
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:73
-#: ../lib/extern/modules/views/ExternSemBrowse.class.php:57
-#: ../lib/extern/modules/views/ExternSemBrowseTable.class.php:55
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:76
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:197
-#: ../lib/classes/SemBrowse.class.php:32
-#: ../lib/classes/SemBrowse.class.php:1358 ../lib/archiv.inc.php:136
-#: ../lib/navigation/AdminNavigation.php:108
-#: ../templates/sidebar/room-search-criteria-available-range.php:48
-#: ../app/controllers/search/globalsearch.php:75
-#: ../app/controllers/search/globalsearch.php:78
-#: ../app/controllers/course/archive.php:69
-#: ../app/controllers/admin/courseplanning.php:612
-#: ../app/controllers/admin/courses.php:1099
-#: ../app/controllers/admin/courses.php:1387
-#: ../app/views/admission/courseset/configure.php:101
-#: ../app/views/search/archive/index.php:26
-#: ../app/views/search/archive/index.php:74
-#: ../app/views/search/studiengaenge/verlauf.php:30
-#: ../app/views/shared/version/_versionmodule.php:60
-#: ../app/views/shared/filter.php:19 ../app/views/shared/modul/_modul.php:162
-#: ../app/views/resources/room_request/planning.php:33
-#: ../app/views/resources/room_request/resolve.php:62
-#: ../app/views/resources/room_planning/semester_plan.php:54
-#: ../app/views/course/wizard/steps/basicdata/index.php:22
-#: ../app/views/course/archive/confirm.php:50
-#: ../app/views/course/details/index.php:47
-#: ../app/views/files_dashboard/_search_active_filters.php:34
-#: ../app/views/admin/semester/index.php:5
-#: ../app/views/admin/autoinsert/_search.php:6
-#: ../app/views/admin/courses/sidebar.php:23
-#: ../app/views/admin/courses/courses.php:124
-#: ../app/views/room_management/planning/semester_plan.php:25
-#: ../app/views/room_management/planning/copy_bookings.php:40
-#: ../app/views/file/choose_file_from_course.php:29
-#: ../app/views/file/choose_folder_from_course.php:37
-#: ../app/views/questionnaire/assign.php:9
-msgid "Semester"
-msgstr "Semester"
-
-#: ../public/admin_sem_tree.php:273
-msgid "Markierte in alle geöffneten Bereiche eintragen"
-msgstr "Enter selected courses in all opened areas"
-
-#: ../public/admin_sem_tree.php:277
-#, php-format
-msgid "Markierte in \"%s\" eintragen"
-msgstr "Enter selected courses in \"%s\""
-
-#: ../public/admin_sem_tree.php:284
-msgid "Markierte aus der Merkliste löschen"
-msgstr "Remove selected courses from clipboard"
-
-#: ../public/admin_sem_tree.php:290
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:669
-msgid "Gewählte Aktion starten"
-msgstr "Start selected action"
-
-#: ../public/admin_sem_tree.php:302
-msgid "Merkliste"
-msgstr "Clipboard"
-
-#: ../public/datenschutz.php:32
-msgid "Erläuterungen zum Datenschutz"
-msgstr "Policy on the data protection"
-
-#: ../public/plugins_packages/core/ActivityFeed/templates/_jstemplates.php:23
-msgid "Keine (weiteren) Aktivitäten gefunden."
-msgstr "No (further) activities found."
-
-#: ../public/plugins_packages/core/ActivityFeed/templates/_jstemplates.php:28
-msgid "Aktivitäten konnten nicht geladen werden"
-msgstr "The activities could not be loaded"
-
-#: ../public/plugins_packages/core/ActivityFeed/templates/_jstemplates.php:68
-msgid "Am <%- new Date(activity.mkdate * 1000).toLocaleString() %> Uhr"
-msgstr "At <%- new Date(activity.mkdate * 1000).toLocaleString() %>"
-
-#: ../public/plugins_packages/core/ActivityFeed/templates/edit.php:3
-msgid "Anzuzeigende Bereiche:"
-msgstr "Areas to be displayed:"
-
-#: ../public/plugins_packages/core/ActivityFeed/templates/edit.php:19
-#: ../public/plugins_packages/core/Forum/views/area/_edit_area_form.php:5
-#: ../public/plugins_packages/core/Forum/views/area/_js_templates.php:20
-#: ../public/plugins_packages/core/QuickSelection/templates/edit.php:18
-#: ../templates/evaluation/config.php:113 ../templates/wiki/edit.php:18
-#: ../app/views/admission/rule/configure.php:11
-#: ../app/views/admission/rule_administration/compatibility.php:49
-#: ../app/views/admission/rule_administration/check_activation.php:97
-#: ../app/views/admission/courseset/configure.php:230
-#: ../app/views/admission/courseset/configure_courses.php:72
-#: ../app/views/admission/user_list/configure.php:100
-#: ../app/views/consultation/admin/tab.php:12
-#: ../app/views/consultation/admin/note.php:26
-#: ../app/views/consultation/admin/reason.php:14
-#: ../app/views/consultation/admin/edit_room.php:15
-#: ../app/views/oer/market/abo.php:12 ../app/views/oer/mymaterial/edit.php:281
-#: ../app/views/oer/admin/add_new_host.php:8
-#: ../app/views/shared/contacts/add_ansprechpartner.php:131
-#: ../app/views/shared/contacts/sort.php:26
-#: ../app/views/shared/contacts/add_ranges_to_contact.php:36
-#: ../app/views/resources/property/add.php:10
-#: ../app/views/resources/property/edit.php:10
-#: ../app/views/resources/global_locks/_add_edit_form.php:42
-#: ../app/views/resources/room/_add_edit_form.php:66
-#: ../app/views/resources/category/_add_edit_form.php:154
-#: ../app/views/resources/building/_add_edit_form.php:65
-#: ../app/views/resources/admin/property_groups.php:18
-#: ../app/views/resources/admin/property_groups.php:40
-#: ../app/views/resources/admin/property_groups.php:123
-#: ../app/views/resources/admin/configuration.php:117
-#: ../app/views/resources/room_request/_add_edit_form.php:45
-#: ../app/views/resources/booking/add_from_request.php:47
-#: ../app/views/resources/booking/index.php:152
-#: ../app/views/resources/booking/_add_edit_form.php:589
-#: ../app/views/resources/location/_add_edit_form.php:45
-#: ../app/views/resources/resource/permissions.php:68
-#: ../app/views/resources/resource/temporary_permissions.php:217
-#: ../app/views/resources/resource/temporary_permissions.php:245
-#: ../app/views/resources/resource/_add_edit_form.php:46
-#: ../app/views/materialien/files/sort.php:26
-#: ../app/views/materialien/files/add_files_to_range.php:14
-#: ../app/views/materialien/files/add_dokument.php:118
-#: ../app/views/materialien/files/add_ranges_to_file.php:33
-#: ../app/views/course/admission/instant_course_set.php:18
-#: ../app/views/course/cancel_dates/index.php:29
-#: ../app/views/course/ilias_interface/edit_moduletitle.php:8
-#: ../app/views/course/timesrooms/createCycle.php:130
-#: ../app/views/course/timesrooms/editDate.php:215
-#: ../app/views/course/timesrooms/createSingleDate.php:96
-#: ../app/views/course/basicdata/view.php:26
-#: ../app/views/course/studygroup/globalmodules.php:78
-#: ../app/views/course/topics/edit.php:81 ../app/views/course/scm/edit.php:54
-#: ../app/views/course/block_appointments/index.php:150
-#: ../app/views/course/management/lock.php:23
-#: ../app/views/course/wizard/steps/studyareas/index.php:25
-#: ../app/views/course/gradebook/lecturers/edit_custom_definition.php:11
-#: ../app/views/course/gradebook/lecturers/weights.php:22
-#: ../app/views/course/gradebook/lecturers/custom_definitions.php:62
-#: ../app/views/course/gradebook/lecturers/new_custom_definition.php:11
-#: ../app/views/course/enrolment/apply.php:26
-#: ../app/views/course/members/add_comment.php:13
-#: ../app/views/course/members/additional_input.php:22
-#: ../app/views/course/members/additional.php:25
-#: ../app/views/course/room_requests/request_summary.php:87
-#: ../app/views/course/room_requests/_request_form_footer.php:15
-#: ../app/views/course/lvgselector/index.php:22
-#: ../app/views/course/statusgroups/_edit_groups_size.php:15
-#: ../app/views/course/statusgroups/_edit_groups_selfassign.php:33
-#: ../app/views/course/statusgroups/edit.php:108
-#: ../app/views/course/lti/config.php:17 ../app/views/course/lti/edit.php:88
-#: ../app/views/course/feedback/edit_form.php:5
-#: ../app/views/course/feedback/config.php:31
-#: ../app/views/course/dates/details-edit.php:142
-#: ../app/views/global_search/settings.php:84
-#: ../app/views/settings/general.php:145
-#: ../app/views/multipersonsearch/no_js_form.php:86
-#: ../app/views/multipersonsearch/js_form.php:40
-#: ../app/views/multipersonsearch/js_form.php:42
-#: ../app/views/admin/ilias_interface/edit_server.php:83
-#: ../app/views/admin/ilias_interface/edit_permissions.php:22
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:51
-#: ../app/views/admin/ilias_interface/add_ilias.php:23
-#: ../app/views/admin/ilias_interface/edit_content.php:96
-#: ../app/views/admin/courseplanning/viewcolumns.php:44
-#: ../app/views/admin/courseplanning/rename_column.php:8
-#: ../app/views/admin/courseplanning/pick_color.php:12
-#: ../app/views/admin/api/permissions.php:48
-#: ../app/views/admin/api/config.php:26 ../app/views/admin/api/edit.php:126
-#: ../app/views/admin/configuration/edit_range_config.php:16
-#: ../app/views/admin/course_wizard_steps/edit.php:40
-#: ../app/views/admin/semester/edit.php:98
-#: ../app/views/admin/cronjobs/schedules/edit.php:238
-#: ../app/views/admin/smileys/edit.php:50 ../app/views/admin/domain/edit.php:43
-#: ../app/views/admin/content_terms_of_use/edit.php:57
-#: ../app/views/admin/banner/edit.php:103
-#: ../app/views/admin/courses/notice.php:14
-#: ../app/views/admin/courses/aux_preselect.php:15
-#: ../app/views/admin/courses/sidebar.php:66
-#: ../app/views/admin/user/new.php:209 ../app/views/admin/user/edit.php:608
-#: ../app/views/admin/plugin/index.php:140
-#: ../app/views/admin/plugin/edit_automaticupdate.php:62
-#: ../app/views/admin/holidays/edit.php:32
-#: ../app/views/admin/statusgroups/editGroup.php:73
-#: ../app/views/admin/statusgroups/sortGroups.php:17
-#: ../app/views/admin/datafields/config.php:14
-#: ../app/views/admin/datafields/preview.php:13
-#: ../app/views/admin/sem_classes/details.php:287
-#: ../app/views/admin/licenses/edit.php:43 ../app/views/admin/lti/edit.php:68
-#: ../app/views/admin/login_style/newpic.php:30
-#: ../app/views/tour/admin_overview.php:91 ../app/views/tour/edit_step.php:174
-#: ../app/views/tour/edit_step.php:176 ../app/views/tour/admin_details.php:109
-#: ../app/views/my_courses/groups.php:55 ../app/views/contact/editGroup.php:20
-#: ../app/views/wiki/change_courseperms.php:20
-#: ../app/views/wiki/change_pageperms.php:50 ../app/views/event_log/edit.php:36
-#: ../app/views/calendar/single/manage_access.php:94
-#: ../app/views/calendar/single/edit.php:428
-#: ../app/views/calendar/single/seminar_events.php:90
-#: ../app/views/calendar/single/_edit_status.php:40
-#: ../app/views/calendar/schedule/_entry_schedule.php:55
-#: ../app/views/calendar/schedule/_entry_course.php:68
-#: ../app/views/calendar/schedule/settings.php:38
-#: ../app/views/library_file/_add_edit_form.php:49
-#: ../app/views/file/edit_folder.php:11 ../app/views/file/edit_license.php:20
-#: ../app/views/file/add_url.php:36 ../app/views/file/edit.php:32
-#: ../app/views/file/edit_urlfile.php:50
-#: ../app/views/start/edit_mail_address.php:23
-#: ../app/views/questionnaire/answer.php:41
-#: ../app/views/questionnaire/context.php:101
-#: ../app/views/questionnaire/edit.php:74 ../app/views/blubber/compose.php:115
-#: ../app/views/help_content/admin_overview.php:54
-#: ../app/views/help_content/edit.php:40
-#: ../app/views/userfilter/filter/configure.php:17
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_edit__.php:9
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_edit.php:20
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_select.php:16
-msgid "Speichern"
-msgstr "Save"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:13
-msgid "Aktivitäten"
-msgstr "Activities"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:29
-#: ../public/plugins_packages/core/QuickSelection/QuickSelection.php:29
-msgid "Konfigurieren"
-msgstr "Configure"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:36
-msgid "Eigene Aktivitäten ein-/ausblenden"
-msgstr "Show/hide activity"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:44
-msgid "Aktivitätsdetails ein-/ausblenden"
-msgstr "Show/hide details"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:58
-#, php-format
-msgid "Die REST-API ist nicht aktiviert (%s \"API_ENABLED\")"
-msgstr "The REST API is not activated (%s \"API_ENABLED\")"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:60
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:68
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:95
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:92
-#: ../lib/extern/lib/ExternConfig.class.php:278
-#: ../lib/extern/admin_extern.inc.php:296
-#: ../lib/navigation/AdminNavigation.php:156
-#: ../app/controllers/admin/api.php:35 ../app/controllers/admin/install.php:21
-#: ../app/views/admin/api/config.php:5
-#: ../app/views/admin/install/install.php:28
-#: ../app/views/admin/install/install-basic.php:14
-msgid "Konfiguration"
-msgstr "Configuration"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:66
-#, php-format
-msgid ""
-"Die REST-API-Route ist nicht aktiviert (%s \"/user/:user_id/activitystream"
-"\"\")"
-msgstr ""
-"The REST API Route is not activated (%s \"/user/:user_id/activitystream\"\")"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:107
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:117
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:135
-#: ../public/plugins_packages/core/NewsWidget/NewsWidget.php:18
-#: ../lib/models/User.class.php:811 ../lib/models/StudipNews.class.php:665
-#: ../lib/classes/Siteinfo.php:504
-#: ../lib/classes/ModulesNotification.class.php:49
-#: ../lib/modules/CoreOverview.class.php:43
-#: ../lib/navigation/ToolsNavigation.php:47
-#: ../lib/navigation/StartNavigation.php:278 ../app/views/news/display.php:8
-msgid "Ankündigungen"
-msgstr "Announcements"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:108
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:118
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:136
-#: ../public/plugins_packages/core/Blubber/Blubber.class.php:25
-#: ../public/plugins_packages/core/Blubber/Blubber.class.php:44
-#: ../public/plugins_packages/core/Blubber/controllers/messenger.php:15
-#: ../lib/classes/globalsearch/GlobalSearchBlubber.php:12
-#: ../lib/navigation/CommunityNavigation.php:57
-#: ../app/controllers/blubber.php:11
-msgid "Blubber"
-msgstr "Blubber"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:112
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:217
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:1338
-#: ../public/plugins_packages/core/Forum/CoreForum.class.php:50
-#: ../public/plugins_packages/core/Forum/controllers/forum_controller.php:47
-#: ../lib/classes/ModulesNotification.class.php:61
-#: ../app/controllers/archive.php:20
-#: ../app/views/admin/sem_classes/details.php:129
-#: ../app/views/admin/sem_classes/details.php:212
-msgid "Forum"
-msgstr "Forum"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:114
-#: ../lib/models/FileRef.php:292
-#: ../lib/classes/globalsearch/GlobalSearchFiles.php:19
-#: ../lib/modules/CoreDocuments.class.php:134
-#: ../lib/modules/CoreDocuments.class.php:157 ../lib/archiv.inc.php:337
-#: ../lib/navigation/ContentsNavigation.php:45
-#: ../lib/navigation/FilesNavigation.php:23
-#: ../lib/navigation/StartNavigation.php:298
-#: ../app/controllers/resources/resource.php:1425
-#: ../app/controllers/course/files.php:34
-#: ../app/controllers/institute/files.php:34
-#: ../app/views/resources/room/index.php:51
-#: ../app/views/resources/building/index.php:72
-#: ../app/views/resources/location/index.php:45
-#: ../app/views/resources/resource/index.php:17
-#: ../app/views/course/dates/details.php:64
-msgid "Dateien"
-msgstr "Files"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:116
-#: ../lib/classes/ModulesNotification.class.php:63
-#: ../lib/modules/CoreSchedule.class.php:47
-#: ../lib/modules/CoreSchedule.class.php:81
-#: ../lib/modules/CoreSchedule.class.php:104 ../lib/archiv.inc.php:442
-#: ../app/controllers/course/dates.php:413
-#: ../app/controllers/course/dates.php:518
-msgid "Ablaufplan"
-msgstr "Schedule"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:134
-#: ../lib/models/Message.class.php:335
-#: ../lib/classes/globalsearch/GlobalSearchMessages.php:20
-#: ../lib/classes/FilesSearch/Filter.php:27
-#: ../lib/navigation/MessagingNavigation.php:24
-#: ../lib/navigation/MessagingNavigation.php:73
-#: ../lib/navigation/ProfileNavigation.php:95
-#: ../lib/navigation/StartNavigation.php:226 ../app/controllers/messages.php:24
-#: ../app/controllers/privacy.php:436
-msgid "Nachrichten"
-msgstr "Messages"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:159
-#: ../lib/models/DataField.class.php:125
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:83
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:77
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:1348
-#: ../lib/extern/extern_config.inc.php:58
-#: ../lib/classes/SemBrowse.class.php:541
-#: ../lib/classes/globalsearch/GlobalSearchCourses.php:19
-#: ../lib/classes/FilesSearch/Filter.php:25
-#: ../lib/modules/CoreOverview.class.php:92
-#: ../lib/navigation/BrowseNavigation.php:29
-#: ../lib/navigation/CourseNavigation.php:27 ../app/controllers/news.php:48
-#: ../app/controllers/news.php:614
-#: ../app/controllers/course/room_requests.php:86
-#: ../app/controllers/course/management.php:112
-#: ../app/controllers/course/basicdata.php:384
-#: ../app/controllers/course/study_areas.php:79
-#: ../app/controllers/course/timesrooms.php:1284
-#: ../app/controllers/course/admission.php:65
-#: ../app/views/admission/courseset/configure.php:98
-#: ../app/views/profile/seminare.php:4 ../app/views/admin/semester/index.php:26
-#: ../app/views/admin/autoinsert/index.php:73
-#: ../app/views/admin/domain/index.php:22
-#: ../app/views/admin/courses/courses.php:70
-#: ../app/views/admin/courses/courses.php:75
-#: ../app/views/questionnaire/context.php:27
-#: ../app/views/lvgruppen/lvgruppen/index.php:11
-msgid "Veranstaltungen"
-msgstr "Courses"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:160
-#: ../lib/models/DataField.class.php:126
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:116
-#: ../lib/classes/SemBrowse.class.php:384
-#: ../lib/classes/globalsearch/GlobalSearchInstitutes.php:19
-#: ../lib/classes/FilesSearch/Filter.php:26
-#: ../lib/navigation/AdminNavigation.php:71
-#: ../app/controllers/search/globalsearch.php:97 ../app/controllers/news.php:44
-#: ../app/controllers/news.php:609 ../app/controllers/admin/plugin.php:498
-#: ../app/views/search/archive/index.php:73
-#: ../app/views/course/basicdata/view.php:59
-#: ../app/views/admin/role/assign_role.php:100
-#: ../app/views/questionnaire/context.php:70
-msgid "Einrichtungen"
-msgstr "Institutes"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:161
-msgid "Persönlich"
-msgstr "Personal"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:162
-msgid "Global"
-msgstr "Global"
-
-#: ../public/plugins_packages/core/ActivityFeed/ActivityFeed.php:165
-msgid "Aktivitäten konfigurieren"
-msgstr "Configure activities"
-
-#: ../public/plugins_packages/core/Blubber/Blubber.class.php:47
-msgid "Blubber-Messenger"
-msgstr "Blubber-Messenger"
-
-#: ../public/plugins_packages/core/Blubber/Blubber.class.php:63
-#: ../public/plugins_packages/core/Blubber/Blubber.class.php:64
-#: ../public/plugins_packages/core/Blubber/Blubber.class.php:87
-#: ../public/plugins_packages/core/Blubber/Blubber.class.php:88
-msgid "Es gibt neue Blubber"
-msgstr "There are new Blubbers"
-
-#: ../public/plugins_packages/core/Blubber/controllers/messenger.php:41
-#: ../app/controllers/blubber.php:61
-#, php-format
-msgid "Wollen Sie ein Avatar-Bild nutzen? %sLaden Sie jetzt ein Bild hoch%s."
-msgstr "Do you want to use an avatar? %sUpload a picture now%s."
-
-#: ../public/plugins_packages/core/Blubber/controllers/messenger.php:63
-#: ../app/controllers/blubber.php:487 ../app/views/file/choose_file.php:27
-msgid "Suche nach ..."
-msgstr "Search for ..."
-
-#: ../public/plugins_packages/core/NewsWidget/NewsWidget.php:31
-#: ../app/controllers/messages.php:916
-msgid "Alle als gelesen markieren"
-msgstr "Mark all as read"
-
-#: ../public/plugins_packages/core/NewsWidget/NewsWidget.php:38
-#: ../app/views/news/display.php:23
-msgid "RSS-Feed"
-msgstr "RSS feed"
-
-#: ../public/plugins_packages/core/NewsWidget/NewsWidget.php:45
-msgid "Ankündigungen bearbeiten"
-msgstr "Edit this announcement"
-
-#: ../public/plugins_packages/core/NewsWidget/NewsWidget.php:49
-#: ../app/views/news/display.php:17
-msgid "RSS-Feed konfigurieren"
-msgstr "Configure RSS feed"
-
-#: ../public/plugins_packages/core/NewsWidget/NewsWidget.php:75
-msgid "Alle Ankündigungen wurden als gelesen markiert."
-msgstr "All announcements have been marked as read."
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:96
-#: ../lib/classes/UserLookup.class.php:426 ../templates/privacy.php:23
-msgid "Root"
-msgstr "Root"
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:97
-msgid "Administrator/-in"
-msgstr "Administrator"
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:98
-msgid "Lehrende/-r"
-msgstr "Lecturer"
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:99
-#: ../config/config.inc.php:86 ../config/config_develop.inc.php:90
-#: ../app/controllers/institute/members.php:187
-#: ../app/views/course/wizard/steps/basicdata/index.php:157
-msgid "Tutor/-in"
-msgstr "Tutor"
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:100
-#: ../public/plugins_packages/core/Forum/views/index/index.php:23
-#: ../app/controllers/messages.php:965 ../app/views/files/_files_thead.php:39
-#: ../app/views/course/feedback/index.php:38
-#: ../app/views/files_dashboard/search.php:44
-msgid "Autor/-in"
-msgstr "Author"
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:101
-#: ../config/config.inc.php:88 ../config/config_develop.inc.php:92
-msgid "Leser/-in"
-msgstr "Reader"
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:142
-#, php-format
-msgid "Seit Ihrem letzten Besuch gibt es %s neue Beiträge"
-msgstr "%s new postings since your last login. "
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:147
-#, php-format
-msgid "Es gibt bisher keine Beiträge."
-msgstr "There are no posting so far."
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:149
-#, php-format
-msgid ""
-"Seit Ihrem letzten Besuch gab es nichts Neues. Es ist ein alter Beitrag "
-"vorhanden."
-msgstr "Nothing new since your last visit. One old post is available."
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:152
-#, php-format
-msgid ""
-"Seit Ihrem letzten Besuch gab es nichts Neues. Es sind %s alte Beiträge "
-"vorhanden."
-msgstr "Nothing new since your last visit. %s old posts are available."
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:218
-#, php-format
-msgid "Forum \"%s\""
-msgstr "Forum \"%s\""
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:223
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2465
-msgid "anonym"
-msgstr "anonymous"
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:236
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:1346
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:24
-#: ../app/controllers/course/dates.php:439
-#: ../app/views/course/topics/index.php:9
-#: ../app/views/course/dates/index.php:39
-#: ../app/views/course/dates/index.php:79
-#: ../app/views/course/dates/new_topic.php:12
-#: ../app/views/course/dates/details.php:9
-msgid "Thema"
-msgstr "Topic"
-
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:237
-#: ../public/plugins_packages/core/Forum/models/ForumHelpers.php:243
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:1347
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:1352
-#, php-format
-msgid "erstellt von %s am %s"
-msgstr "created by %s on %s"
-
-#: ../public/plugins_packages/core/Forum/models/ForumPerm.php:133
-#, php-format
-msgid ""
-"Sie haben keine Berechtigung für diese Aktion! Benötigte Berechtigung: %s"
-msgstr "You are not permitted to perform this action! Required permission: %s"
-
-#: ../public/plugins_packages/core/Forum/models/ForumPerm.php:191
-#, php-format
-msgid ""
-"Forum: Sie haben keine Berechtigung auf die Kategorie mit der ID %s "
-"zuzugreifen!"
-msgstr "Forum: You have no permission to access the category with ID %s!"
-
-#: ../public/plugins_packages/core/Forum/models/ForumPerm.php:210
-#, php-format
-msgid ""
-"Forum: Sie haben keine Berechtigung auf den Eintrag mit der ID %s "
-"zuzugreifen!"
-msgstr "Forum: You have no permission to access the entry with ID %s!"
-
-#: ../public/plugins_packages/core/Forum/models/ForumLike.php:34
-msgid " gefällt einer deiner Forenbeiträge!"
-msgstr " likes one of your forum posts!"
-
-#: ../public/plugins_packages/core/Forum/models/ForumActivity.php:29
-#, php-format
-msgid "%s hat im Forum der Veranstaltung \"%s\" einen Bereich erstellt."
-msgstr "%s created a new board in course \"%s\"."
-
-#: ../public/plugins_packages/core/Forum/models/ForumActivity.php:31
-#, php-format
-msgid "%s hat im Forum der Veranstaltung \"%s\" ein Thema erstellt."
-msgstr "%s created a new topic in course \"%s\"."
-
-#: ../public/plugins_packages/core/Forum/models/ForumActivity.php:34
-#, php-format
-msgid "%s hat im Forum der Veranstaltung \"%s\" auf ein Thema geantwortet."
-msgstr "%s replied to a topic in course \"%s\"."
-
-#: ../public/plugins_packages/core/Forum/models/ForumActivity.php:48
-#, php-format
-msgid "%s hat im Forum der Veranstaltung \"%s\" einen Beitrag editiert."
-msgstr "%s edited a posting in course \"%s\"."
-
-#: ../public/plugins_packages/core/Forum/models/ForumActivity.php:52
-#, php-format
-msgid "%s hat seinen eigenen Beitrag vom %s editiert."
-msgstr "%s edited his posting from %s."
-
-#: ../public/plugins_packages/core/Forum/models/ForumActivity.php:58
-#, php-format
-msgid "%s hat den Beitrag von %s vom %s editiert."
-msgstr "%s edited a posting of %s from %s."
-
-#: ../public/plugins_packages/core/Forum/models/ForumActivity.php:82
-#, php-format
-msgid "%s hat im Forum der Veranstaltung \"%s\" einen Beitrag gelöscht."
-msgstr "%s deleted a post in course \"%s\"."
-
-#: ../public/plugins_packages/core/Forum/models/ForumActivity.php:86
-#, php-format
-msgid "%s hat seinen Beitrag vom %s gelöscht."
-msgstr "%s deleted his post from %s."
-
-#: ../public/plugins_packages/core/Forum/models/ForumActivity.php:92
-#, php-format
-msgid "%s hat den Beitrag von %s vom %s gelöscht."
-msgstr "%s deleted a posting from %s from %s."
-
-#: ../public/plugins_packages/core/Forum/models/ForumActivity.php:144
-#: ../public/plugins_packages/core/Forum/models/ForumAbo.php:127
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:116
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:44
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:77
-#: ../public/plugins_packages/core/Forum/views/index/_last_post.php:4
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:32
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:177
-#: ../public/plugins_packages/core/Forum/views/index/_mail_notification.php:10
-#: ../lib/activities/Stream.php:150
-#: ../lib/classes/globalsearch/GlobalSearchForum.php:123
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:136
-#: ../app/routes/Activity.php:147 ../app/views/localizations/show.php:32
-#: ../app/views/evaluation/_evaluation.php:51
-msgid "Anonym"
-msgstr "Anonymous"
-
-#: ../public/plugins_packages/core/Forum/models/ForumAbo.php:127
-#, php-format
-msgid "%s hat einen Beitrag geschrieben"
-msgstr "%s wrote a posting"
-
-#: ../public/plugins_packages/core/Forum/models/ForumAbo.php:145
-msgid "[Forum]"
-msgstr "[Forum]"
-
-#: ../public/plugins_packages/core/Forum/models/ForumAbo.php:145
-msgid "Neuer Beitrag"
-msgstr "New posting"
-
-#: ../public/plugins_packages/core/Forum/models/ForumIssue.php:62
-#: ../public/plugins_packages/core/Forum/models/ForumIssue.php:74
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:72
-#: ../lib/classes/globalsearch/GlobalSearchForum.php:112
-#: ../lib/classes/globalsearch/GlobalSearchForum.php:128
-msgid "Ohne Titel"
-msgstr "Without title"
-
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:118
-msgid "Zuletzt editiert von"
-msgstr "Last edited by"
-
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:358
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:1253
-msgid "Allgemein"
-msgstr "General"
-
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:1266
-msgid "Allgemeine Diskussion"
-msgstr "General discussion"
-
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:1267
-msgid "Hier ist Raum für allgemeine Diskussionen"
-msgstr "This is the place for some general discussion"
-
-#: ../public/plugins_packages/core/Forum/models/ForumEntry.php:1382
-msgid "Forum Einträge"
-msgstr "Forum posts"
-
-#: ../public/plugins_packages/core/Forum/CoreForum.class.php:54
-#: ../public/plugins_packages/core/Forum/views/index/_breadcrumb.php:4
-#: ../lib/classes/AdminModules.class.php:88
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:563
-#: ../lib/modules/CoursewareModule.class.php:48
-#: ../lib/modules/FeedbackModule.class.php:39
-#: ../lib/modules/CoreOverview.class.php:87
-#: ../lib/export/export_xslt_vars.inc.php:58
-#: ../lib/export/export_xslt_vars.inc.php:89
-#: ../lib/export/export_xslt_vars.inc.php:174
-#: ../lib/export/export_xslt_vars.inc.php:186
-#: ../lib/navigation/ToolsNavigation.php:56
-#: ../lib/navigation/ConsultationNavigation.php:71
-#: ../lib/navigation/ContentsNavigation.php:35
-#: ../lib/navigation/ResourceNavigation.php:73
-#: ../lib/navigation/ResourceNavigation.php:90
-#: ../lib/navigation/FilesNavigation.php:44
-#: ../lib/navigation/StartNavigation.php:194 ../app/controllers/tour.php:234
-#: ../app/controllers/archive.php:19
-#: ../app/controllers/contents/overview.php:16
-#: ../app/controllers/admin/autoinsert.php:232
-#: ../app/controllers/room_management/overview.php:87
-#: ../app/controllers/help_content.php:297 ../app/controllers/files.php:259
-#: ../app/controllers/files.php:312 ../app/views/shared/download/mhb.php:3
-#: ../app/views/contents/overview/index.php:1
-#: ../app/views/admin/sem_classes/details.php:210
-msgid "Übersicht"
-msgstr "Overview"
-
-#: ../public/plugins_packages/core/Forum/CoreForum.class.php:57
-msgid "Neue Beiträge"
-msgstr "New postings "
-
-#: ../public/plugins_packages/core/Forum/CoreForum.class.php:58
-msgid "Letzte Beiträge"
-msgstr "Latest posting "
-
-#: ../public/plugins_packages/core/Forum/CoreForum.class.php:59
-msgid "Gemerkte Beiträge"
-msgstr "Bookmarked postings"
-
-#: ../public/plugins_packages/core/Forum/CoreForum.class.php:63
-#: ../lib/navigation/BrowseNavigation.php:63
-#: ../lib/navigation/BrowseNavigation.php:91
-#: ../lib/navigation/ResourceNavigation.php:266
-#: ../templates/shared/index_box.php:5 ../templates/shared/content_box.php:2
-#: ../app/views/room_management/overview/index.php:56
-msgid "Administration"
-msgstr "Administration"
-
-#: ../public/plugins_packages/core/Forum/CoreForum.class.php:200
-msgid ""
-"Textbasierte und zeit- und ortsunabhängige Diskursmöglichkeit. Lehrende "
-"können parallel zu Veranstaltungsthemen Fragen stellen, die von den "
-"Studierenden per Meinungsaustausch besprochen werden."
-msgstr ""
-"Text-based tool for asynchronous communication. Lecturers may add questions "
-"to topics to start a discussion. "
-
-#: ../public/plugins_packages/core/Forum/controllers/area.php:20
-#: ../public/plugins_packages/core/Forum/controllers/index.php:472
-#: ../lib/models/CalendarEvent.class.php:656
-msgid "Kein Titel"
-msgstr "No title "
-
-#: ../public/plugins_packages/core/Forum/controllers/area.php:54
-msgid "Die Änderungen am Bereich wurden gespeichert."
-msgstr "Changes in the area have been saved."
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:319
-msgid ""
-"Ihr Suchbegriff muss mindestens 3 Zeichen lang sein und darf nur Buchstaben "
-"und Zahlen enthalten!"
-msgstr ""
-"Your search item has to be 3 characters long and can only contain letters "
-"and numbers!"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:329
-msgid "Es wurden keine Beiträge gefunden, die zu Ihren Suchkriterien passen!"
-msgstr "No posting matching your search criteria found!"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:441
-#, php-format
-msgid "Der Eintrag %s wurde gelöscht!"
-msgstr "Entry %s has been deleted!"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:444
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:164
-#, php-format
-msgid "Sind sie sicher dass Sie den Eintrag %s löschen möchten?"
-msgstr "Are you sure that you want to delete the posting %s?"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:445
-#: ../public/plugins_packages/core/Forum/views/index/_js_templates.php:10
-#: ../lib/classes/admission/userfilter/DatafieldCondition.class.php:58
-#: ../lib/classes/DataFieldBoolEntry.class.php:23
-#: ../templates/shared/question-box.php:21
-#: ../templates/evaluation/config.php:68
-#: ../templates/userfilter/_confirm_delete.php:8
-#: ../app/controllers/module/download.php:107
-#: ../app/controllers/module/download.php:109
-#: ../app/controllers/course/plus.php:148
-#: ../app/views/admission/courseset/factored_users.php:14
-#: ../app/views/admission/courseset/index.php:47
-#: ../app/views/shared/modul/_regularien.php:33
-#: ../app/views/shared/modul/_modullv.php:85
-#: ../app/views/module/module/modulteil.php:381
-#: ../app/views/module/module/modulteil.php:408
-#: ../app/views/course/admission/_change_admission.php:10
-#: ../app/views/evaluation/_evaluation.php:51
-#: ../app/views/admin/configuration/edit_configuration.php:24
-#: ../app/views/admin/cronjobs/schedules/display.php:11
-#: ../app/views/admin/cronjobs/schedules/display.php:39
-#: ../app/views/admin/cronjobs/logs/index.php:108
-#: ../app/views/admin/content_terms_of_use/index.php:34
-#: ../app/views/admin/datafields/index.php:129
-#: ../app/views/admin/datafields/index.php:136
-#: ../app/views/admin/datafields/index.php:144
-#: ../app/views/admin/datafields/index.php:151
-#: ../app/views/admin/sem_classes/details.php:122
-#: ../app/views/dialog/confirm_dialog.php:8
-msgid "Ja"
-msgstr "Yes"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:446
-#: ../public/plugins_packages/core/Forum/views/index/_js_templates.php:11
-#: ../lib/classes/admission/userfilter/DatafieldCondition.class.php:58
-#: ../lib/classes/DataFieldBoolEntry.class.php:23
-#: ../templates/shared/question-box.php:24
-#: ../templates/evaluation/config.php:69
-#: ../templates/userfilter/_confirm_delete.php:9
-#: ../app/controllers/module/download.php:107
-#: ../app/controllers/module/download.php:109
-#: ../app/controllers/course/plus.php:149
-#: ../app/views/admission/courseset/factored_users.php:14
-#: ../app/views/admission/courseset/index.php:47
-#: ../app/views/consultation/admin/create.php:172
-#: ../app/views/shared/modul/_regularien.php:33
-#: ../app/views/shared/modul/_modullv.php:85
-#: ../app/views/module/module/modulteil.php:376
-#: ../app/views/module/module/modulteil.php:403
-#: ../app/views/course/admission/_change_admission.php:11
-#: ../app/views/evaluation/_evaluation.php:51
-#: ../app/views/admin/configuration/edit_configuration.php:26
-#: ../app/views/admin/cronjobs/schedules/display.php:11
-#: ../app/views/admin/cronjobs/schedules/display.php:41
-#: ../app/views/admin/cronjobs/logs/index.php:110
-#: ../app/views/admin/content_terms_of_use/index.php:34
-#: ../app/views/admin/datafields/index.php:131
-#: ../app/views/admin/datafields/index.php:138
-#: ../app/views/admin/datafields/index.php:146
-#: ../app/views/admin/datafields/index.php:153
-#: ../app/views/admin/sem_classes/details.php:121
-#: ../app/views/dialog/confirm_dialog.php:9
-msgid "Nein"
-msgstr "No"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:450
-msgid "Sie können nicht die gesamte Veranstaltung löschen!"
-msgstr "You cannot delete the entire course!"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:473
-#: ../app/views/file/_terms_of_use_select.php:43
-msgid "Keine Beschreibung"
-msgstr "No description"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:480
-msgid "Sie haben keine Berechtigung, diesen Eintrag zu editieren!"
-msgstr "You are not allowed to edit this posting!"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:634
-msgid "Das Thema wurde erfolgreich geschlossen."
-msgstr "Topic closed."
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:657
-msgid "Das Thema wurde erfolgreich geöffnet."
-msgstr "The topic has been opened successfully."
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:680
-msgid "Das Thema wurde erfolgreich in der Themenliste hervorgehoben."
-msgstr "Topic marked."
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:703
-msgid "Die Hervorhebung des Themas in der Themenliste wurde entfernt."
-msgstr "Mark deleted."
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:743
-#: ../app/controllers/resources/category.php:474
-msgid "Die Kategorie wurde gelöscht!"
-msgstr "Category has been deleted!"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:770
-msgid "Der Name der Kategorie wurde geändert."
-msgstr "Name of category has been changed."
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:809
-msgid "Sie haben das gesamte Forum abonniert!"
-msgstr "You have subscribed to the entire forum!"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:810
-msgid "Sie haben diesen Bereich abonniert."
-msgstr "You have subscribed to this area. "
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:811
-msgid "Sie haben dieses Thema abonniert"
-msgstr "You have subscribed to this topic"
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:813
-msgid "Sie werden nun über jeden neuen Beitrag informiert."
-msgstr "You will be informed about new postings."
-
-#: ../public/plugins_packages/core/Forum/controllers/index.php:833
-msgid "Abonnement aufgehoben."
-msgstr "Enrolment terminated."
-
-#: ../public/plugins_packages/core/Forum/views/area/_add_area_form.php:6
-#: ../public/plugins_packages/core/Forum/views/area/_js_templates.php:35
-msgid "Name des neuen Bereiches"
-msgstr "Name of new area"
-
-#: ../public/plugins_packages/core/Forum/views/area/_add_area_form.php:7
-#: ../public/plugins_packages/core/Forum/views/area/_js_templates.php:36
-msgid "Optionale Beschreibung des neuen Bereiches"
-msgstr "Optional description of the new area"
-
-#: ../public/plugins_packages/core/Forum/views/area/_add_area_form.php:9
-#: ../public/plugins_packages/core/Forum/views/area/_js_templates.php:38
-#: ../public/plugins_packages/core/Forum/views/index/_areas.php:88
-msgid "Bereich hinzufügen"
-msgstr "Add area"
-
-#: ../public/plugins_packages/core/Forum/views/area/_add_area_form.php:14
-#: ../public/plugins_packages/core/Forum/views/area/_js_templates.php:43
-#: ../public/plugins_packages/core/Forum/views/index/_last_post.php:20
-msgid "keine Antworten"
-msgstr "no answers"
-
-#: ../public/plugins_packages/core/Forum/views/area/_edit_category_form.php:4
-#: ../public/plugins_packages/core/Forum/views/area/_js_templates.php:6
-msgid "Kategorie speichern"
-msgstr "Save category"
-
-#: ../public/plugins_packages/core/Forum/views/area/add.php:10
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:44
-msgid "Dieser Eintrag ist neu!"
-msgstr "This entry is new!"
-
-#: ../public/plugins_packages/core/Forum/views/area/add.php:57
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:103
-msgid "Zur letzten Antwort"
-msgstr "To last answer"
-
-#: ../public/plugins_packages/core/Forum/views/area/add.php:63
-msgid "Zum Ablaufplan"
-msgstr "To Schedule"
-
-#: ../public/plugins_packages/core/Forum/views/area/add.php:65
-msgid ""
-"Dieser Bereich ist einem Thema zugeordnet und kann hier nicht editiert "
-"werden. Die Angaben können im Ablaufplan angepasst werden."
-msgstr ""
-"This area is assigned to a topic and cannot be edited here. The data can be "
-"modified in the schedule."
-
-#: ../public/plugins_packages/core/Forum/views/area/add.php:69
-msgid "Name/Beschreibung des Bereichs ändern"
-msgstr "Edit name/description of area"
-
-#: ../public/plugins_packages/core/Forum/views/area/add.php:78
-msgid "Bereich mitsamt allen Einträgen löschen!"
-msgstr "Delete area with all entries!"
-
-#: ../public/plugins_packages/core/Forum/views/admin/index.php:3
-msgid "Bedienungshinweise"
-msgstr "Operating instructions"
-
-#: ../public/plugins_packages/core/Forum/views/admin/index.php:4
-msgid ""
-"Sie befinden sich hier in der Administrationsansicht des Forums. Mit den "
-"blauen Pfeilen können Sie einen oder mehrere Einträge auswählen, welche dann "
-"verschoben werden können. "
-msgstr ""
-"You are in the administration view of the forum. Please use the blue arrows "
-"to select one or more entries which may then be moved."
-
-#: ../public/plugins_packages/core/Forum/views/admin/index.php:10
-msgid ""
-"Sie sollten nicht mehr als 20 Einträge gleichzeitig auswählen, da das "
-"verschieben sonst sehr lange dauern kann."
-msgstr ""
-"You shouldn't choose more than a total of 20 entries, because this may cause "
-"the moving process to take a very long time."
-
-#: ../public/plugins_packages/core/Forum/views/admin/index.php:30
-msgid ""
-"Die Forenadministration funktioniert nur mit eingeschaltetem JavaScript!"
-msgstr "The forum administration works only with JavaScript enabled!"
-
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:9
-#: ../public/plugins_packages/core/Forum/views/index/index.php:195
-#: ../app/controllers/course/topics.php:135
-#: ../app/controllers/course/topics.php:261
-msgid "Neues Thema erstellen"
-msgstr "Add a new topic"
-
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:18
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:20
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:31
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:32
-msgid "Ihr Name"
-msgstr "Your name"
-
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:38
-msgid "Schreiben Sie hier Ihren Beitrag."
-msgstr "Write your forum post here."
-
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:50
-msgid "Beitrag erstellen"
-msgstr "Write posting"
-
-#: ../public/plugins_packages/core/Forum/views/index/_new_entry.php:56
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:111
-#: ../lib/extern/views/extern_edit_module.inc.php:167
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:237
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:381
-#: ../app/views/oer/mymaterial/edit.php:26 ../app/views/messages/write.php:95
-#: ../app/views/messages/write.php:169
-#: ../app/views/admin/autoinsert/manual.php:130
-#: ../app/views/admin/datafields/config.php:15
-#: ../app/views/admin/datafields/preview.php:7
-#: ../app/views/admin/login_style/index.php:15
-msgid "Vorschau"
-msgstr "Preview"
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:25
-#: ../public/plugins_packages/core/Forum/views/index/_areas.php:55
-msgid "Beiträge"
-msgstr "Postings"
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:27
-#: ../public/plugins_packages/core/Forum/views/index/_areas.php:57
-msgid "letzte Antwort"
-msgstr "last answer"
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:56
-msgid ""
-"Dieses Thema ist geschlossen, es können keine neuen Beiträge erstellt werden."
-msgstr "Topic is closed. No new posting allowed."
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:62
-msgid "Dieses Thema wurde hervorgehoben."
-msgstr "Topic marked."
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:75
-#: ../public/plugins_packages/core/Forum/views/index/_last_post.php:2
-#: ../templates/admission/rules/configure.php:12
-#: ../templates/sidebar/room-search-criteria-templates.php:28
-#: ../templates/sidebar/room-search-criteria.php:50
-#: ../app/views/calendar/schedule/_entry_schedule.php:23
-#: ../app/views/calendar/schedule/settings.php:11
-msgid "von"
-msgstr "from"
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:84
-#: ../public/plugins_packages/core/Forum/views/index/_last_post.php:12
-msgid "am"
-msgstr "on"
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:112
-#: ../public/plugins_packages/core/Forum/views/index/index.php:84
-#: ../app/views/localizations/show.php:39
-msgid "Thema hervorheben"
-msgstr "Mark topic"
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:119
-#: ../public/plugins_packages/core/Forum/views/index/index.php:98
-#: ../app/views/localizations/show.php:38
-msgid "Hervorhebung aufheben"
-msgstr "Delete mark"
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:128
-msgid "Dieses Thema verschieben"
-msgstr "Move topic"
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:137
-#: ../public/plugins_packages/core/Forum/views/index/index.php:52
-#: ../public/plugins_packages/core/Forum/views/index/index.php:215
-#: ../app/views/localizations/show.php:36
-msgid "Thema schließen"
-msgstr "Close topic"
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:147
-#: ../public/plugins_packages/core/Forum/views/index/index.php:66
-#: ../public/plugins_packages/core/Forum/views/index/index.php:221
-#: ../app/views/localizations/show.php:37
-msgid "Thema öffnen"
-msgstr "Open topic"
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:159
-msgid "Dieses Thema löschen"
-msgstr "Delete topic"
-
-#: ../public/plugins_packages/core/Forum/views/index/_threads.php:173
-msgid "Bereich, in den dieser Thread verschoben werden soll:"
-msgstr "Area to move the thread to:"
-
-#: ../public/plugins_packages/core/Forum/views/index/_favorite.php:6
-msgid "Beitrag merken"
-msgstr "Bookmark posting"
-
-#: ../public/plugins_packages/core/Forum/views/index/_favorite.php:10
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:22
-msgid "Beitrag nicht mehr merken"
-msgstr "Remove posting from bookmarks"
-
-#: ../public/plugins_packages/core/Forum/views/index/_like.php:14
-#, php-format
-msgid "Dir und %s weiteren gefällt das."
-msgstr "You and %s others like this."
-
-#: ../public/plugins_packages/core/Forum/views/index/_like.php:23
-msgid "Dir gefällt das."
-msgstr "You like this."
-
-#: ../public/plugins_packages/core/Forum/views/index/_like.php:26
-#, php-format
-msgid "%s gefällt das."
-msgstr "%s likes that."
-
-#: ../public/plugins_packages/core/Forum/views/index/_like.php:41
-msgid "Gefällt mir!"
-msgstr "Like!"
-
-#: ../public/plugins_packages/core/Forum/views/index/_like.php:45
-msgid "Gefällt mir nicht mehr!"
-msgstr "Don´t like it anymore!"
-
-#: ../public/plugins_packages/core/Forum/views/index/_last_post.php:16
-msgid "Direkt zum Beitrag..."
-msgstr "Jump to the posting..."
-
-#: ../public/plugins_packages/core/Forum/views/index/index.php:20
-msgid "Beiträge durchsuchen"
-msgstr "Search posts"
-
-#: ../public/plugins_packages/core/Forum/views/index/index.php:22
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:774
-#: ../lib/modules/CoursewareModule.class.php:44
-#: ../lib/navigation/ContentsNavigation.php:39
-#: ../app/controllers/messages.php:964 ../app/controllers/tour.php:569
-#: ../app/controllers/admin/courses.php:1105
-#: ../app/views/public_courses/index.php:39 ../app/views/news/edit_news.php:55
-#: ../app/views/course/scm/edit.php:38 ../app/views/settings/categories.php:34
-#: ../app/views/contents/courseware/create_project.php:24
-#: ../app/views/admin/configuration/type-edit.php:11
-#: ../app/views/admin/courses/courses.php:170
-#: ../app/views/my_studygroups/index.php:22 ../app/views/tour/edit_step.php:25
-#: ../app/views/tour/admin_details.php:132
-#: ../app/views/my_courses/waiting_list.php:23
-#: ../app/views/my_courses/archive.php:22
-#: ../app/views/my_institutes/index.php:39
-#: ../app/views/help_content/admin_overview.php:22
-msgid "Inhalt"
-msgstr "Content"
-
-#: ../public/plugins_packages/core/Forum/views/index/index.php:32
-#: ../public/plugins_packages/core/Forum/views/index/_abo_link.php:22
-msgid "Nicht mehr abonnieren"
-msgstr "Unsubscribe"
-
-#: ../public/plugins_packages/core/Forum/views/index/index.php:36
-#: ../public/plugins_packages/core/Forum/views/index/_abo_link.php:12
-msgid "Komplettes Forum abonnieren"
-msgstr "Subscribe to the entire forum"
-
-#: ../public/plugins_packages/core/Forum/views/index/index.php:37
-#: ../public/plugins_packages/core/Forum/views/index/_abo_link.php:10
-msgid "Diesen Bereich abonnieren"
-msgstr "Subscribe to this area"
-
-#: ../public/plugins_packages/core/Forum/views/index/index.php:38
-#: ../public/plugins_packages/core/Forum/views/index/_abo_link.php:10
-msgid "Dieses Thema abonnieren"
-msgstr "Subscribe to this topic"
-
-#: ../public/plugins_packages/core/Forum/views/index/index.php:112
-#: ../public/plugins_packages/core/Forum/views/index/_new_category.php:6
-msgid "Neue Kategorie erstellen"
-msgstr "Create new category"
-
-#: ../public/plugins_packages/core/Forum/views/index/index.php:120
-#: ../public/plugins_packages/core/Forum/views/index/index.php:185
-#: ../public/plugins_packages/core/Forum/views/index/index.php:236
-msgid "Beiträge als PDF exportieren"
-msgstr "Export postings as PDF"
-
-#: ../public/plugins_packages/core/Forum/views/index/index.php:152
-msgid "In dieser Ansicht befinden sich zur Zeit keine Beiträge."
-msgstr "Currently, this view contains no postings."
-
-#: ../public/plugins_packages/core/Forum/views/index/_preview.php:3
-msgid "Vorschau ihres Beitrags:"
-msgstr "Preview of your posting:"
-
-#: ../public/plugins_packages/core/Forum/views/index/_preview.php:3
-msgid "Vergessen Sie nicht, ihren Beitrag zu speichern!"
-msgstr "Don't forget to save your posting!"
-
-#: ../public/plugins_packages/core/Forum/views/index/_preview.php:7
-msgid "Vorschaufenster schließen"
-msgstr "Close preview window"
-
-#: ../public/plugins_packages/core/Forum/views/index/_areas.php:15
-msgid ""
-"Diese vordefinierte Kategorie kann nicht bearbeitet oder gelöscht werden. "
-"Für Autor/innen taucht sie allerdings nur auf, wenn sie Bereiche enthält."
-msgstr ""
-"The selected category cannot be edited or deleted. It is only visible for "
-"students if it contains categories."
-
-#: ../public/plugins_packages/core/Forum/views/index/_areas.php:54
-msgid "Name des Bereichs"
-msgstr "Name of the area"
-
-#: ../public/plugins_packages/core/Forum/views/index/_areas.php:87
-msgid "Neuen Bereich zu dieser Kategorie hinzufügen."
-msgstr "Add new area to this category."
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:36
-#: ../lib/activities/SystemContext.php:54 ../lib/activities/Stream.php:148
-#: ../lib/classes/JsonApi/Schemas/Activity.php:179
-#: ../lib/navigation/FooterNavigation.php:36
-#: ../app/controllers/messages.php:627 ../app/controllers/news.php:319
-#: ../app/views/oer/endpoints/index.php:4 ../app/views/messages/read.php:14
-#: ../app/views/contact/index.php:31
-msgid "Stud.IP"
-msgstr "Stud.IP"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:37
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:228
-msgid "von Stud.IP erstellt"
-msgstr "created by Stud.IP"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:64
-msgid ""
-"Dieses Thema wurde geschlossen. Sie können daher nicht auf diesen Beitrag "
-"antworten."
-msgstr "Topic closed. New post not allowed."
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:105
-#: ../app/views/news/edit_news.php:263
-#: ../app/views/course/timesrooms/editStack.php:114
-#: ../app/views/settings/privacy.php:93 ../app/views/settings/privacy.php:183
-#: ../app/views/settings/deputies.php:60
-#: ../app/views/settings/statusgruppen/modify_institute.php:83
-#: ../app/views/settings/statusgruppen/modify.php:79
-#: ../app/views/admin/webservice_access/index.php:46
-msgid "Änderungen speichern"
-msgstr "Save changes"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:119
-msgid "Beitrag zitieren"
-msgstr "Quote posting"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:127
-msgid "Beitrag bearbeiten"
-msgstr "Edit posting"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:141
-msgid ""
-"Wenn Sie diesen Beitrag löschen wird ebenfalls das gesamte Thema gelöscht. "
-"Sind Sie sicher, dass Sie das tun möchten?"
-msgstr ""
-"If you delete this posting the entire topic will be deleted. Are you sure to "
-"delete the posting and the topic?"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:142
-msgid "Thema löschen"
-msgstr "Delete topic"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:145
-msgid "Möchten Sie diesen Beitrag wirklich löschen?"
-msgstr "Are you sure to delete this posting?"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:146
-msgid "Beitrag löschen"
-msgstr "Delete posting"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:152
-msgid "Beitrag weiterleiten"
-msgstr "Forward posting"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:199
-msgid "Online"
-msgstr "Online"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:201
-msgid "Abwesend"
-msgstr "Absent"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:203
-msgid "Offline"
-msgstr "Offline"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:221
-msgid "Erhaltene \"Gefällt mir!\":"
-msgstr "Received \"Like!\"s:"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:240
-#: ../lib/classes/JsonApi/Routes/Blubber/CommentsUpdate.php:67
-#: ../app/routes/Blubber.php:146
-msgid "Link zu diesem Beitrag"
-msgstr "Link to this posting"
-
-#: ../public/plugins_packages/core/Forum/views/index/_post.php:261
-msgid "Dieser Beitrag ist seit Ihrem letzten Besuch hinzugekommen."
-msgstr "This posting has been created after your last visit."
-
-#: ../public/plugins_packages/core/Forum/views/index/_new_category.php:9
-#: ../app/views/resources/category/_add_edit_form.php:17
-#: ../app/views/settings/categories.php:29
-msgid "Name der Kategorie"
-msgstr "Name of category"
-
-#: ../public/plugins_packages/core/Forum/views/index/_new_category.php:10
-msgid "Titel für neue Kategorie"
-msgstr "Title for new category"
-
-#: ../public/plugins_packages/core/Forum/views/index/_new_category.php:15
-msgid "Kategorie erstellen"
-msgstr "Create new category"
-
-#: ../public/plugins_packages/core/Forum/views/index/_mail_notification.php:7
-#, php-format
-msgid ""
-"Im Forum der Veranstaltung **%s** gibt es einen neuen Beitrag unter **%s** "
-"von **%s**"
-msgstr ""
-"In the forum of course **%s** there is a new posting in **%s** from **%s**"
-
-#: ../public/plugins_packages/core/Forum/views/index/_mail_notification.php:14
-msgid "Beitrag im Forum ansehen:"
-msgstr "View post in forum:"
-
-#: ../public/plugins_packages/core/Forum/views/index/_abo_link.php:17
-msgid ""
-"Wenn sie diesen Bereich abonnieren, erhalten Sie eine Stud.IP-interne "
-"Nachricht sobald in diesem Bereich ein neuer Beitrag erstellt wurde."
-msgstr ""
-"If you subscribe to an area you will be sent a Stud.IP internal message as "
-"soon as a new posting has been posted in this area."
-
-#: ../public/plugins_packages/core/Forum/views/index/_smiley_favorites.php:6
-#: ../lib/navigation/AdminNavigation.php:163
-msgid "Smileys"
-msgstr "Smileys"
-
-#: ../public/plugins_packages/core/Forum/views/index/_smiley_favorites.php:8
-msgid "Formatierungshilfen"
-msgstr "Help for text formatting"
-
-#: ../public/plugins_packages/core/Forum/views/index/_smiley_favorites.php:19
-msgid "Sie haben noch keine Smiley-Favoriten."
-msgstr "You do not have any smiley favourites yet."
-
-#: ../public/plugins_packages/core/Forum/views/index/_smiley_favorites.php:22
-msgid "Fügen Sie welche hinzu!"
-msgstr "Add some!"
-
-#: ../public/plugins_packages/core/QuickSelection/templates/edit.php:4
-msgid "Inhalte des Schnellzugriff-Widget:"
-msgstr "Content of the Quicklinks widget:"
-
-#: ../public/plugins_packages/core/QuickSelection/QuickSelection.php:16
-#: ../app/controllers/contact.php:215
-msgid "Schnellzugriff"
-msgstr "Quicklinks"
-
-#: ../public/plugins_packages/core/QuickSelection/QuickSelection.php:96
-msgid "Schnellzugriff konfigurieren"
-msgstr "Configure quicklinks"
-
-#: ../public/plugins_packages/core/TerminWidget/TerminWidget.php:19
-msgid "Meine aktuellen Termine"
-msgstr "My current dates"
-
-#: ../public/plugins_packages/core/TerminWidget/TerminWidget.php:31
-#: ../app/views/calendar/single/edit.php:15
-msgid "Neuen Termin anlegen"
-msgstr "Create new date"
-
-#: ../public/plugins_packages/core/EvaluationsWidget/EvaluationsWidget.php:16
-#: ../lib/models/User.class.php:827 ../lib/models/Questionnaire.php:231
-#: ../lib/classes/Siteinfo.php:507 ../lib/modules/CoreAdmin.class.php:87
-#: ../lib/modules/CoreStudygroupAdmin.class.php:41
-#: ../lib/navigation/ToolsNavigation.php:52
-#: ../app/controllers/questionnaire.php:15
-#: ../app/views/questionnaire/widget.php:6
-msgid "Fragebögen"
-msgstr "Questionnaire"
-
-#: ../public/plugins_packages/core/EvaluationsWidget/EvaluationsWidget.php:49
-msgid "Umfragen bearbeiten"
-msgstr "Edit surveys"
-
-#: ../public/plugins_packages/core/ScheduleWidget/ScheduleWidget.php:27
-#: ../app/controllers/calendar/schedule.php:48
-#: ../app/views/settings/general.php:5
-msgid "Mein Stundenplan"
-msgstr "My timetable"
-
-#: ../public/export.php:131
-msgid "Fehlerhafter Seitenaufruf"
-msgstr "Invalid page call"
-
-#: ../public/export.php:139
-msgid ""
-"Das Exportmodul ist nicht eingebunden. Damit Daten im XML-Format exportiert "
-"werden können, muss das Exportmodul in den Systemeinstellungen "
-"freigeschaltet werden.\n"
-"    Wenden Sie sich bitte an die Administratoren."
-msgstr ""
-
-#: ../public/export.php:140
-msgid "Exportmodul nicht eingebunden"
-msgstr "Export module deactivated"
-
-#: ../public/email_validation.php:42
-msgid "Bestätigung der E-Mail-Adresse"
-msgstr "Confirmation of e-mail address"
-
-#: ../public/email_validation.php:46
-#, php-format
-msgid ""
-"Sie haben schon den Status <b>%s</b> im System.\n"
-"                       Eine Aktivierung des Accounts ist nicht mehr nötig, "
-"um Schreibrechte zu bekommen"
-msgstr ""
-"In this system, you already have status <b>%s</b>.\n"
-"Therefore, activating the account is not required for obtaining write access"
-
-#: ../public/email_validation.php:49
-msgid "zurück zur Startseite"
-msgstr "back to the start page"
-
-#: ../public/email_validation.php:56
-msgid ""
-"Sie müssen den vollständigen Link aus der Bestätigungsmail in die "
-"Adresszeile Ihres Browsers kopieren."
-msgstr ""
-"You must copy the complete link from the confirmation e-mail into the "
-"address line of your browser."
-
-#: ../public/email_validation.php:61
-msgid "Der übergebene <em>Secret-Code</em> ist nicht korrekt."
-msgstr "The transferred <em>Secret Code</em> is not correct."
-
-#: ../public/email_validation.php:63
-msgid ""
-"Sie müssen unter dem Benutzernamen eingeloggt sein, für den Sie die "
-"Bestätigungsmail erhalten haben."
-msgstr ""
-"You must login with the username you have received the confirmation e-mail "
-"for."
-
-#: ../public/email_validation.php:64
-msgid ""
-"Und Sie müssen den vollständigen Link aus der Bestätigungsmail in die "
-"Adresszeile Ihres Browsers kopieren."
-msgstr ""
-"Furthermore, you must copy the complete link from the confirmation e-mail "
-"into the address line of your browser."
-
-#: ../public/email_validation.php:79
-msgid "Fehler! Bitte wenden Sie sich an den Systemadministrator."
-msgstr "Error! Please contact the system administrator."
-
-#: ../public/email_validation.php:83
-msgid ""
-"Ihr Status wurde erfolgreich auf <em>autor</em> gesetzt.<br>\n"
-"                      Damit dürfen Sie in den meisten Veranstaltungen "
-"schreiben, für die Sie sich anmelden."
-msgstr ""
-"Your status has successfully been changed to <em>author</em>.<br>\n"
-"Now you have write access to most of the courses you enrol in."
-
-#: ../public/email_validation.php:86
-msgid ""
-"Einige Veranstaltungen erfordern allerdings bei der Anmeldung die Eingabe "
-"eines Passwortes.\n"
-"                        Dieses Passwort erfahren Sie von den Lehrenden der "
-"Veranstaltung."
-msgstr "Some courses are protected. Ask the lecturers for the password. "
-
-#: ../public/email_validation.php:95
-#, php-format
-msgid ""
-"Die Statusänderung wird erst nach einem erneuten %sLogin%s wirksam!<br>\n"
-"                          Deshalb wurden Sie jetzt automatisch ausgeloggt."
-msgstr ""
-"The change of status will apply upon your next %slogin%s! <br>\n"
-"           Therefore you will automatically be logged out now."
-
-#: ../public/plugins.php:43
-msgid "Sie besitzen keine Rechte zum Aufruf dieses Plugins."
-msgstr "You do not have permissions to call this plug-in."
-
-#: ../lib/calendar_functions.inc.php:64
-msgid "Rosenmontag"
-msgstr "Rose Monday"
-
-#: ../lib/calendar_functions.inc.php:65
-msgid "Fastnacht"
-msgstr "Shrove Tuesday"
-
-#: ../lib/calendar_functions.inc.php:66
-msgid "Aschermittwoch"
-msgstr "Ash Wednesday"
-
-#: ../lib/calendar_functions.inc.php:68
-msgid "Karfreitag"
-msgstr "Good Friday"
-
-#: ../lib/calendar_functions.inc.php:69
-msgid "Ostersonntag"
-msgstr "Easter Sunday"
-
-#: ../lib/calendar_functions.inc.php:70
-msgid "Ostermontag"
-msgstr "Easter Monday"
-
-#: ../lib/calendar_functions.inc.php:71
-msgid "Christi Himmelfahrt"
-msgstr "Ascension Day"
-
-#: ../lib/calendar_functions.inc.php:72
-msgid "Pfingstsonntag"
-msgstr "Whit Sunday"
-
-#: ../lib/calendar_functions.inc.php:73
-msgid "Pfingstmontag"
-msgstr "Whit Monday"
-
-#: ../lib/calendar_functions.inc.php:74
-msgid "Fronleichnam"
-msgstr "Corpus Christi"
-
-#: ../lib/calendar_functions.inc.php:79
-msgid "Neujahr"
-msgstr "New Year's Day"
-
-#: ../lib/calendar_functions.inc.php:80
-msgid "Hl. Drei Könige"
-msgstr "Twelfth Night"
-
-#: ../lib/calendar_functions.inc.php:87
-msgid "Frühlingsanfang"
-msgstr "First day of spring"
-
-#: ../lib/calendar_functions.inc.php:88
-msgid "Maifeiertag"
-msgstr "Labour Day"
-
-#: ../lib/calendar_functions.inc.php:90
-msgid "Sommeranfang"
-msgstr "First day of summer"
-
-#: ../lib/calendar_functions.inc.php:91
-msgid "Herbstanfang"
-msgstr "First day of autumn"
-
-#: ../lib/calendar_functions.inc.php:92
-msgid "Tag der deutschen Einheit"
-msgstr "Day of German Unity"
-
-#: ../lib/calendar_functions.inc.php:93
-msgid "Reformationstag"
-msgstr "Reformation Day"
-
-#: ../lib/calendar_functions.inc.php:94
-msgid "Allerheiligen"
-msgstr "All Saints' Day"
-
-#: ../lib/calendar_functions.inc.php:95
-msgid "Martinstag"
-msgstr "St. Martin's Day"
-
-#: ../lib/calendar_functions.inc.php:96
-msgid "Nikolaus"
-msgstr "St Nicholas' Day"
-
-#: ../lib/calendar_functions.inc.php:97
-msgid "Winteranfang"
-msgstr "First day of winter"
-
-#: ../lib/calendar_functions.inc.php:98
-msgid "Hl. Abend"
-msgstr "Christmas Eve"
-
-#: ../lib/calendar_functions.inc.php:99
-msgid "1. Weihnachtstag"
-msgstr "Christmas Day"
-
-#: ../lib/calendar_functions.inc.php:100
-msgid "2. Weihnachtstag"
-msgstr "Boxing Day"
-
-#: ../lib/calendar_functions.inc.php:101
-msgid "Silvester"
-msgstr "New Year's Eve"
-
-#: ../lib/calendar_functions.inc.php:112
-msgid "Muttertag"
-msgstr "Mother's day"
-
-#: ../lib/calendar_functions.inc.php:116
-msgid "Erntedank"
-msgstr "Thanksgiving"
-
-#: ../lib/calendar_functions.inc.php:120
-msgid "Volkstrauertag"
-msgstr "Volkstrauertag"
-
-#: ../lib/calendar_functions.inc.php:124
-msgid "Totensonntag"
-msgstr "Totensonntag"
-
-#: ../lib/calendar_functions.inc.php:128
-msgid "1. Advent"
-msgstr "1. advent sunday"
-
-#: ../lib/calendar_functions.inc.php:132
-msgid "2. Advent"
-msgstr "2. advent sunday"
-
-#: ../lib/calendar_functions.inc.php:136
-msgid "3. Advent"
-msgstr "3. advent sunday"
-
-#: ../lib/calendar_functions.inc.php:140
-msgid "4. Advent"
-msgstr "4. advent sunday"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:220
-msgid "Die ILIAS-Version ist ungültig."
-msgstr "The ILIAS version is invalid."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:227
-#: ../app/controllers/admin/ilias_interface.php:200
-#, php-format
-msgid "Die URL \"%s\" ist nicht erreichbar."
-msgstr "The URL \"%s\" is not reachable."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:234
-#, php-format
-msgid ""
-"Anmelden mit dem Account \"%s\" in der %s-Installation ist fehlgeschlagen."
-msgstr "Login with the account \"%s\" in the %s installation failed."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:253
-msgid "Die ILIAS-Kategorie für Stud.IP-Inhalte wurde noch nicht festgelegt."
-msgstr "The ILIAS category for Stud.IP content has not yet been specified."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:258
-#, php-format
-msgid "Die Kategorie \"%s\" wurde nicht gefunden."
-msgstr "The category \"%s\" could not be found."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:266
-#: ../lib/elearning/Ilias4ConnectedCMS.class.php:206
-#, php-format
-msgid "User-Daten"
-msgstr "User details"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:267
-#: ../lib/elearning/Ilias4ConnectedCMS.class.php:207
-msgid "Hier befinden sich die persönlichen Ordner der Stud.IP-User."
-msgstr "Here are the personal folders of the Stud.IP user."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:274
-#, php-format
-msgid "Die Kategorie \"%s\" konnte nicht angelegt werden."
-msgstr "The category \"%s\" could not be created."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:296
-msgid ""
-"Das Rollen-Template für die persönliche Kategorie wurde noch nicht "
-"festgelegt."
-msgstr ""
-"The role template for the personal category has not yet been specified."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:301
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:104
-#: ../lib/elearning/Ilias4ConnectedCMS.class.php:222
-#, php-format
-msgid ""
-"Das Rollen-Template mit dem Namen \"%s\" wurde im System %s nicht gefunden."
-msgstr "No role template named \"%s\" found in system %s."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:337
-#: ../lib/elearning/Ilias4ConnectedUser.class.php:62
-#, php-format
-msgid "Verbindung mit Nutzer ID %s wiederhergestellt."
-msgstr "Connection to user-id %s established."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:340
-#, php-format
-msgid ""
-"Externer Account konnte nicht angelegt werden. Es existiert bereits ein User "
-"mit dem Login %s in %s"
-msgstr ""
-"The external account could not be created. A user with the login %s already "
-"exists in %s"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:486
-#: ../lib/elearning/Ilias3ConnectedUser.class.php:159
-#: ../lib/elearning/Ilias4ConnectedUser.class.php:130
-#, php-format
-msgid "Eigene Daten von %s (%s)."
-msgstr "Personal details of %s (%s)."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:487
-#: ../lib/elearning/Ilias3ConnectedUser.class.php:160
-#: ../lib/elearning/Ilias4ConnectedUser.class.php:131
-#, php-format
-msgid "Hier befinden sich die persönlichen Lernmodule des Benutzers %s."
-msgstr "Here are the personal learning modules of user %s."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:507
-msgid "ILIAS-User-Kategorie konnte nicht angelegt werden."
-msgstr "ILIAS user category could not be created."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:513
-#: ../lib/elearning/Ilias3ConnectedUser.class.php:183
-#: ../lib/elearning/Ilias4ConnectedUser.class.php:150
-#, php-format
-msgid "User-Rolle von %s. Diese Rolle wurde von Stud.IP generiert."
-msgstr "Role of user %s. This role was generated by Stud.IP."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:577
-msgid "Weblink"
-msgstr "Web link"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:578
-msgid "HTML-Lernmodul"
-msgstr "HTML learning module"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:579
-msgid "SCORM/AICC-Lernmodul"
-msgstr "SCORM/AICC learning module"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:580
-msgid "ILIAS-Lernmodul"
-msgstr "ILIAS learning module"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:581
-msgid "Glossar"
-msgstr "Glossary"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:582
-#: ../lib/models/Test.php:16
-msgid "Test"
-msgstr "Test"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:583
-msgid "Umfrage"
-msgstr "Survey"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:584
-#: ../lib/classes/SemType.class.php:244 ../config/mvv_config.php:149
-msgid "Übung"
-msgstr "Exercises"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:719
-#: ../lib/elearning/Ilias4ConnectedCMS.class.php:103
-#, php-format
-msgid "Aktualisierung der Zuordnungen zum System \"%s\":"
-msgstr "Update associations with system \"%s\":"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:726
-#: ../lib/elearning/Ilias4ConnectedCMS.class.php:107
-#, php-format
-msgid "Zuordnung zur Lerneinheit \"%s\" wurde hinzugefügt."
-msgstr "Association with learning unit \"%s\" added."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:737
-#: ../lib/elearning/Ilias4ConnectedCMS.class.php:118
-#, php-format
-msgid "Zuordnung zu \"%s\" wurde entfernt."
-msgstr "Assignment to \"%s\" has been removed."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:740
-#: ../lib/elearning/Ilias4ConnectedCMS.class.php:121
-msgid "Die Zuordnungen sind bereits auf dem aktuellen Stand."
-msgstr "Associations already are up-to-date."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:767
-msgid "Keine Berechtigung zum Kopieren des Lernobjekts!"
-msgstr "No permission to copy the learning object!"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:781
-#, php-format
-msgid ""
-"Der zugeordnete ILIAS-Kurs (ID %s) existiert nicht mehr. Ein neuer Kurs "
-"wurde angelegt."
-msgstr ""
-"The assigned ILIAS course (ID %s) does not exist anymore. A new course has "
-"been created."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:795
-msgid "Zuordnungs-Fehler: Lernobjekt konnte nicht angelegt werden."
-msgstr "Assignment error: The learning object could not be created."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:911
-#: ../lib/ilias_interface/ConnectedIlias.class.php:972
-#, php-format
-msgid "Hier befinden sich die Veranstaltungsdaten zum Semester \"%s\"."
-msgstr "Here are the course data to the semester \"%s\"."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:919
-#: ../lib/ilias_interface/ConnectedIlias.class.php:943
-#: ../lib/ilias_interface/ConnectedIlias.class.php:962
-#: ../lib/ilias_interface/ConnectedIlias.class.php:984
-#, php-format
-msgid "ILIAS-Kategorie %s konnte nicht angelegt werden."
-msgstr "ILIAS category %s could not be created."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:931
-#: ../lib/ilias_interface/ConnectedIlias.class.php:954
-#: ../lib/elearning/Ilias4ConnectedCMS.class.php:152
-#, php-format
-msgid ""
-"Hier befinden sich die Veranstaltungsdaten zur Stud.IP-Einrichtung \"%s\"."
-msgstr "Here you find all course details of Stud.IP institute \"%s\"."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:994
-#, php-format
-msgid "Stud.IP-Veranstaltung \"%s\""
-msgstr "Stud.IP course \"%s\""
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:996
-#, php-format
-msgid "%s"
-msgstr "%s"
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:1004
-#, php-format
-msgid "Dieser Kurs enthält die Lernobjekte der Stud.IP-Veranstaltung \"%s\"."
-msgstr ""
-"This course contains the learning objects of the Stud.IP course \"%s\"."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:1007
-msgid "ILIAS-Kurs konnte nicht angelegt werden."
-msgstr "ILIAS course could not be created."
-
-#: ../lib/ilias_interface/ConnectedIlias.class.php:1034
-msgid "Neue Verknüpfung zu ILIAS-User angelegt."
-msgstr ""
-
-#: ../lib/activities/NewsProvider.php:18
-msgid "Ankündigungen in der Veranstaltung"
-msgstr "Announcements in the course"
-
-#: ../lib/activities/NewsProvider.php:24
-msgid "Ankündigungen in der Einrichtung"
-msgstr "Announcements in the institute"
-
-#: ../lib/activities/NewsProvider.php:30
-msgid "Ankündigungen auf der Startseite"
-msgstr "Announcements on the start page"
-
-#: ../lib/activities/NewsProvider.php:37
-msgid "Ankündigungen auf der Profilseite"
-msgstr "Announcements on the profile page"
-
-#: ../lib/activities/NewsProvider.php:131
-msgid "eine Ankündigung"
-msgstr "an announcement"
-
-#: ../lib/activities/CoursewareProvider.php:22
-#, fuzzy
-msgid "Zur Courseware in der Veranstaltung"
-msgstr "Course's forum"
-
-#: ../lib/activities/CoursewareProvider.php:27
-#, fuzzy
-msgid "Zur eigenen Courseware"
-msgstr "Only personal dates"
-
-#: ../lib/activities/CoursewareProvider.php:36
-#, fuzzy
-msgid "eine Courseware-Aktivität"
-msgstr "Last activity"
-
-#: ../lib/activities/MessageProvider.php:36
-msgid "Zur Nachricht"
-msgstr "Go to message"
-
-#: ../lib/activities/MessageProvider.php:79
-msgid "eine Nachricht"
-msgstr "a message"
-
-#: ../lib/activities/ScheduleProvider.php:26
-msgid "Zum Ablaufplan der Veranstaltung"
-msgstr "Go to the course's schedule"
-
-#: ../lib/activities/ScheduleProvider.php:54
-#, php-format
-msgid "Der Ablaufplan wurde in der Veranstaltung \"%s\" von %s aktualisiert."
-msgstr "The schedule in the course \"%s\" has been updated by %s."
-
-#: ../lib/activities/ScheduleProvider.php:80
-msgid "einen Eintrag im Ablaufplan"
-msgstr "an entry in the schedule"
-
-#: ../lib/activities/ParticipantsProvider.php:27
-#, php-format
-msgid "%s wurde in die Veranstaltung \"%s\" eingetragen."
-msgstr "%s has been entered in the course \"%s\"."
-
-#: ../lib/activities/ParticipantsProvider.php:31
-#, php-format
-msgid "%s wurde aus der Veranstaltung \"%s\" ausgetragen."
-msgstr "%s has been removed from course \"%s\"."
-
-#: ../lib/activities/ParticipantsProvider.php:68
-#: ../app/views/course/enrolment/apply.php:57
-#: ../app/views/calendar/schedule/_entry_course.php:55
-#: ../app/views/calendar/schedule/_entry_course.php:60
-msgid "Zur Veranstaltung"
-msgstr "To course"
-
-#: ../lib/activities/ParticipantsProvider.php:81
-msgid "eine/n Teilnehmer/in"
-msgstr "a participant"
-
-#: ../lib/activities/WikiProvider.php:33
-msgid "Zum Wiki der Veranstaltung"
-msgstr "Course's wiki"
-
-#: ../lib/activities/WikiProvider.php:43
-msgid "Zum Wiki der Einrichtung"
-msgstr "Institute's wiki"
-
-#: ../lib/activities/WikiProvider.php:81
-#, php-format
-msgid "Die Wiki-Seite %s wurde von %s in der Veranstaltung \"%s\" angelegt."
-msgstr "The wiki page %s has been created by %s in the course \"%s\"."
-
-#: ../lib/activities/WikiProvider.php:83
-#, php-format
-msgid "Die Wiki-Seite %s wurde von %s in der Einrichtung \"%s\" angelegt."
-msgstr "The wiki page %s has been created by %s in the institute \"%s\"."
-
-#: ../lib/activities/WikiProvider.php:88
-#, php-format
-msgid ""
-"Die Wiki-Seite %s wurde von %s in der Veranstaltung \"%s\" aktualisiert."
-msgstr "The wiki page %s has been updated by %s in the course \"%s\"."
-
-#: ../lib/activities/WikiProvider.php:90
-#, php-format
-msgid "Die Wiki-Seite %s wurde von %s in der Einrichtung \"%s\" aktualisiert."
-msgstr "The wiki page %s has been updated by %s in the institute \"%s\"."
-
-#: ../lib/activities/WikiProvider.php:95
-#, php-format
-msgid "Die Wiki-Seite %s wurde von %s in der Veranstaltung \"%s\" gelöscht."
-msgstr "The wiki page %s has been deleted by %s in the course \"%s\"."
-
-#: ../lib/activities/WikiProvider.php:97
-#, php-format
-msgid "Die Wiki-Seite %s wurde von %s in der Einrichtung \"%s\" gelöscht."
-msgstr "The wiki page %s has been deleted by %s in the institute \"%s\"."
-
-#: ../lib/activities/WikiProvider.php:123
-msgid "eine Wiki-Seite"
-msgstr "a wiki page"
-
-#: ../lib/activities/ForumProvider.php:38
-msgid "Zum Forum der Veranstaltung"
-msgstr "Course's forum"
-
-#: ../lib/activities/ForumProvider.php:51
-msgid "einen Forenbeitrag"
-msgstr "a post"
-
-#: ../lib/activities/Activity.php:132
-#, php-format
-msgid "beantwortete %s"
-msgstr "answered %s"
-
-#: ../lib/activities/Activity.php:133
-#, php-format
-msgid "versuchte %s"
-msgstr "attempted %s"
-
-#: ../lib/activities/Activity.php:134
-#, php-format
-msgid "nahm teil an %s"
-msgstr "participated at %s"
-
-#: ../lib/activities/Activity.php:135
-#, php-format
-msgid "beendete %s"
-msgstr "finished %s"
-
-#: ../lib/activities/Activity.php:136
-#, php-format
-msgid "erstellte %s"
-msgstr "created %s"
-
-#: ../lib/activities/Activity.php:137 ../lib/activities/Activity.php:146
-#, php-format
-msgid "löschte %s"
-msgstr "deleted %s"
-
-#: ../lib/activities/Activity.php:138
-#, php-format
-msgid "bearbeitete %s"
-msgstr "modified %s"
-
-#: ../lib/activities/Activity.php:139
-#, php-format
-msgid "erlebte %s"
-msgstr "experienced %s"
-
-#: ../lib/activities/Activity.php:140
-#, php-format
-msgid "verfehlte %s"
-msgstr "missed %s"
-
-#: ../lib/activities/Activity.php:141
-#, php-format
-msgid "importierte %s"
-msgstr "imported %s"
-
-#: ../lib/activities/Activity.php:142
-#, php-format
-msgid "interagierte mit %s"
-msgstr "interacted with %s"
-
-#: ../lib/activities/Activity.php:143
-#, php-format
-msgid "bestand %s"
-msgstr "passed %s"
-
-#: ../lib/activities/Activity.php:144
-#, php-format
-msgid "teilte %s"
-msgstr "shared %s"
-
-#: ../lib/activities/Activity.php:145
-#, php-format
-msgid "sendete %s"
-msgstr "sent %s"
-
-#: ../lib/activities/DocumentsProvider.php:35
-msgid "Zum Dateibereich der Veranstaltung"
-msgstr "Course's file area"
-
-#: ../lib/activities/DocumentsProvider.php:42
-msgid "Zum Dateibereich der Einrichtung"
-msgstr "Institute's file area"
-
-#: ../lib/activities/DocumentsProvider.php:78
-#, php-format
-msgid "Die Datei %s wurde von %s in der Veranstaltung \"%s\" hochgeladen."
-msgstr "The file %s has been uploaded by %s in the course \"%s\"."
-
-#: ../lib/activities/DocumentsProvider.php:80
-#, php-format
-msgid "Die Datei %s wurde von %s in der Einrichtung \"%s\" hochgeladen."
-msgstr "The file %s has been uploaded by %s in the institute \"%s\"."
-
-#: ../lib/activities/DocumentsProvider.php:87
-#, php-format
-msgid "Die Datei %s wurde von %s in der Veranstaltung \"%s\" aktualisiert."
-msgstr "The file %s has been updated by %s in the course \"%s\"."
-
-#: ../lib/activities/DocumentsProvider.php:89
-#, php-format
-msgid "Die Datei %s wurde von %s in der Einrichtung \"%s\" aktualisiert."
-msgstr "The file %s has been updated by %s in the institute \"%s\"."
-
-#: ../lib/activities/DocumentsProvider.php:96
-#, php-format
-msgid "Die Datei %s wurde von %s in der Veranstaltung \"%s\" gelöscht."
-msgstr "The file %s has been deleted by %s in the course \"%s\"."
-
-#: ../lib/activities/DocumentsProvider.php:98
-#, php-format
-msgid "Die Datei %s wurde von %s in der Einrichtung \"%s\" gelöscht."
-msgstr "The file %s has been deleted by %s in the institute \"%s\"."
-
-#: ../lib/activities/DocumentsProvider.php:129
-msgid "eine Datei"
-msgstr "one file"
-
-#: ../lib/activities/Stream.php:160
-#: ../lib/classes/JsonApi/Schemas/Activity.php:189
-#, php-format
-msgid " im Kurs \"%s\""
-msgstr " in course \"%s\""
-
-#: ../lib/activities/Stream.php:167
-#: ../lib/classes/JsonApi/Schemas/Activity.php:196
-#, php-format
-msgid " in der Einrichtung \"%s\""
-msgstr " in the institute \"%s\""
-
-#: ../lib/activities/Stream.php:173
-#: ../lib/classes/JsonApi/Schemas/Activity.php:202
-msgid "allen"
-msgstr "all"
-
-#: ../lib/dates.inc.php:38
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:946
-#: ../lib/classes/calendar/CalendarScheduleModel.php:552
-msgid "So"
-msgstr "Sun."
-
-#: ../lib/dates.inc.php:38 ../lib/models/CalendarEvent.class.php:472
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:184
-#: ../app/controllers/room_management/planning.php:1460
-#: ../app/controllers/calendar/schedule.php:312
-#: ../app/controllers/calendar/instschedule.php:172
-#: ../app/views/consultation/admin/create.php:9
-#: ../app/views/resources/booking/_add_edit_form.php:75
-#: ../app/views/resources/booking/_add_edit_form.php:96
-#: ../app/views/admin/cronjobs/schedules/edit.php:11
-#: ../app/views/room_management/planning/booking_comments.php:68
-#: ../app/views/calendar/single/edit.php:234
-msgid "Sonntag"
-msgstr "Sunday"
-
-#: ../lib/dates.inc.php:41
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:946
-#: ../lib/classes/calendar/CalendarScheduleModel.php:551
-msgid "Mo"
-msgstr "Mon."
-
-#: ../lib/dates.inc.php:41 ../lib/models/CalendarEvent.class.php:471
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:178
-#: ../app/controllers/room_management/planning.php:1412
-#: ../app/controllers/calendar/schedule.php:306
-#: ../app/controllers/calendar/instschedule.php:171
-#: ../app/views/consultation/admin/create.php:3
-#: ../app/views/resources/booking/_add_edit_form.php:63
-#: ../app/views/resources/booking/_add_edit_form.php:84
-#: ../app/views/admin/cronjobs/schedules/edit.php:5
-#: ../app/views/room_management/planning/booking_comments.php:14
-#: ../app/views/calendar/single/edit.php:228
-msgid "Montag"
-msgstr "Monday"
-
-#: ../lib/dates.inc.php:44
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:946
-#: ../lib/classes/calendar/CalendarScheduleModel.php:551
-msgid "Di"
-msgstr "Tue."
-
-#: ../lib/dates.inc.php:44 ../lib/models/CalendarEvent.class.php:471
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:179
-#: ../app/controllers/room_management/planning.php:1420
-#: ../app/controllers/calendar/schedule.php:307
-#: ../app/controllers/calendar/instschedule.php:171
-#: ../app/views/consultation/admin/create.php:4
-#: ../app/views/resources/booking/_add_edit_form.php:65
-#: ../app/views/resources/booking/_add_edit_form.php:86
-#: ../app/views/admin/cronjobs/schedules/edit.php:6
-#: ../app/views/room_management/planning/booking_comments.php:23
-#: ../app/views/calendar/single/edit.php:229
-msgid "Dienstag"
-msgstr "Tuesday"
-
-#: ../lib/dates.inc.php:47
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:946
-#: ../lib/classes/calendar/CalendarScheduleModel.php:551
-msgid "Mi"
-msgstr "Wed."
-
-#: ../lib/dates.inc.php:47 ../lib/models/CalendarEvent.class.php:471
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:180
-#: ../app/controllers/room_management/planning.php:1428
-#: ../app/controllers/calendar/schedule.php:308
-#: ../app/controllers/calendar/instschedule.php:171
-#: ../app/views/consultation/admin/create.php:5
-#: ../app/views/resources/booking/_add_edit_form.php:67
-#: ../app/views/resources/booking/_add_edit_form.php:88
-#: ../app/views/admin/cronjobs/schedules/edit.php:7
-#: ../app/views/room_management/planning/booking_comments.php:32
-#: ../app/views/calendar/single/edit.php:230
-msgid "Mittwoch"
-msgstr "Wednesday"
-
-#: ../lib/dates.inc.php:50
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:946
-#: ../lib/classes/calendar/CalendarScheduleModel.php:552
-msgid "Do"
-msgstr "Thu."
-
-#: ../lib/dates.inc.php:50 ../lib/models/CalendarEvent.class.php:472
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:181
-#: ../app/controllers/room_management/planning.php:1436
-#: ../app/controllers/calendar/schedule.php:309
-#: ../app/controllers/calendar/instschedule.php:172
-#: ../app/views/consultation/admin/create.php:6
-#: ../app/views/resources/booking/_add_edit_form.php:69
-#: ../app/views/resources/booking/_add_edit_form.php:90
-#: ../app/views/admin/cronjobs/schedules/edit.php:8
-#: ../app/views/room_management/planning/booking_comments.php:41
-#: ../app/views/calendar/single/edit.php:231
-msgid "Donnerstag"
-msgstr "Thursday"
-
-#: ../lib/dates.inc.php:53
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:946
-#: ../lib/classes/calendar/CalendarScheduleModel.php:552
-msgid "Fr"
-msgstr "Fri."
-
-#: ../lib/dates.inc.php:53 ../lib/models/CalendarEvent.class.php:472
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:182
-#: ../app/controllers/room_management/planning.php:1444
-#: ../app/controllers/calendar/schedule.php:310
-#: ../app/controllers/calendar/instschedule.php:172
-#: ../app/views/consultation/admin/create.php:7
-#: ../app/views/resources/booking/_add_edit_form.php:71
-#: ../app/views/resources/booking/_add_edit_form.php:92
-#: ../app/views/admin/cronjobs/schedules/edit.php:9
-#: ../app/views/room_management/planning/booking_comments.php:50
-#: ../app/views/calendar/single/edit.php:232
-msgid "Freitag"
-msgstr "Friday"
-
-#: ../lib/dates.inc.php:56
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:946
-#: ../lib/classes/calendar/CalendarScheduleModel.php:552
-msgid "Sa"
-msgstr "Sat."
-
-#: ../lib/dates.inc.php:56 ../lib/models/CalendarEvent.class.php:472
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:183
-#: ../app/controllers/room_management/planning.php:1452
-#: ../app/controllers/calendar/schedule.php:311
-#: ../app/controllers/calendar/instschedule.php:172
-#: ../app/views/consultation/admin/create.php:8
-#: ../app/views/resources/booking/_add_edit_form.php:73
-#: ../app/views/resources/booking/_add_edit_form.php:94
-#: ../app/views/admin/cronjobs/schedules/edit.php:10
-#: ../app/views/room_management/planning/booking_comments.php:59
-#: ../app/views/calendar/single/edit.php:233
-msgid "Samstag"
-msgstr "Saturday"
-
-#: ../lib/dates.inc.php:99 ../lib/models/CalendarEvent.class.php:538
-#: ../app/views/calendar/single/edit.php:312
-msgid "Januar"
-msgstr "January"
-
-#: ../lib/dates.inc.php:99
-msgid "Jan."
-msgstr "Jan."
-
-#: ../lib/dates.inc.php:100 ../lib/models/CalendarEvent.class.php:538
-#: ../app/views/calendar/single/edit.php:313
-msgid "Februar"
-msgstr "February"
-
-#: ../lib/dates.inc.php:100
-msgid "Feb."
-msgstr "Feb."
-
-#: ../lib/dates.inc.php:101 ../lib/models/CalendarEvent.class.php:538
-#: ../app/views/calendar/single/edit.php:314
-msgid "März"
-msgstr "March"
-
-#: ../lib/dates.inc.php:102 ../lib/models/CalendarEvent.class.php:538
-#: ../app/views/calendar/single/edit.php:315
-msgid "April"
-msgstr "April"
-
-#: ../lib/dates.inc.php:102
-msgid "Apr."
-msgstr "Apr."
-
-#: ../lib/dates.inc.php:103 ../lib/models/CalendarEvent.class.php:538
-#: ../app/views/calendar/single/edit.php:316
-msgid "Mai"
-msgstr "May"
-
-#: ../lib/dates.inc.php:104 ../lib/models/CalendarEvent.class.php:539
-#: ../app/views/calendar/single/edit.php:317
-msgid "Juni"
-msgstr "June"
-
-#: ../lib/dates.inc.php:105 ../lib/models/CalendarEvent.class.php:539
-#: ../app/views/calendar/single/edit.php:318
-msgid "Juli"
-msgstr "July"
-
-#: ../lib/dates.inc.php:106 ../lib/models/CalendarEvent.class.php:539
-#: ../app/views/calendar/single/edit.php:319
-msgid "August"
-msgstr "August"
-
-#: ../lib/dates.inc.php:106
-msgid "Aug."
-msgstr "Aug."
-
-#: ../lib/dates.inc.php:107 ../lib/models/CalendarEvent.class.php:539
-#: ../app/views/calendar/single/edit.php:320
-msgid "September"
-msgstr "September"
-
-#: ../lib/dates.inc.php:107
-msgid "Sep."
-msgstr "Sep."
-
-#: ../lib/dates.inc.php:108 ../lib/models/CalendarEvent.class.php:539
-#: ../app/views/calendar/single/edit.php:321
-msgid "Oktober"
-msgstr "October"
-
-#: ../lib/dates.inc.php:108
-msgid "Okt."
-msgstr "Oct."
-
-#: ../lib/dates.inc.php:109 ../lib/models/CalendarEvent.class.php:540
-#: ../app/views/calendar/single/edit.php:322
-msgid "November"
-msgstr "November"
-
-#: ../lib/dates.inc.php:109
-msgid "Nov."
-msgstr "Nov."
-
-#: ../lib/dates.inc.php:110 ../lib/models/CalendarEvent.class.php:540
-#: ../app/views/calendar/single/edit.php:323
-msgid "Dezember"
-msgstr "December"
-
-#: ../lib/dates.inc.php:110
-msgid "Dez."
-msgstr "Dec."
-
-#: ../lib/dates.inc.php:239 ../lib/models/CourseDate.class.php:270
-#: ../lib/models/CourseExDate.class.php:144
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:617
-#: ../lib/raumzeit/SingleDate.class.php:417
-#: ../app/controllers/calendar/calendar.php:348
-#: ../app/views/calendar/group/_tooltip.php:9
-#: ../app/views/calendar/group/_tooltip.php:15
-msgid "ganztägig"
-msgstr "all-day"
-
-#: ../lib/dates.inc.php:279 ../lib/classes/DateFormatter.class.php:107
-#: ../templates/dates/date_html.php:5 ../templates/dates/date_html.php:8
-#: ../templates/dates/date_xml.php:4 ../templates/dates/seminar_export.php:64
-#: ../templates/dates/date_export.php:5 ../templates/dates/date_export.php:8
-msgid "Ort:"
-msgstr "Room:"
-
-#: ../lib/models/ConsultationBlock.php:188
-#, php-format
-msgid "%s bis %s von %s bis %s Uhr"
-msgstr "%s until %s at %s until %s o'clock"
-
-#: ../lib/models/ConsultationBlock.php:197
-msgid "Die Zeiten überschneiden sich mit anderen bereits definierten Terminen"
-msgstr "The times overlap with other consultation hours already defined "
-
-#: ../lib/models/ConsultationBlock.php:287
-#: ../lib/modules/ConsultationModule.class.php:114
-#: ../app/views/consultation/admin/ungrouped.php:16
-msgid "Terminblöcke"
-msgstr "Date blocks"
-
-#: ../lib/models/ConsultationBlock.php:302
-msgid "Terminvergabe"
-msgstr "Date allocation"
-
-#: ../lib/models/ModulteilStgteilabschnitt.php:43
-#: ../lib/models/ModulteilStgteilabschnitt.php:51
-msgid "Zuordnung Modulteil zu Studiengangteil-Abschnitt"
-msgstr "Assign module component to section of partial of course of study"
-
-#: ../lib/models/AbschlussKategorie.php:93
-#: ../lib/models/AbschlussKategorie.php:220
-#: ../app/controllers/studiengaenge/versionen.php:79
-#: ../app/views/fachabschluss/abschluesse/index.php:11
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:22
-#: ../app/views/studiengaenge/kategorien/index.php:4
-msgid "Abschluss-Kategorie"
-msgstr "Category of degree"
-
-#: ../lib/models/AbschlussKategorie.php:260
-msgid "Der Name der Abschluss-Kategorie ist zu kurz (mindestens 4 Zeichen)."
-msgstr ""
-"The name of the final degree category is too short (at least 4 characters)."
-
-#: ../lib/models/AbschlussKategorie.php:267
-#, php-format
-msgid "Es existiert bereits eine Abschluss-Kategorie mit dem Namen \"%s\"!"
-msgstr "A category of degree with the name \"%s\" already exists!"
-
-#: ../lib/models/HelpTourUser.class.php:63
-msgid "Hilfetouren"
-msgstr "Help tours"
-
-#: ../lib/models/BlubberThread.php:86
-#, php-format
-msgid "%s hat Sie in einem Blubber erwähnt."
-msgstr "%s mentioned you in a Blubber."
-
-#: ../lib/models/BlubberThread.php:385
-msgid "Blubber-Threads"
-msgstr "Blubber threads"
-
-#: ../lib/models/BlubberThread.php:393
-#, php-format
-msgid "Blubber von %s"
-msgstr "Blubber from %s"
-
-#: ../lib/models/BlubberThread.php:418
-msgid "ich"
-msgstr "me"
-
-#: ../lib/models/BlubberThread.php:439
-msgid "Ein mysteröser Blubber"
-msgstr "A mysterious Blubber"
-
-#: ../lib/models/BlubberThread.php:651
-#: ../lib/models/BlubberStatusgruppeThread.php:91
-#, php-format
-msgid "%s hat eine Nachricht geschrieben."
-msgstr "%s wrote a message."
-
-#: ../lib/models/OERReview.php:40
-#, php-format
-msgid "%1$s hat ein Review zu \"%2$s\" geschrieben."
-msgstr ""
-
-#: ../lib/models/OERReview.php:43
-#, php-format
-msgid "%1$s hat ein Review zu \"%2$s\" verändert."
-msgstr ""
-
-#: ../lib/models/OERReview.php:147
-msgid "Diskussion zu einem OER-Review"
-msgstr ""
-
-#: ../lib/models/QuestionnaireAssignment.php:47
-msgid "Fragebögen Zuweisungen"
-msgstr "Questionnaire assignments"
-
-#: ../lib/models/resources/SeparableRoom.class.php:67
-msgid "Teilbare Räume dürfen nur aus Raum-Objekten bestehen!"
-msgstr "Separable rooms must only consist of room objects!"
-
-#: ../lib/models/resources/SeparableRoom.class.php:107
-msgid "Teilbarer Raum"
-msgstr "Separable room"
-
-#: ../lib/models/resources/SeparableRoom.class.php:111
-msgid "Fehler beim Speichern des teilbaren Raumes!"
-msgstr "Error while saving the separable room!"
-
-#: ../lib/models/resources/SeparableRoom.class.php:128
-#, php-format
-msgid "Nur %1$d von %2$d Räumen konnten dem teilbaren Raum zugeordnet werden!"
-msgstr "Only %1$d of %2$d rooms could be assigned to the separable room!"
-
-#: ../lib/models/resources/ResourcePropertyDefinition.class.php:186
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:177
-#: ../templates/sidebar/room-search-criteria-available-range.php:50
-#: ../templates/sidebar/room-search-criteria-available-range.php:99
-#: ../templates/sidebar/time-range-filter.php:17
-#: ../app/controllers/module/mvv_controller.php:245
-#: ../app/views/shared/language_chooser.php:4
-#: ../app/views/shared/chooser_form.php:9
-#: ../app/views/shared/inst_chooser.php:16
-#: ../app/views/resources/building/_add_edit_form.php:22
-#: ../app/views/resources/room_request/planning.php:6
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:24
-#: ../app/views/module/module/modulteil.php:31
-#: ../app/views/module/module/modulteil.php:64
-#: ../app/views/course/lvgselector/form.php:31
-#: ../app/views/settings/privacy.php:160 ../app/views/settings/privacy.php:172
-#: ../app/views/admin/user/_results.php:228
-#: ../app/views/library_file/select_type.php:8
-#: ../app/views/studiengaenge/versionen/modulteil_semester.php:36
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:16
-#: ../app/views/studiengaenge/studiengaenge/stgteil_bezeichnungen.php:53
-msgid "Bitte wählen"
-msgstr "Please select"
-
-#: ../lib/models/resources/ResourcePropertyDefinition.class.php:310
-#, php-format
-msgid ""
-"Die Eigenschaft %1$s besitzt einen ungültigen Wert! Der/die Nutzer/-in mit "
-"der ID %2$s existiert nicht!"
-msgstr ""
-"The property %1$s has an invalid value! The user with the ID %2$s doesn't "
-"exist!"
-
-#: ../lib/models/resources/ResourcePropertyDefinition.class.php:321
-#, php-format
-msgid ""
-"Die Eigenschaft %1$s besitzt einen ungültigen Wert! Die Einrichtung mit der "
-"ID %2$s existiert nicht!"
-msgstr ""
-"The property %1$s has an invalid value! The institute with the ID %2$s "
-"doesn't exist!"
-
-#: ../lib/models/resources/ResourcePropertyDefinition.class.php:333
-#, php-format
-msgid "Die Positionsangabe für die Eigenschaft %1$s ist ungültig!"
-msgstr "The position data for the property %1$s is invalid!"
-
-#: ../lib/models/resources/ResourcePropertyDefinition.class.php:344
-#, php-format
-msgid "Der Wert %1$s ist für die Eigenschaft %2$s (Typ %3$s) nicht zulässig!"
-msgstr "The value %1$s is not allowed for the property %2$s (type %3$s)!"
-
-#: ../lib/models/resources/ResourceRequestProperty.class.php:67
-#: ../lib/models/resources/ResourceProperty.class.php:97
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2558
-#: ../lib/evaluation/evaluation_admin_template.lib.php:454
-#: ../lib/evaluation/evaluation_admin_template.lib.php:706
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:243
-#: ../lib/user_visible.inc.php:204
-#: ../app/controllers/admission/courseset.php:412
-#: ../app/controllers/admission/courseset.php:419
-#: ../app/controllers/admission/courseset.php:421
-#: ../app/controllers/admission/courseset.php:422
-#: ../app/controllers/admission/courseset.php:423
-#: ../app/controllers/room_management/planning.php:1002
-#: ../app/views/resources/admin/properties.php:28
-#: ../app/views/resources/resource/_standard_properties_display_part.php:53
-#: ../app/views/settings/deputies.php:35 ../app/views/admin/user/index.php:163
-msgid "ja"
-msgstr "yes"
-
-#: ../lib/models/resources/ResourceRequestProperty.class.php:67
-#: ../lib/models/resources/ResourceProperty.class.php:97
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2548
-#: ../lib/evaluation/evaluation_admin_template.lib.php:463
-#: ../lib/evaluation/evaluation_admin_template.lib.php:729
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:243
-#: ../lib/user_visible.inc.php:206
-#: ../app/controllers/admission/courseset.php:412
-#: ../app/controllers/admission/courseset.php:419
-#: ../app/controllers/admission/courseset.php:421
-#: ../app/controllers/admission/courseset.php:422
-#: ../app/controllers/admission/courseset.php:423
-#: ../app/controllers/room_management/planning.php:1002
-#: ../app/views/resources/admin/properties.php:28
-#: ../app/views/resources/resource/_standard_properties_display_part.php:55
-#: ../app/views/settings/deputies.php:41 ../app/views/admin/user/index.php:167
-msgid "nein"
-msgstr "no"
-
-#: ../lib/models/resources/Building.class.php:78
-#: ../lib/navigation/ResourceNavigation.php:102
-#: ../app/controllers/room_management/overview.php:362
-#: ../app/views/resources/location/index.php:68
-msgid "Gebäude"
-msgid_plural "Gebäude"
-msgstr[0] "Building"
-msgstr[1] "Buildings"
-
-#: ../lib/models/resources/Building.class.php:128
-msgid "Zur Erstellung der URL fehlt eine Gebäude-ID!"
-msgstr "To create an URL, a building-ID is missing!"
-
-#: ../lib/models/resources/Building.class.php:217
-#, php-format
-msgid "Das Gebäude %1$s ist keinem Standort zugeordnet!"
-msgstr "The building %1$s is not assigned to a location!"
-
-#: ../lib/models/resources/Building.class.php:228
-#, php-format
-msgid "Das Gebäude %1$s ist der falschen Ressourcen-Klasse zugeordnet!"
-msgstr "The building %1$s is assigned to the wrong resource class!"
-
-#: ../lib/models/resources/Building.class.php:247
-#, php-format
-msgid "Gebäude %s"
-msgstr "Building %s"
-
-#: ../lib/models/resources/Building.class.php:389
-msgid ""
-"Ein Gebäude darf keinem anderen Gebäude in der Hierarchie untergeordnet "
-"werden!"
-msgstr "A building must not be assigned to another building in the hierarchy!"
-
-#: ../lib/models/resources/Building.class.php:393
-msgid ""
-"Ein Standort darf keinem Gebäude in der Hierarchie untergeordnet werden!"
-msgstr "A location must not be assigned to a building in the hierarchy!"
-
-#: ../lib/models/resources/Room.class.php:63
-#: ../lib/extern/elements/ExternElementContact.class.php:67
-#: ../lib/extern/elements/ExternElementContact.class.php:97
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:71
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:63
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:68
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:74
-#: ../lib/extern/modules/ExternModulePersons.class.php:60
-#: ../app/controllers/course/dates.php:443
-#: ../app/controllers/institute/members.php:117
-#: ../app/controllers/room_management/overview.php:364
-#: ../app/controllers/room_management/planning.php:986
-#: ../app/views/profile/working_place.php:3
-#: ../app/views/resources/room_group/permissions.php:50
-#: ../app/views/resources/room_request/overview.php:27
-#: ../app/views/resources/room_request/resolve.php:211
-#: ../app/views/resources/_common/_grouped_room_list.php:36
-#: ../app/views/course/timesrooms/_regularEvents.php:42
-#: ../app/views/course/timesrooms/createSingleDate.php:36
-#: ../app/views/course/block_appointments/index.php:96
-#: ../app/views/course/dates/index.php:44
-#: ../app/views/course/dates/index.php:84
-#: ../app/views/settings/statusgruppen/modify_institute.php:27
-#: ../app/views/admin/user/edit_institute.php:23
-#: ../app/views/room_management/overview/index.php:105
-#: ../app/views/room_management/planning/semester_plan.php:43
-#: ../app/views/room_management/planning/index.php:41
-#: ../app/views/room_management/planning/copy_bookings.php:103
-#: ../app/views/room_management/planning/copy_bookings.php:185
-#: ../app/views/calendar/contentbox/_termin.php:11
-msgid "Raum"
-msgid_plural "Räume"
-msgstr[0] "Room"
-msgstr[1] "Rooms "
-
-#: ../lib/models/resources/Room.class.php:179
-msgid ""
-"Ihre Berechtigungen sind unzureichend, um Räume anhand einer Raumanfrage zu "
-"suchen!"
-msgstr ""
-"Your permissions are insufficient to search rooms using a room request!"
-
-#: ../lib/models/resources/Room.class.php:408
-msgid "Zur Erstellung der URL fehlt eine Raum-ID!"
-msgstr "To create an URL, a room-ID is missing!"
-
-#: ../lib/models/resources/Room.class.php:490
-#, php-format
-msgid "Der Raum %1$s ist keinem Gebäude zugeordnet!"
-msgstr "The room %1$s is not assigned to a building!"
-
-#: ../lib/models/resources/Room.class.php:501
-#, php-format
-msgid "Der Raum %1$s ist der falschen Ressourcen-Klasse zugeordnet!"
-msgstr "The room %1$s is assigned to the wrong resource class!"
-
-#: ../lib/models/resources/Room.class.php:566
-msgid ""
-"Ein Raum darf keinem anderen Raum in der Hierarchie untergeordnet werden!"
-msgstr "A room must not be assigned to another room in the hierarchy!"
-
-#: ../lib/models/resources/Room.class.php:570
-msgid "Ein Standort darf keinem Raum in der Hierarchie untergeordnet werden!"
-msgstr "A location must not be assigned to a room in the hierarchy!"
-
-#: ../lib/models/resources/Room.class.php:574
-msgid "Ein Gebäude darf keinem Raum in der Hierarchie untergeordnet werden!"
-msgstr "A building must not be assigned to a room in the hierarchy!"
-
-#: ../lib/models/resources/Room.class.php:589
-#, php-format
-msgid "Raum %s"
-msgstr "Room %s"
-
-#: ../lib/models/resources/ResourceTemporaryPermission.class.php:79
-msgid "Temporäre Berechtigungen an Ressourcen"
-msgstr "Temporary permissions on resources"
-
-#: ../lib/models/resources/ResourceTemporaryPermission.class.php:168
-#, php-format
-msgid ""
-"Globale temporäre Berechtigungen für %1$s (Rechtestufe %2$s) hinzugefügt."
-msgstr "Added global temporary permissions for %1$s (permission level %2$s)."
-
-#: ../lib/models/resources/ResourceTemporaryPermission.class.php:181
-#, php-format
-msgid ""
-"%1$s: Hinzufügen von temporären Berechtigungen für %2$s (Rechtestufe %3$s)."
-msgstr "%1$s: Adding temporary permissions for %2$s (permission level %3$s)."
-
-#: ../lib/models/resources/ResourceTemporaryPermission.class.php:189
-#: ../lib/models/resources/ResourcePermission.class.php:123
-msgid ""
-"Berechtigungen müssen mit bestimmten Ressourcen verknüpft sein, bevor sie "
-"gespeichert werden!"
-msgstr ""
-"Permissions must be linked to specific resources before they can be saved!"
-
-#: ../lib/models/resources/ResourceTemporaryPermission.class.php:202
-#, php-format
-msgid "Globale temporäre Berechtigungen für %1$s von %2$s auf %3$s geändert."
-msgstr "Global temporary permissions changed from %2$s to %3$s for %1$s."
-
-#: ../lib/models/resources/ResourceTemporaryPermission.class.php:214
-#, php-format
-msgid ""
-"%1$s: Änderung der temporären Berechtigungen für %2$s von %3$s auf %4$s."
-msgstr "%1$s: Changing the temporary permissions from %3$s to %4$s for %2$s."
-
-#: ../lib/models/resources/ResourceTemporaryPermission.class.php:238
-#, php-format
-msgid "Globale temporäre Berechtigungen für %1$s (Rechtestufe %2$s) gelöscht."
-msgstr "Global temporary permissions of %1$s deleted (permission level %2$s)."
-
-#: ../lib/models/resources/ResourceTemporaryPermission.class.php:249
-#, php-format
-msgid ""
-"%1$s: Löschen der temporären Berechtigungen für %2$s (Rechtestufe %3$s)."
-msgstr ""
-"%1$s: Deletion of the temporary permissions for %2$s (permission level %3$s)."
-
-#: ../lib/models/resources/ResourceBooking.class.php:127
-#: ../lib/models/resources/ResourceRequest.class.php:209
-msgid "Es wurde keine Liste mit Zeiträumen angegeben!"
-msgstr "No list with time ranges has been specified!"
-
-#: ../lib/models/resources/ResourceBooking.class.php:135
-#: ../lib/models/resources/ResourceBooking.class.php:408
-#: ../lib/models/resources/ResourceRequest.class.php:217
-#: ../lib/models/resources/Resource.class.php:734
-#: ../lib/models/resources/Resource.class.php:954
-#: ../lib/resources/ResourceManager.class.php:642
-#: ../lib/resources/RoomManager.class.php:733
-#: ../app/controllers/resources/messages.php:133
-#: ../app/controllers/resources/resource.php:949
-#: ../app/controllers/resources/resource.php:1348
-#: ../app/controllers/resources/global_locks.php:86
-#: ../app/controllers/resources/global_locks.php:173
-#: ../app/controllers/resources/export.php:247
-msgid "Der Startzeitpunkt darf nicht hinter dem Endzeitpunkt liegen!"
-msgstr "The start time must not lie after the end time!"
-
-#: ../lib/models/resources/ResourceBooking.class.php:141
-#: ../lib/models/resources/ResourceRequest.class.php:223
-#: ../lib/resources/ResourceManager.class.php:647
-msgid "Startzeitpunkt und Endzeitpunkt dürfen nicht identisch sein!"
-msgstr "Start time and end time must not be identically!"
-
-#: ../lib/models/resources/ResourceBooking.class.php:389
-msgid "Es wurde keine Ressource zur Buchung angegeben!"
-msgstr "No resources have been specified for the booking!"
-
-#: ../lib/models/resources/ResourceBooking.class.php:395
-msgid "Es muss eine Person oder ein Text zur Buchung eingegeben werden!"
-msgstr ""
-"A person must be assigned to the booking or a text must be added for the "
-"booking!"
-
-#: ../lib/models/resources/ResourceBooking.class.php:415
-#: ../lib/models/resources/ResourceBooking.class.php:660
-msgid "Es wurde ein Wiederholungsintervall ohne Begrenzung angegeben!"
-msgstr "A repetition interval without limit has been specified!"
-
-#: ../lib/models/resources/ResourceBooking.class.php:420
-#: ../lib/models/resources/ResourceBooking.class.php:665
-msgid ""
-"Der Startzeitpunkt darf nicht hinter dem Ende der Wiederholungen liegen!"
-msgstr "The start time must not lie after the end of the repetitions!"
-
-#: ../lib/models/resources/ResourceBooking.class.php:436
-#, php-format
-msgid "Unzureichende Berechtigungen zum Buchen der Ressource %s!"
-msgstr "Insufficient permissions for booking the resource %s!"
-
-#: ../lib/models/resources/ResourceBooking.class.php:453
-#, php-format
-msgid "Gesperrt im Bereich vom %1$s bis %2$s"
-msgstr "Locked from %1$s to %2$s"
-
-#: ../lib/models/resources/ResourceBooking.class.php:459
-#, php-format
-msgid "Gesperrt im Bereich vom %1$s bis zum %2$s"
-msgstr "Locked from %1$s to %2$s"
-
-#: ../lib/models/resources/ResourceBooking.class.php:473
-#, php-format
-msgid "Gebucht im Bereich vom %1$s bis %2$s"
-msgstr "Booked in range from %1$s to %2$s"
-
-#: ../lib/models/resources/ResourceBooking.class.php:479
-#, php-format
-msgid "Gebucht im Bereich vom %1$s bis zum %2$s"
-msgstr "Booked in range from %1$s to %2$s"
-
-#: ../lib/models/resources/ResourceBooking.class.php:812
-#: ../lib/models/resources/ResourceBooking.class.php:834
-msgid "Reservierung überbucht"
-msgstr "Reservation overbooked"
-
-#: ../lib/models/resources/ResourceBooking.class.php:965
-#, php-format
-msgid "Das Wiederholungsintervall ist in einem ungültigen Format (%s)!"
-msgstr "The repetition interval is in an invalid format (%s)!"
-
-#: ../lib/models/resources/ResourceBooking.class.php:981
-msgid "jeden Monat"
-msgstr "every month"
-
-#: ../lib/models/resources/ResourceBooking.class.php:982
-msgid "jeden zweiten Monat"
-msgstr "every other month"
-
-#: ../lib/models/resources/ResourceBooking.class.php:983
-msgid "jeden dritten Monat"
-msgstr "every third month"
-
-#: ../lib/models/resources/ResourceBooking.class.php:984
-msgid "jeden vierten Monat"
-msgstr "every fourth month"
-
-#: ../lib/models/resources/ResourceBooking.class.php:985
-msgid "jeden fünften Monat"
-msgstr "every fifth month"
-
-#: ../lib/models/resources/ResourceBooking.class.php:986
-msgid "jeden sechsten Monat"
-msgstr "every sixth month"
-
-#: ../lib/models/resources/ResourceBooking.class.php:987
-msgid "jeden siebten Monat"
-msgstr "every seventh month"
-
-#: ../lib/models/resources/ResourceBooking.class.php:988
-msgid "jeden achten Monat"
-msgstr "every eighth month"
-
-#: ../lib/models/resources/ResourceBooking.class.php:989
-msgid "jeden neunten Monat"
-msgstr "every ninth month"
-
-#: ../lib/models/resources/ResourceBooking.class.php:990
-msgid "jeden zehnten Monat"
-msgstr "every tenth month"
-
-#: ../lib/models/resources/ResourceBooking.class.php:991
-msgid "jeden elften Monat"
-msgstr "every eleventh month"
-
-#: ../lib/models/resources/ResourceBooking.class.php:996
-#: ../app/views/resources/booking/_add_edit_form.php:371
-msgid "jede Woche"
-msgstr "every week"
-
-#: ../lib/models/resources/ResourceBooking.class.php:997
-#: ../app/views/resources/booking/_add_edit_form.php:377
-msgid "jede zweite Woche"
-msgstr "every other week"
-
-#: ../lib/models/resources/ResourceBooking.class.php:998
-#: ../app/views/resources/booking/_add_edit_form.php:383
-msgid "jede dritte Woche"
-msgstr "every third week"
-
-#: ../lib/models/resources/ResourceBooking.class.php:1003
-#, php-format
-msgid "jeden %d. Tag"
-msgstr "every %d. day"
-
-#: ../lib/models/resources/ResourceBooking.class.php:1007
-#: ../app/views/resources/booking/_add_edit_form.php:325
-msgid "jeden Tag"
-msgstr "every day"
-
-#: ../lib/models/resources/ResourceBooking.class.php:1009
-msgid "ungültiges Zeitintervall"
-msgstr "invalid time interval"
-
-#: ../lib/models/resources/ResourceBooking.class.php:1535
-msgid "Buchungen von Ressourcen"
-msgstr "Bookings of resources"
-
-#: ../lib/models/resources/ResourceBooking.class.php:1622
-#: ../lib/models/resources/ResourceRequest.class.php:2181
-#: ../app/controllers/resources/room_planning.php:401
-#: ../app/controllers/resources/room_planning.php:730
-#: ../app/controllers/resources/room_request.php:1862
-#: ../app/controllers/resources/room_request.php:2449
-#: ../app/controllers/resources/export.php:295
-#: ../app/controllers/room_management/planning.php:242
-#: ../app/controllers/room_management/planning.php:528
-#: ../app/views/resources/room_request/resolve.php:75
-#: ../app/views/resources/room_request/_add_edit_form.php:36
-#: ../app/views/resources/_common/_request_info.php:4
-msgid "Rüstzeit"
-msgstr "Preparation time"
-
-#: ../lib/models/resources/ResourceBooking.class.php:1836
-#, fuzzy
-msgid "Ihre Buchung wurde gelöscht"
-msgstr "The booking has been deleted!"
-
-#: ../lib/models/resources/GlobalResourceLock.class.php:42
-msgid "Allgemeine Sperrung"
-msgstr "General lock"
-
-#: ../lib/models/resources/GlobalResourceLock.class.php:43
-msgid "Planungsphase"
-msgstr "Planning phase"
-
-#: ../lib/models/resources/GlobalResourceLock.class.php:44
-msgid "Reorganisation"
-msgstr "Reorganisation"
-
-#: ../lib/models/resources/GlobalResourceLock.class.php:89
-msgid "Grund unbekannt"
-msgstr "Reason unknown"
-
-#: ../lib/models/resources/GlobalResourceLock.class.php:91
-msgid "Grund nicht angegeben"
-msgstr "Reason not specified"
-
-#: ../lib/models/resources/Location.class.php:53
-#: ../lib/navigation/AdminNavigation.php:91
-msgid "Standort"
-msgid_plural "Standorte"
-msgstr[0] "Location"
-msgstr[1] "Locations"
-
-#: ../lib/models/resources/Location.class.php:83
-msgid "Zuer Erstellung der URL fehlt eine Standort-ID!"
-msgstr "To create an URL, a location-ID is missing!"
-
-#: ../lib/models/resources/Location.class.php:170
-#, php-format
-msgid "Der Standort %1$s darf keiner anderen Ressource untergeordnet sein!"
-msgstr "The location %1$s must not be assigned to another resource!"
-
-#: ../lib/models/resources/Location.class.php:181
-#, php-format
-msgid "Der Standort %1$s ist der falschen Ressourcen-Klasse zugeordnet!"
-msgstr "The location %1$s is assigned to the wrong resource class!"
-
-#: ../lib/models/resources/Location.class.php:196
-#, php-format
-msgid "Standort %s"
-msgstr "Location %s"
-
-#: ../lib/models/resources/Location.class.php:315
-msgid ""
-"Ein Standort darf keinem anderen Standort in der Hierarchie untergeordnet "
-"werden!"
-msgstr "A location must not be assigned to another location in the hierarchy!"
-
-#: ../lib/models/resources/ResourceRequest.class.php:160
-msgid "Ressourcenanfragen"
-msgstr "Resource requests"
-
-#: ../lib/models/resources/ResourceRequest.class.php:580
-msgid ""
-"Eine Anfrage muss einer konkreten Ressource oder deren Kategorie zugewiesen "
-"sein!"
-msgstr "A request must be assigned to a specific resource or its category!"
-
-#: ../lib/models/resources/ResourceRequest.class.php:610
-#, php-format
-msgid "Die Klasse %1$s ist keine Spezialisierung der Ressourcen-Kernklasse!"
-msgstr "The class %1$s is not a specialisation of the main resource class!"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1290
-msgid "Diese Anfrage wurde noch nicht gespeichert."
-msgstr "This request has not been saved yet."
-
-#: ../lib/models/resources/ResourceRequest.class.php:1293
-msgid "Die Anfrage wurde noch nicht bearbeitet."
-msgstr "This request has not been processed yet."
-
-#: ../lib/models/resources/ResourceRequest.class.php:1295
-msgid "Die Anfrage wurde bearbeitet und abgelehnt."
-msgstr "The request has been processed and rejected."
-
-#: ../lib/models/resources/ResourceRequest.class.php:1297
-msgid "Die Anfrage wurde bearbeitet."
-msgstr "Request processed."
-
-#: ../lib/models/resources/ResourceRequest.class.php:1384
-#: ../app/views/course/statusgroups/edit.php:92
-msgid "Einzeltermine"
-msgstr "Single dates"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1386
-#, php-format
-msgid "Einzeltermine (%sx)"
-msgstr "Single dates (%sx)"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1390
-#: ../app/views/resources/booking/_add_edit_form.php:211
-#: ../app/views/course/dates/singledate.php:4
-msgid "Einzeltermin"
-msgstr "Single date"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1392
-#, php-format
-msgid "Einzeltermin (%s)"
-msgstr "Single date (%s)"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1396
-#: ../app/views/course/timesrooms/_regularEvents.php:4
-msgid "Regelmäßige Termine"
-msgstr "Periodic dates"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1399
-#, php-format
-msgid "Regelmäßige Termine (%s)"
-msgstr "Regular dates (%s)"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1405
-msgid "Alle Termine der Veranstaltung"
-msgstr "All dates of the course"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1408
-#, php-format
-msgid "Alle Termine der Veranstaltung (%sx)"
-msgstr "All dates of the course (%sx)"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1413
-msgid "Einfache Anfrage"
-msgstr "Simple request"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1859
-#, php-format
-msgid "%1$s: Neue Anfrage in der Raumverwaltung"
-msgstr "%1$s: New request in the room management system"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1864
-#, php-format
-msgid "Neue Anfrage in der Raumverwaltung"
-msgstr "New request in the room management system"
-
-#: ../lib/models/resources/ResourceRequest.class.php:1947
-msgid "Ihre Anfrage wurde bearbeitet!"
-msgstr "Your request has been processed!"
-
-#: ../lib/models/resources/ResourceRequest.class.php:2036
-msgid "Bearbeitung einer Anfrage!"
-msgstr "Processing a request!"
-
-#: ../lib/models/resources/ResourceRequest.class.php:2076
-msgid "Raumanfrage wurde abgelehnt"
-msgstr "Room request rejected"
-
-#: ../lib/models/resources/ResourceCategory.class.php:207
-#: ../lib/models/resources/ResourceCategory.class.php:248
-msgid "Sonstige"
-msgstr "Miscellaneous"
-
-#: ../lib/models/resources/ResourceCategory.class.php:299
-msgid "Es wurde kein Name für die Eigenschaft angegeben!"
-msgstr "No name for the property has been provided!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:308
-#, php-format
-msgid "Der Eigenschaftstyp %s ist ungültig!"
-msgstr "The property type %s is invalid!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:317
-#, php-format
-msgid "Die Rechtestufe %s ist ungültig!"
-msgstr "The permission level %s is invalid!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:348
-#, php-format
-msgid "Fehler beim Aktualisieren der Eigenschaft %1$s (vom Typ %2$s)!"
-msgstr "Error while updating the property %1$s (with type %2$s)!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:371
-#, php-format
-msgid ""
-"Fehler beim Speichern der Definition der Eigenschaft %1$s (vom Typ %2$s)!"
-msgstr ""
-"Error while saving the definition of the property %1$s (with type %2$s)!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:390
-#, php-format
-msgid "Fehler beim Speichern der neuen Eigenschaft %1$s (vom Typ %2$s)!"
-msgstr "Error while saving the new property %1$s (with type %2$s)!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:439
-#, php-format
-msgid ""
-"Die Ressourcenkategorie %1$s ist ungültig, da die dort angegebene Klasse "
-"%2$s nicht von der Klasse Resource abgeleitet ist!"
-msgstr ""
-"The resource category %1$s is invalid since the class %2$s specified there "
-"is not derived from the class Resource!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:455
-#, php-format
-msgid "Fehler beim Speichern der Resource %1$s!"
-msgstr "Error while saving the resource %1$s!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:537
-#, php-format
-msgid "Die Ressource %1$s ist kein Mitglied der Ressourcenkategorie %2$s!"
-msgstr "The resource %1$s is not a member of the resource category %2$s!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:552
-#, php-format
-msgid "Die Ressource %1$s besitzt keine ID!"
-msgstr "The resource %1$s doesn't have an ID!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:577
-#: ../lib/models/resources/ResourceCategory.class.php:664
-#, php-format
-msgid ""
-"Die Eigenschaft %1$s ist für die Ressourcenkategorie %2$s nicht definiert!"
-msgstr "The property %1$s is not defined for the resource category %2$s!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:625
-#, php-format
-msgid ""
-"Die Resourcenanfrage %1$s ist kein Mitglied der Ressourcenkategorie %2$s!"
-msgstr ""
-"The resource request %1$s is not a member of the resource category %2$s!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:640
-#, php-format
-msgid "Die Ressourcenanfrage %1$s besitzt keine ID!"
-msgstr "The resource request %1$s doesn't have an ID!"
-
-#: ../lib/models/resources/ResourceCategory.class.php:771
-#, php-format
-msgid "Die Ressourceneigenschaft %s existiert nicht!"
-msgstr "The resource property %s doesn't exist!"
-
-#: ../lib/models/resources/Resource.class.php:149
-#: ../lib/classes/EventLog.php:28 ../app/controllers/resources/export.php:412
-msgid "Ressource"
-msgid_plural "Ressourcen"
-msgstr[0] "Resource"
-msgstr[1] "Resources"
-
-#: ../lib/models/resources/Resource.class.php:204
-msgid "Zur Erstellung der URL fehlt eine Ressourcen-ID!"
-msgstr "To create an URL, a resource-ID is missing!"
-
-#: ../lib/models/resources/Resource.class.php:342
-#, php-format
-msgid "Die Ressource %s ist keiner Ressourcenkategorie zugeordnet!"
-msgstr "The resource %s is not assigned to a resource category!"
-
-#: ../lib/models/resources/Resource.class.php:605
-msgid "Die Anfrage konnte nicht als bearbeitet markiert werden!"
-msgstr "The request could not be marked as processed!"
-
-#: ../lib/models/resources/Resource.class.php:689
-msgid "Es wurden keine Zeitbereiche für die Buchung angegeben!"
-msgstr "No time ranges have been specified for the booking!"
-
-#: ../lib/models/resources/Resource.class.php:710
-msgid "Mindestens eines der Zeitintervalls ist im falschen Format!"
-msgstr "At least one of the time intervals is in the wrong format!"
-
-#: ../lib/models/resources/Resource.class.php:743
-#, php-format
-msgid "Die minimale Buchungsdauer von %1$d Minuten wurde unterschritten!"
-msgstr "The booking duration is below the minimum of %1$d minutes!"
-
-#: ../lib/models/resources/Resource.class.php:863
-#: ../lib/models/resources/Resource.class.php:873
-#: ../lib/raumzeit/SingleDate.class.php:690
-#, php-format
-msgid ""
-"%1$s: Die Buchung vom %2$s bis %3$s konnte wegen Überlappungen nicht "
-"gespeichert werden: %4$s"
-msgstr ""
-"%1$s: The booking from %2$s to %3$s could not be saved due to overlappings: "
-"%4$s"
-
-#: ../lib/models/resources/Resource.class.php:885
-#: ../lib/models/resources/Resource.class.php:895
-#, php-format
-msgid ""
-"%1$s: Die Buchung vom %2$s bis %3$s konnte aus folgendem Grund nicht "
-"gespeichert werden: %4$s"
-msgstr ""
-"%1$s: The booking from %2$s to %3$s could not be saved due to the following "
-"reason: %4$s"
-
-#: ../lib/models/resources/Resource.class.php:948
-#: ../lib/models/resources/Resource.class.php:1052
-msgid "Diese Ressource kann nicht angefragt werden!"
-msgstr "This resource cannot be requested!"
-
-#: ../lib/models/resources/Resource.class.php:958
-msgid "Startzeitpunkt und Endzeitpunkt sind identisch!"
-msgstr "Start time and end time are identically!"
-
-#: ../lib/models/resources/Resource.class.php:965
-#, php-format
-msgid "Die Ressource %1$s ist im Zeitraum von %2$s bis %3$s nicht verfügbar!"
-msgstr ""
-"The resource %1$s is not available in the time range from %2$s to %3$s!"
-
-#: ../lib/models/resources/Resource.class.php:992
-#: ../lib/models/resources/Resource.class.php:1163
-#: ../lib/models/resources/Resource.class.php:1172
-#, php-format
-msgid "Die Anfrage zur Ressource %s konnte nicht gespeichert werden!"
-msgstr "The request for the resource %s could not be saved!"
-
-#: ../lib/models/resources/Resource.class.php:1046
-msgid ""
-"Es wurde keine ID eines Objektes angegeben, welches Zeiträume für eine "
-"Ressourcenanfrage liefern kann!"
-msgstr ""
-"No ID of an object has been provided which can deliver periods for a "
-"resource request!"
-
-#: ../lib/models/resources/Resource.class.php:1077
-#, php-format
-msgid ""
-"Es konnte kein Zeitbereich für die Anfrage der Ressource %s gefunden werden."
-msgstr "No period could be found for the request of the resource %s."
-
-#: ../lib/models/resources/Resource.class.php:1090
-#, php-format
-msgid "Die Ressource %1$s ist im Zeitraum vom %2$s bis %3$s nicht verfügbar!"
-msgstr ""
-"The resource %1$s is not available in the time range from %2$s to %3$s!"
-
-#: ../lib/models/resources/Resource.class.php:1109
-#: ../lib/resources/ResourceManager.class.php:84
-#, php-format
-msgid "Die Ressourceneigenschaft %s ist nicht definiert!"
-msgstr "The resource property %s is not defined!"
-
-#: ../lib/models/resources/Resource.class.php:1116
-#: ../lib/resources/ResourceManager.class.php:91
-#, php-format
-msgid "Es gibt mehrere Ressourceneigenschaften mit dem Namen %s!"
-msgstr "There are multiple resource properties with the name %s!"
-
-#: ../lib/models/resources/Resource.class.php:1203
-msgid "Die Terminzuordnungen zur Anfrage konnten nicht gespeichert werden!"
-msgstr "The date assignments for the request could not be saved!"
-
-#: ../lib/models/resources/Resource.class.php:1220
-#, php-format
-msgid "%1$s: Die Eigenschaft %2$s zur Anfrage konnte nicht gespeichert werden!"
-msgstr "%1$s: The property %2$s of the property could not be saved!"
-
-#: ../lib/models/resources/Resource.class.php:1258
-#, php-format
-msgid "%s: Unzureichende Berechtigungen zum Erstellen einer Sperrbuchung!"
-msgstr "%s: Insufficient permissions to create a lock booking!"
-
-#: ../lib/models/resources/Resource.class.php:1267
-#, php-format
-msgid "%1$s: Im Zeitbereich von %2$s bis %3$s gibt es bereits Sperrbuchungen!"
-msgstr ""
-"%1$s: There are already lock bookings in the time range from %2$s to %3$s!"
-
-#: ../lib/models/resources/Resource.class.php:1286
-#, php-format
-msgid ""
-"%1$s: Fehler beim Speichern der Sperrbuchung für den Zeitbereich von %2$s "
-"bis %3$s!"
-msgstr ""
-"%1$s: Error while saving the lock booking for the time range from %2$s to "
-"%3$s!"
-
-#: ../lib/models/resources/Resource.class.php:1595
-#: ../lib/models/resources/Resource.class.php:1868
-#, php-format
-msgid "Unzureichende Berechtigungen zum Ändern der Ressource %s!"
-msgstr "Insufficient permissions to modify the resource %s!"
-
-#: ../lib/models/resources/Resource.class.php:1603
-#, php-format
-msgid "Unzureichende Berechtigungen zum Ändern der Eigenschaft %s!"
-msgstr "Insufficient permissions to modify the property %s!"
-
-#: ../lib/models/resources/Resource.class.php:1723
-msgid "Die Eigenschaft wurde nicht gefunden!"
-msgstr "The property could not be found!"
-
-#: ../lib/models/resources/Resource.class.php:1823
-msgid ""
-"Eine Ressourceneigenschaft vom Typ 'user' benötigt ein Nutzer-Objekt zur "
-"Wertzuweisung!"
-msgstr ""
-"A resource property from the type 'user' requires a user object to assign a "
-"value!"
-
-#: ../lib/models/resources/Resource.class.php:1830
-msgid ""
-"Eine Ressourceneigenschaft vom Typ 'institute' benötigt ein Institut-Objekt "
-"zur Wertzuweisung!"
-msgstr ""
-"A resource property from the type 'institute' requires an institute object "
-"to assign a value!"
-
-#: ../lib/models/resources/Resource.class.php:1837
-msgid ""
-"Eine Ressourceneigenschaft vom Typ 'fileref' benötigt ein FileRef-Objekt zur "
-"Wertzuweisung!"
-msgstr ""
-"A resource property from the type 'fileref' requires a FileRef objekt to "
-"assign a value!"
-
-#: ../lib/models/resources/Resource.class.php:1876
-#, php-format
-msgid "Unzureichende Berechtigungen zum Löschen der Eigenschaft %s!"
-msgstr "Insufficient permissions to delete the property %s!"
-
-#: ../lib/models/resources/Resource.class.php:2175
-#, php-format
-msgid "Ressource %s"
-msgstr "Resource %s"
-
-#: ../lib/models/resources/Resource.class.php:2598
-#: ../lib/resources/ResourceManager.class.php:1458
-#, php-format
-msgid ""
-"Zirkuläre Hierarchie: Die Ressource %1$s ist ein Elternknoten von sich "
-"selbst!"
-msgstr "Circular hierarchy: The resource %1$s is a parent node from itself!"
-
-#: ../lib/models/resources/Resource.class.php:2711
-#, php-format
-msgid ""
-"Die Ressource %1$s (Typ %2$s) kann nicht unterhalb der Ressource %3$s (Typ "
-"%4$s) platziert werden!"
-msgstr ""
-"The resource %1$s (type %2$s) cannot be placed below the resource %3$s (type "
-"%4$s)!"
-
-#: ../lib/models/resources/BrokenResource.class.php:225
-msgid "defekt"
-msgstr "broken"
-
-#: ../lib/models/resources/ResourcePermission.class.php:79
-msgid "Berechtigungen an Ressourcen"
-msgstr "Resource permissions"
-
-#: ../lib/models/resources/ResourcePermission.class.php:102
-#, php-format
-msgid "Globale Berechtigungen für %1$s (Rechtestufe %2$s) hinzugefügt."
-msgstr "Global permissions for %1$s (permission level %2$s) added."
-
-#: ../lib/models/resources/ResourcePermission.class.php:115
-#, php-format
-msgid "%1$s: Hinzufügen von Berechtigungen für %2$s (Rechtestufe %3$s)."
-msgstr "%1$s: Adding permissions for %2$s (permission level %3$s)."
-
-#: ../lib/models/resources/ResourcePermission.class.php:136
-#, php-format
-msgid "Globale Berechtigungen für %1$s von %2$s auf %3$s geändert."
-msgstr "Global permissions for %1$s changed from %2$s to %3$s."
-
-#: ../lib/models/resources/ResourcePermission.class.php:148
-#, php-format
-msgid "%1$s: Änderung der Berechtigungen für %2$s von %3$s auf %4$s."
-msgstr "%1$s: Changing permissions for %2$s from %3$s to %4$s."
-
-#: ../lib/models/resources/ResourcePermission.class.php:172
-#, php-format
-msgid "Globale Berechtigungen für %1$s (Rechtestufe %2$s) gelöscht."
-msgstr "Deleted global permissions for %1$s (permission level %2$s)."
-
-#: ../lib/models/resources/ResourcePermission.class.php:183
-#, php-format
-msgid "%1$s: Löschen der Berechtigungen für %2$s (Rechtestufe %3$s)."
-msgstr "%1$s: Deletion of permissions for %2$s (permission level %3$s)."
-
-#: ../lib/models/CourseDate.class.php:267
-#: ../lib/models/CourseExDate.class.php:140
-msgid "%R Uhr"
-msgstr "%R"
-
-#: ../lib/models/CourseDate.class.php:407
-msgid "Diesem Termin ist im Ablaufplan ein Thema zugeordnet."
-msgstr "A topic is assigned to this date in the schedule."
-
-#: ../lib/models/CourseDate.class.php:408
-msgid ""
-"Titel und Beschreibung des Themas bleiben erhalten und können in der "
-"Expertenansicht des Ablaufplans einem anderen Termin wieder zugeordnet "
-"werden."
-msgstr ""
-"Title and description of the topic remain and can be assigned to another "
-"date in the expert view of the schedule."
-
-#: ../lib/models/CourseDate.class.php:410
-msgid "Diesem Termin ist ein Thema zugeordnet."
-msgstr "A topic has been associated with this date."
-
-#: ../lib/models/CourseDate.class.php:415
-msgid ""
-"Dieser Termin hat eine Raumbuchung, welche mit dem Termin gelöscht wird."
-msgstr ""
-"A room allocation exists for this date which will be deleted together with "
-"the date."
-
-#: ../lib/models/CourseDate.class.php:461 ../lib/models/User.class.php:819
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:74
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:243
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:82
-#: ../lib/classes/globalsearch/GlobalSearchCalendar.php:19
-#: ../lib/classes/Siteinfo.php:501 ../lib/modules/CoreSchedule.class.php:85
-#: ../lib/navigation/CalendarNavigation.php:30
-#: ../app/controllers/course/dates.php:18
-#: ../app/controllers/course/dates.php:20
-#: ../app/controllers/calendar/contentbox.php:66
-#: ../app/views/consultation/admin/ungrouped.php:128
-#: ../app/views/resources/_common/_request_info.php:2
-#: ../app/views/course/topics/index.php:10
-#: ../app/views/course/topics/edit.php:52
-msgid "Termine"
-msgstr "Dates"
-
-#: ../lib/models/ModulteilLanguage.php:70 ../lib/models/ModulLanguage.php:69
-#: ../lib/models/StudycourseLanguage.php:48
-msgid "Unbekannte Unterrichtssprache"
-msgstr "Unknown language of instruction"
-
-#: ../lib/models/StgteilBezeichnung.php:43
-#: ../lib/models/StgteilBezeichnung.php:119
-#: ../app/views/studiengaenge/stgteilbezeichnungen/stgteilbezeichnung.php:9
-msgid "Studiengangteil-Bezeichnung"
-msgstr "Component description"
-
-#: ../lib/models/StgteilBezeichnung.php:131
-msgid "Der Name der Studiengangteil-Bezeichnung darf nicht leer sein."
-msgstr ""
-"The name of the partial of course of study's description must not be empty."
-
-#: ../lib/models/StgteilBezeichnung.php:140
-#, php-format
-msgid ""
-"Es existiert bereits eine Studiengangteil-Bezeichnung mit dem Namen \"%s\"!"
-msgstr ""
-"A partial of course of study's description with the name \"%s\" already "
-"exists!"
-
-#: ../lib/models/MvvFileFileref.php:78
-#: ../lib/models/Courseware/BlockTypes/Link.php:24
-msgid "Link"
-msgstr "Link"
-
-#: ../lib/models/MvvFileFileref.php:82
-#: ../app/controllers/resources/export.php:338
-msgid "sonstiges"
-msgstr "miscellaneous"
-
-#: ../lib/models/MvvFileFileref.php:92
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:121
-#: ../app/views/smileys/index.php:74 ../app/views/admin/plugin/search.php:14
-#: ../app/views/file/choose_folder_from_institute.php:28
-#: ../app/views/file/choose_file_from_course.php:27
-#: ../app/views/file/choose_folder_from_course.php:35
-msgid "Bild"
-msgstr "Picture"
-
-#: ../lib/models/eTask/Test.php:136
-msgid "eTask Tests"
-msgstr "eTask tests"
-
-#: ../lib/models/eTask/Test.php:142
-msgid "eTask Tests Tags"
-msgstr "eTask tags"
-
-#: ../lib/models/eTask/Attempt.php:54
-msgid "eTask Zuweisungen"
-msgstr "eTask allocations"
-
-#: ../lib/models/eTask/Response.php:80
-msgid "eTask Antworten"
-msgstr "eTask answers"
-
-#: ../lib/models/eTask/Task.php:102
-msgid "eTask Aufgaben"
-msgstr "eTask tasks"
-
-#: ../lib/models/eTask/Task.php:108
-msgid "eTask Aufgaben Tags"
-msgstr "eTask task tags"
-
-#: ../lib/models/CourseMember.class.php:166
-msgid "SeminareUser"
-msgstr "SeminareUser"
-
-#: ../lib/models/Abschluss.php:102 ../lib/models/Abschluss.php:271
-#: ../lib/classes/admission/userfilter/DegreeCondition.class.php:46
-#: ../app/views/shared/abschluss_filter.php:1 ../app/views/shared/filter.php:73
-#: ../app/views/shared/studiengang/_studiengang_info.php:30
-#: ../app/views/shared/studiengang/_studiengang.php:78
-#: ../app/views/fachabschluss/abschluesse/index.php:10
-#: ../app/views/settings/studies/studiengang.php:19
-#: ../app/views/settings/studies/studiengang.php:46
-#: ../app/views/admin/user/index.php:102
-#: ../app/views/lvgruppen/lvgruppen/export_xls.php:5
-#: ../app/views/studiengaenge/informationen/degree.php:9
-#: ../app/views/studiengaenge/abschluesse/index.php:4
-msgid "Abschluss"
-msgstr "Degree"
-
-#: ../lib/models/Abschluss.php:412
-msgid "Es muss eine Abschluss-Kategorie ausgewählt werden."
-msgstr "You must select a final degree category."
-
-#: ../lib/models/Abschluss.php:417
-msgid "Unbekannte Abschluss-Kategorie."
-msgstr "Unknown final degree category."
-
-#: ../lib/models/Abschluss.php:424
-msgid "Der Name des Abschlusses ist zu kurz (mindestens 4 Zeichen)."
-msgstr "The name of the final degree is too short (at least 4 characters)."
-
-#: ../lib/models/Abschluss.php:433
-#, php-format
-msgid "Es existiert bereits ein Abschluss mit dem Namen \"%s\"!"
-msgstr "A final degree with the name \"%s\" already exists!"
-
-#: ../lib/models/Abschluss.php:499 ../lib/navigation/MVVNavigation.php:75
-#: ../app/views/fachabschluss/faecher/index.php:11
-#: ../app/views/fachabschluss/kategorien/index.php:11
-msgid "Abschlüsse"
-msgstr "Degrees"
-
-#: ../lib/models/Freetext.php:29
-msgid "Freitextfrage"
-msgstr "Free text question"
-
-#: ../lib/models/CronjobSchedule.class.php:90
-msgid "niedrig"
-msgstr "low"
-
-#: ../lib/models/CronjobSchedule.class.php:91
-msgid "normal"
-msgstr "normal"
-
-#: ../lib/models/CronjobSchedule.class.php:92
-msgid "hoch"
-msgstr "high"
-
-#: ../lib/models/Studiengang.php:143 ../lib/models/Studiengang.php:701
-#: ../app/controllers/admission/courseset.php:568
-#: ../app/controllers/fachabschluss/abschluesse.php:138
-#: ../app/controllers/studiengaenge/versionen.php:104
-#: ../app/views/search/studiengaenge/mehrfach.php:4
-#: ../app/views/course/members/tutor_list.php:73
-#: ../app/views/course/members/accepted_list.php:68
-#: ../app/views/course/members/awaiting_list.php:66
-#: ../app/views/course/members/autor_list.php:78
-#: ../app/views/course/members/user_list.php:73
-#: ../app/views/course/statusgroups/getgroup.php:63
-#: ../app/views/lvgruppen/lvgruppen/export_xls.php:6
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_edit__.php:5
-#: ../app/views/studiengaenge/studiengaenge/index.php:15
-msgid "Studiengang"
-msgid_plural "Studiengängen"
-msgstr[0] "Course of study"
-msgstr[1] "Course of studies"
-
-#: ../lib/models/Studiengang.php:857
-msgid "Der Name des Studiengangs ist zu kurz (mindestens 4 Zeichen)."
-msgstr "The name of the course of study is too short (at least 4 characters)."
-
-#: ../lib/models/Studiengang.php:868
-msgid "Die Kurzbezeichnung muss mindestens 2 Zeichen lang sein."
-msgstr "The short description must be at least 2 characters long."
-
-#: ../lib/models/Studiengang.php:877
-msgid "Unbekannter Abschluss."
-msgstr "Unknown degree."
-
-#: ../lib/models/Studiengang.php:882
-msgid "Bitte einen Abschluss angeben."
-msgstr "Please specify a degree."
-
-#: ../lib/models/Studiengang.php:891 ../lib/models/FachFachbereich.php:65
-#: ../app/controllers/shared/modul.php:144
-#: ../app/controllers/module/institute.php:64
-#: ../app/views/fachabschluss/faecher/fach.php:67
-#: ../app/views/module/module/modul.php:276
-#: ../app/views/module/module/modul.php:296
-#: ../app/views/module/module/modul.php:328
-#: ../app/views/module/module/modul.php:350
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:157
-#: ../app/views/studiengaenge/studiengaenge/studiengaenge.php:32
-msgid "Unbekannte Einrichtung"
-msgstr "Unknown institute"
-
-#: ../lib/models/Studiengang.php:896
-msgid "Bitte eine verantwortliche Einrichtung angeben."
-msgstr "Please specify a responsible institute."
-
-#: ../lib/models/Studiengang.php:902
-msgid ""
-"Der Typ des Studiengangs kann nicht mehr verändert werden, da bereits ein "
-"Studiengangteil zugeordnet wurde."
-msgstr ""
-"The course of study's type cannot be changed anymore since a partial of "
-"course of study has already been assigned."
-
-#: ../lib/models/Studiengang.php:907
-msgid "Bitte den Typ des Studiengangs wählen."
-msgstr "Please select the type of the course of study."
-
-#: ../lib/models/Studiengang.php:915 ../lib/models/StgteilVersion.php:419
-#: ../lib/models/Modul.php:863
-msgid "Ungültiges Semester."
-msgstr "Invalid semester."
-
-#: ../lib/models/Studiengang.php:922 ../lib/models/StgteilVersion.php:426
-#: ../lib/models/Modul.php:870
-msgid "Das Endsemester muss nach dem Startsemester liegen."
-msgstr "The end semester must come after the start semester."
-
-#: ../lib/models/Studiengang.php:927 ../lib/models/StgteilVersion.php:431
-#: ../lib/models/Modul.php:875
-msgid "Ungültiges Endsemester."
-msgstr "Invalid end semester."
-
-#: ../lib/models/Studiengang.php:933 ../lib/models/StgteilVersion.php:437
-#: ../lib/models/Modul.php:881
-msgid "Bitte ein Startsemester angeben."
-msgstr "Please enter a start semester."
-
-#: ../lib/models/Statusgruppen.php:371
-msgid "Dateiordner der Gruppe:"
-msgstr "Document folder of the group:"
-
-#: ../lib/models/Statusgruppen.php:373
-msgid "Ablage für Ordner und Dokumente dieser Gruppe"
-msgstr "Clipboard for folders and documents of this group"
-
-#: ../lib/models/Statusgruppen.php:701
-msgid "Statusgruppen"
-msgstr "Status groups"
-
-#: ../lib/models/CourseMarkedEvent.class.php:72
-msgid "(vorgemerkt)"
-msgstr "(not enroled)"
-
-#: ../lib/models/QuestionnaireAnonymousAnswer.php:31
-msgid "Fragebögen anonyme Antworten"
-msgstr "Anonymous questionnaire answers"
-
-#: ../lib/models/BlubberGlobalThread.php:12
-msgid "Globaler Blubber"
-msgstr "Global Blubber"
-
-#: ../lib/models/CourseEvent.class.php:211
-#: ../lib/models/CalendarEvent.class.php:653
-#: ../lib/export/export_studipdata_func.inc.php:274
-msgid "Keine Berechtigung."
-msgstr "No permission."
-
-#: ../lib/models/WikiPage.class.php:180
-msgid "Dieses Wiki ist noch leer."
-msgstr "This Wiki is still empty."
-
-#: ../lib/models/WikiPage.class.php:183
-msgid ""
-"Bearbeiten Sie es!\n"
-"Neue Seiten oder Links werden einfach durch Eingeben von [nop][[Wikinamen]][/"
-"nop] in doppelten eckigen Klammern angelegt."
-msgstr ""
-"Edit it!\n"
-"New pages or links are simply added by entering [nop][[Wikiname]][/nop]."
-
-#: ../lib/models/WikiPage.class.php:205
-msgid "Wiki Einträge"
-msgstr "Wiki entries"
-
-#: ../lib/models/LogEvent.php:403
-msgid "Logs"
-msgstr "Logs"
-
-#: ../lib/models/Semester.class.php:197
-#: ../lib/extern/modules/views/ExternSemBrowse.class.php:67
-#: ../lib/extern/modules/views/ExternSemBrowseTable.class.php:64
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:206
-msgid "abgelaufene Semester"
-msgstr "expired semesters"
-
-#: ../lib/models/Semester.class.php:250
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:566
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:602
-#: ../lib/classes/StudipSemSearch.class.php:128
-#: ../lib/classes/StudipSemSearch.class.php:133
-#: ../lib/classes/StudipSemSearch.class.php:141
-#: ../lib/classes/CoursesetModel.php:200
-#: ../lib/classes/DataFieldEntry.class.php:560
-#: ../app/controllers/admission/restricted_courses.php:228
-#: ../app/controllers/admin/courseplanning.php:736
-#: ../app/controllers/admin/courses.php:1523
-#: ../app/views/admission/courseset/_institute_choose.php:36
-#: ../app/views/search/archive/index.php:28
-#: ../app/views/search/archive/index.php:40
-#: ../app/views/course/dates/_date_row.php:37
-#: ../app/views/course/dates/export.php:56 ../app/views/smileys/picker.php:13
-#: ../app/views/settings/statusgruppen/modify.php:68
-#: ../app/views/admin/user/index.php:40 ../app/views/admin/user/index.php:173
-#: ../app/views/admin/datafields/new.php:48
-#: ../app/views/admin/datafields/new.php:56
-#: ../app/views/admin/datafields/new.php:84
-#: ../app/views/admin/datafields/index.php:97
-#: ../app/views/admin/datafields/index.php:99
-#: ../app/views/admin/datafields/index.php:103
-#: ../app/views/admin/datafields/index.php:116
-#: ../app/views/admin/datafields/edit.php:43
-#: ../app/views/admin/datafields/edit.php:54
-#: ../app/views/admin/datafields/edit.php:99
-#: ../app/views/admin/datafields/edit.php:127
-msgid "alle"
-msgstr "all"
-
-#: ../lib/models/Semester.class.php:375
-#, php-format
-msgid "%u. Semesterwoche (ab %s)"
-msgstr "%u. week of semester (from %s)"
-
-#: ../lib/models/User.class.php:757 ../app/controllers/avatar.php:153
-msgid "Eigenes Bild"
-msgstr "Personal picture"
-
-#: ../lib/models/User.class.php:766 ../app/controllers/settings/details.php:110
-#: ../app/controllers/profile.php:391 ../app/views/settings/details.php:38
-msgid "Motto"
-msgstr "Motto"
-
-#: ../lib/models/User.class.php:774 ../app/controllers/settings/details.php:73
-#: ../app/views/settings/details.php:32
-msgid "Skype Name"
-msgstr "Skype name"
-
-#: ../lib/models/User.class.php:782 ../app/controllers/settings/details.php:106
-msgid "Private Telefonnummer"
-msgstr "Home telephone"
-
-#: ../lib/models/User.class.php:789 ../app/controllers/settings/details.php:107
-msgid "Private Handynummer"
-msgstr "Private mobile telephone"
-
-#: ../lib/models/User.class.php:796 ../app/controllers/settings/details.php:108
-msgid "Private Adresse"
-msgstr "Home address"
-
-#: ../lib/models/User.class.php:803 ../app/controllers/settings/details.php:109
-msgid "Homepage-Adresse"
-msgstr "Homepage address"
-
-#: ../lib/models/User.class.php:841 ../app/controllers/settings/studies.php:105
-#: ../app/views/profile/index.php:47
-msgid "Wo ich studiere"
-msgstr "Where I study"
-
-#: ../lib/models/User.class.php:848
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:73
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:78
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:148
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:167
-#: ../lib/classes/LockRules.class.php:235
-#: ../app/controllers/settings/details.php:112
-#: ../app/controllers/profile.php:148 ../app/views/settings/details.php:55
-msgid "Lebenslauf"
-msgstr "Curriculum vitae"
-
-#: ../lib/models/User.class.php:856 ../lib/classes/LockRules.class.php:234
-#: ../app/controllers/settings/details.php:111
-#: ../app/controllers/profile.php:149 ../app/views/settings/details.php:50
-msgid "Hobbys"
-msgstr "Hobbies"
-
-#: ../lib/models/User.class.php:863
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:74
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:83
-#: ../lib/classes/LockRules.class.php:238
-#: ../app/controllers/settings/details.php:114
-#: ../app/controllers/profile.php:150 ../app/views/settings/details.php:65
-msgid "Publikationen"
-msgstr "Publications"
-
-#: ../lib/models/User.class.php:871 ../app/controllers/settings/details.php:113
-#: ../app/controllers/profile.php:151
-msgid "Arbeitsschwerpunkte"
-msgstr "Research interests"
-
-#: ../lib/models/User.class.php:956
-#, php-format
-msgid ""
-"Die E-Mail-Adresse fehlt, ist falsch geschrieben oder gehört nicht zu "
-"folgenden Domains:%s"
-msgstr ""
-"E-mail address is missing or is incorrectly written or does not belong to "
-"any of the following domains:%s "
-
-#: ../lib/models/User.class.php:959
-#: ../lib/phplib/Seminar_Register_Auth.class.php:107
-msgid "Die E-Mail-Adresse fehlt oder ist falsch geschrieben!"
-msgstr "Missing or incorrectly written e-mail address!"
-
-#: ../lib/models/User.class.php:965
-msgid ""
-"Der Mailserver ist nicht erreichbar. Bitte überprüfen Sie, ob Sie E-Mails "
-"mit der angegebenen Adresse verschicken können!"
-msgstr ""
-"The mail server is not accessible. Please check whether e-mails with the "
-"given address can be sent!"
-
-#: ../lib/models/User.class.php:970
-msgid ""
-"Die angegebene E-Mail-Adresse ist nicht erreichbar. Bitte überprüfen Sie "
-"Ihre Angaben!"
-msgstr "The given e-mail address is not accessible. Please check your entries!"
-
-#: ../lib/models/User.class.php:976
-#, php-format
-msgid ""
-"Die angegebene E-Mail-Adresse wird bereits von einem anderen Benutzer (%s) "
-"verwendet. Bitte geben Sie eine andere E-Mail-Adresse an."
-msgstr ""
-"The specified e-mail address is already in use by another user (%s). Please "
-"specify another e-mail address."
-
-#: ../lib/models/User.class.php:982
-msgid "Ihre E-Mail-Adresse wurde geändert!"
-msgstr "Your e-mail address has been changed!"
-
-#: ../lib/models/User.class.php:1015
-#, php-format
-msgid ""
-"An Ihre neue E-Mail-Adresse <b>%s</b> wurde ein Aktivierungslink geschickt, "
-"dem Sie folgen müssen bevor Sie sich das nächste mal einloggen können."
-msgstr ""
-"An activation link has been sent to your new e-mail address <b>%s</b>. "
-"Please follow this link prior to your next login."
-
-#: ../lib/models/User.class.php:1135
-msgid "Identitätsrelevante Daten wurden migriert."
-msgstr "All details relevant for identification were migrated."
-
-#: ../lib/models/User.class.php:1304
-msgid ""
-"Dateien, Termine, Adressbuch, Nachrichten und weitere Daten wurden migriert."
-msgstr ""
-"Files, dates, address book, announcements and further data have been "
-"migrated."
-
-#: ../lib/models/User.class.php:1351
-msgid "NutzerIn"
-msgstr "User"
-
-#: ../lib/models/User.class.php:1431 ../app/controllers/privacy.php:421
-msgid "Kerndaten"
-msgstr "Basic data"
-
-#: ../lib/models/User.class.php:1440
-msgid "Benutzer Informationen"
-msgstr "User information"
-
-#: ../lib/models/User.class.php:1445
-msgid "Objekt Aufrufe"
-msgstr "Object lookups"
-
-#: ../lib/models/CourseExDate.class.php:144
-#: ../lib/models/CourseExDate.class.php:149
-#: ../app/controllers/course/dates.php:392 ../app/routes/Events.php:176
-msgid "fällt aus"
-msgstr "cancelled"
-
-#: ../lib/models/CourseExDate.class.php:232
-msgid "ausgefallende Termine"
-msgstr "cancelled dates"
-
-#: ../lib/models/OERMaterial.php:153
-msgid "Zum OER Campus"
-msgstr ""
-
-#: ../lib/models/OERMaterial.php:565
-#, php-format
-msgid "Neues Material im %s"
-msgstr ""
-
-#: ../lib/models/OERMaterial.php:575
-#, php-format
-msgid ""
-"%1$s hat soeben neues Material auf dem %2$s zur verfügung gestellt. Viel "
-"Spaß! <br> %3$s"
-msgstr ""
-
-#: ../lib/models/ConsultationSlot.php:231
-#, php-format
-msgid "Termin mit %s"
-msgstr ""
-
-#: ../lib/models/ConsultationSlot.php:237
-#, php-format
-msgid "Termin mit %u Personen"
-msgstr ""
-
-#: ../lib/models/ConsultationSlot.php:246
-msgid "Freier Termin"
-msgstr ""
-
-#: ../lib/models/ConsultationSlot.php:247
-msgid "Dieser Termin ist noch nicht belegt."
-msgstr ""
-
-#: ../lib/models/Modulteil.php:87 ../lib/models/Modulteil.php:96
-#: ../app/views/search/studiengaenge/verlauf.php:28
-#: ../app/views/shared/version/_versionmodule.php:59
-#: ../app/views/lvgruppen/lvgruppen/export_xls.php:9
-msgid "Modulteil"
-msgstr "Module component"
-
-#: ../lib/models/ModulDeskriptor.php:70 ../lib/models/ModulDeskriptor.php:78
-msgid "Modul-Deskriptor"
-msgstr "Module descriptor"
-
-#: ../lib/models/InstituteMember.class.php:206
-msgid "Einrichtungs Informationen"
-msgstr "Institute information"
-
-#: ../lib/models/StatusgruppeUser.php:157
-msgid "StatusgruppeUser"
-msgstr "Status group user"
-
-#: ../lib/models/ArchivedCourseMember.class.php:65
-msgid "archivierte SeminareUser"
-msgstr "archived course members"
-
-#: ../lib/models/QuestionnaireAnswer.php:30
-msgid "Fragebögen Antworten"
-msgstr "Questionnaire answers"
-
-#: ../lib/models/DataField.class.php:127
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1742
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1746
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1751
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1757
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2070
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2077
-#: ../lib/navigation/AdminNavigation.php:59
-#: ../lib/navigation/AdminNavigation.php:61
-#: ../app/views/admin/role/assign_role.php:15
-#: ../app/views/admin/role/assign_role.php:25
-#: ../app/views/admin/role/index.php:9
-msgid "Benutzer"
-msgstr "User"
-
-#: ../lib/models/DataField.class.php:128
-msgid "Benutzerrollen in Einrichtungen"
-msgstr "User roles in institutes"
-
-#: ../lib/models/DataField.class.php:129
-msgid "Benutzer-Zusatzangaben in VA"
-msgstr "Additional user information in VA"
-
-#: ../lib/models/DataField.class.php:130
-msgid "Rollen in Einrichtungen"
-msgstr "Roles in institutes"
-
-#: ../lib/models/DataField.class.php:131
-msgid "Moduldeskriptoren"
-msgstr "Module descriptors"
-
-#: ../lib/models/DataField.class.php:132
-msgid "Modulteildeskriptoren"
-msgstr "Module component descriptors"
-
-#: ../lib/models/DataField.class.php:133 ../lib/navigation/MVVNavigation.php:40
-#: ../lib/navigation/MVVNavigation.php:42 ../templates/privacy.php:66
-#: ../app/controllers/search/stgtable.php:36
-#: ../app/controllers/search/studiengaenge.php:33
-#: ../app/controllers/search/studiengaenge.php:57
-#: ../app/controllers/search/angebot.php:36
-#: ../app/controllers/search/module.php:57
-#: ../app/controllers/search/module.php:163
-#: ../app/controllers/course/members.php:1788
-#: ../app/views/search/stgtable/index.php:10
-#: ../app/views/studiengaenge/kategorien/index.php:5
-#: ../app/views/studiengaenge/fachbereiche/index.php:5
-#: ../app/views/studiengaenge/stgteilbezeichnungen/index.php:13
-#: ../app/views/studiengaenge/abschluesse/index.php:5
-msgid "Studiengänge"
-msgstr "Courses of study"
-
-#: ../lib/models/DataField.class.php:280
-#: ../lib/navigation/AdminNavigation.php:155
-#: ../app/views/admin/courses/sidebar.php:52
-#: ../app/views/admin/user/edit.php:577
-msgid "Datenfelder"
-msgstr "Data fields"
-
-#: ../lib/models/ConsultationBooking.php:49
-#, php-format
-msgid "Termin bei %s"
-msgstr ""
-
-#: ../lib/models/ConsultationBooking.php:124
-msgid "Terminbelegungen"
-msgstr ""
-
-#: ../lib/models/BlubberComment.php:68
-msgid "Blubber-Kommentare"
-msgstr "Blubber comments"
-
-#: ../lib/models/ArchivedCourse.class.php:84
-msgid "archivierte Seminare"
-msgstr "archived courses"
-
-#: ../lib/models/AdmissionApplication.class.php:101
-#: ../app/views/my_courses/waiting_list.php:1
-msgid "Wartelisten"
-msgstr "Waiting lists"
-
-#: ../lib/models/StudipNews.class.php:267
-msgid "Ankündigungen auf Ihrer Profilseite"
-msgstr "Announcements on your profile page"
-
-#: ../lib/models/StudipNews.class.php:270
-#, php-format
-msgid "Ankündigungen auf der Profilseite von %s"
-msgstr "Announcements on the profile page of %s"
-
-#: ../lib/models/StudipNews.class.php:273
-msgid "Ankündigungen auf der Stud.IP Startseite"
-msgstr "Announcements on the Stud.IP start page"
-
-#: ../lib/models/StudipNews.class.php:359
-#, php-format
-msgid "Zuletzt aktualisiert von %s (%s) am %s"
-msgstr "Last update from %s (%s) on %s"
-
-#: ../lib/models/StudipNews.class.php:623
-msgid "Fehler: Personenangabe unvollständig."
-msgstr "Error: Incomplete person reference."
-
-#: ../lib/models/StudipNews.class.php:627
-msgid "Bitte geben Sie einen Titel für die Ankündigung ein."
-msgstr "Please enter a title for the announcement."
-
-#: ../lib/models/StudipNews.class.php:631
-msgid "Bitte geben Sie einen Inhalt für die Ankündigung ein."
-msgstr "Please enter the content of the announcement."
-
-#: ../lib/models/StudipNews.class.php:635
-msgid "Die Ankündigung muss mindestens einem Bereich zugeordnet sein."
-msgstr "The announcement must be assigned to at least one area."
-
-#: ../lib/models/StudipNews.class.php:639
-msgid "Ungültiges Einstelldatum."
-msgstr "Invalid insertion date."
-
-#: ../lib/models/StudipNews.class.php:643
-msgid "Ungültiges Ablaufdatum."
-msgstr "Invalid expiration date."
-
-#: ../lib/models/AuxLockRule.php:105
-msgid "Dozenten"
-msgstr "Lecturers"
-
-#: ../lib/models/AuxLockRule.php:107
-#: ../app/controllers/resources/room_request.php:1855
-#: ../app/views/shared/modul/_modullv.php:11
-#: ../app/views/course/wizard/steps/basicdata/index.php:35
-msgid "Veranstaltungstitel"
-msgstr "Course name"
-
-#: ../lib/models/AuxLockRule.php:108
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:68
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:68
-#: ../lib/extern/modules/ExternModuleLecturestable.class.php:64
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:74
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:75
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:78
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:66
-#: ../lib/classes/LockRules.class.php:171
-#: ../app/controllers/resources/room_request.php:1854
-#: ../app/controllers/course/basicdata.php:74
-#: ../app/views/course/wizard/steps/basicdata/index.php:42
-#: ../app/views/course/archive/confirm.php:52
-#: ../app/views/course/details/index.php:40
-#: ../app/views/course/grouping/create_children.php:24
-#: ../app/views/admin/user/_priority_list.php:19
-#: ../app/views/admin/user/_course_files.php:27
-#: ../app/views/admin/user/_course_list.php:25
-#: ../app/views/admin/user/_waiting_list.php:20
-#: ../app/views/calendar/schedule/_entry_course.php:25
-msgid "Veranstaltungsnummer"
-msgstr "Course number"
-
-#: ../lib/models/AuxLockRule.php:112
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:71
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:69
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:61
-#: ../lib/extern/modules/ExternModuleLecturestable.class.php:65
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:72
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:75
-#: ../lib/extern/modules/ExternModulePersons.class.php:58
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:67
-#: ../lib/classes/LockRules.class.php:173
-#: ../lib/classes/LockRules.class.php:213
-#: ../lib/evaluation/evaluation_admin_template.lib.php:379
-#: ../lib/evaluation/evaluation_admin_template.lib.php:826
-#: ../lib/archiv.inc.php:386 ../lib/filesystem/FileArchiveManager.class.php:453
-#: ../app/controllers/admission/restricted_courses.php:75
-#: ../app/controllers/admission/courseset.php:401
-#: ../app/controllers/shared/contacts.php:828
-#: ../app/controllers/admin/courses.php:1096
-#: ../app/controllers/institute/members.php:464
-#: ../app/views/public_courses/index.php:36
-#: ../app/views/admission/courseset/factored_users.php:4
-#: ../app/views/admission/courseset/configure_courses.php:5
-#: ../app/views/admission/restricted_courses/index.php:8
-#: ../app/views/admission/user_list/configure.php:59
-#: ../app/views/online/index.php:16 ../app/views/online/index.php:91
-#: ../app/views/search/archive/index.php:71
-#: ../app/views/oer/mymaterial/edit.php:13 ../app/views/oer/admin/hosts.php:7
-#: ../app/views/shared/contacts/add_ansprechpartner.php:81
-#: ../app/views/shared/contacts/details.php:27
-#: ../app/views/shared/contacts/details.php:30
-#: ../app/views/shared/filter.php:12
-#: ../app/views/shared/studiengang/_studiengang_info.php:26
-#: ../app/views/api/authorizations/index.php:10
-#: ../app/views/resources/property/_add_edit_form.php:2
-#: ../app/views/resources/category/show_resources.php:5
-#: ../app/views/resources/category/delete.php:11
-#: ../app/views/resources/category/_add_edit_form.php:47
-#: ../app/views/resources/room_group/permissions.php:6
-#: ../app/views/resources/admin/property_groups.php:29
-#: ../app/views/resources/admin/property_groups.php:109
-#: ../app/views/resources/admin/categories.php:13
-#: ../app/views/resources/admin/properties.php:6
-#: ../app/views/resources/room_request/overview.php:25
-#: ../app/views/resources/room_request/planning.php:140
-#: ../app/views/resources/resource/_standard_properties_display_part.php:33
-#: ../app/views/resources/resource/temporary_permissions.php:28
-#: ../app/views/resources/resource/_add_edit_form.php:16
-#: ../app/views/resources/_common/_permission_table.php:66
-#: ../app/views/score/index.php:23
-#: ../app/views/fachabschluss/faecher/fach.php:13
-#: ../app/views/fachabschluss/kategorien/kategorie.php:15
-#: ../app/views/fachabschluss/kategorien/index.php:8
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:8
-#: ../app/views/studygroup/browse.php:5
-#: ../app/views/module/module/lvgruppe.php:11
-#: ../app/views/files/_files_thead.php:34
-#: ../app/views/materialien/files/range.php:25
-#: ../app/views/materialien/files/index.php:8
-#: ../app/views/course/ilias_interface/add_object.php:80
-#: ../app/views/course/ilias_interface/index.php:19
-#: ../app/views/course/basicdata/view.php:105
-#: ../app/views/course/basicdata/view.php:180
-#: ../app/views/course/basicdata/view.php:242
-#: ../app/views/course/studygroup/members.php:51
-#: ../app/views/course/studygroup/members.php:119
-#: ../app/views/course/studygroup/_members_list.php:26
-#: ../app/views/course/studygroup/edit.php:18
-#: ../app/views/course/wizard/steps/basicdata/index_studygroup.php:6
-#: ../app/views/course/gradebook/lecturers/custom_definitions.php:11
-#: ../app/views/course/gradebook/lecturers/index.php:24
-#: ../app/views/course/gradebook/lecturers/edit_custom_definitions.php:8
-#: ../app/views/course/statusgroups/edit.php:10
-#: ../app/views/course/grouping/_perm_level.php:38
-#: ../app/views/settings/categories.php:27
-#: ../app/views/files_dashboard/search.php:41
-#: ../app/views/admin/role/add.php:11 ../app/views/admin/role/index.php:7
-#: ../app/views/admin/role/show_role.php:67
-#: ../app/views/admin/role/show_role.php:167
-#: ../app/views/admin/ilias_interface/index.php:21
-#: ../app/views/admin/courseplanning/viewcolumns.php:7
-#: ../app/views/admin/courseplanning/nonconform.php:8
-#: ../app/views/admin/api/index.php:8
-#: ../app/views/admin/configuration/table-header.php:9
-#: ../app/views/admin/course_wizard_steps/index.php:23
-#: ../app/views/admin/semester/index.php:22
-#: ../app/views/admin/cronjobs/schedules/edit.php:71
-#: ../app/views/admin/smileys/edit.php:20
-#: ../app/views/admin/specification/index.php:14
-#: ../app/views/admin/domain/index.php:19
-#: ../app/views/admin/content_terms_of_use/index.php:7
-#: ../app/views/admin/content_terms_of_use/edit.php:15
-#: ../app/views/admin/courses/courses.php:105
-#: ../app/views/admin/plugin/unregistered.php:7
-#: ../app/views/admin/plugin/index.php:40
-#: ../app/views/admin/plugin/manifest.php:2
-#: ../app/views/admin/holidays/index.php:19
-#: ../app/views/admin/lockrules/index.php:18
-#: ../app/views/admin/lockrules/_form.php:18
-#: ../app/views/admin/datafields/new.php:14
-#: ../app/views/admin/datafields/index.php:21
-#: ../app/views/admin/datafields/edit.php:14
-#: ../app/views/admin/sem_classes/add_sem_type.php:9
-#: ../app/views/admin/licenses/index.php:9
-#: ../app/views/admin/licenses/edit.php:12
-#: ../app/views/my_studygroups/index.php:21
-#: ../app/views/my_courses/_deputy_bosses.php:13
-#: ../app/views/my_courses/waiting_list.php:22
-#: ../app/views/my_courses/_exportcourse.php:43
-#: ../app/views/my_courses/archive.php:19 ../app/views/contact/index.php:28
-#: ../app/views/institute/basicdata/index.php:9
-#: ../app/views/event_log/admin.php:6 ../app/views/my_institutes/index.php:38
-#: ../app/views/room_management/overview/locations.php:5
-#: ../app/views/room_management/overview/buildings.php:19
-#: ../app/views/room_management/overview/index.php:103
-#: ../app/views/room_management/overview/rooms.php:5
-#: ../app/views/room_management/planning/copy_bookings.php:19
-#: ../app/views/calendar/instschedule/_entry_details.php:12
-#: ../app/views/calendar/single/manage_access.php:38
-#: ../app/views/calendar/single/seminar_events.php:36
-#: ../app/views/calendar/schedule/_entry_course.php:30
-#: ../app/views/calendar/schedule/_entry_inst.php:13
-#: ../app/views/my_ilias_accounts/index.php:21
-#: ../app/views/file/new_edit_folder_form.php:6
-#: ../app/views/file/new_edit_folder_form.php:7
-#: ../app/views/file/choose_folder_from_institute.php:29
-#: ../app/views/file/choose_file_from_course.php:28
-#: ../app/views/file/choose_folder.php:74 ../app/views/file/edit.php:13
-#: ../app/views/file/edit_urlfile.php:13
-#: ../app/views/file/choose_folder_from_course.php:36
-#: ../app/views/file/choose_file.php:61
-#: ../app/views/lvgruppen/lvgruppen/index.php:10
-#: ../app/views/lvgruppen/lvgruppen/lvgruppe.php:9
-#: ../app/views/studiengaenge/versionen/abschnitt.php:8
-#: ../app/views/studiengaenge/stgteilbezeichnungen/index.php:11
-#: ../app/views/studiengaenge/stgteilbezeichnungen/details.php:7
-msgid "Name"
-msgstr "Name"
-
-#: ../lib/models/LvgruppeModulteil.php:45
-#: ../lib/models/LvgruppeModulteil.php:53
-msgid "Zuordnung Lehrveranstaltungsgruppe zu Modulteil"
-msgstr "Assignment of course group to module component"
-
-#: ../lib/models/StgteilVersion.php:64 ../lib/models/StgteilVersion.php:73
-#: ../lib/classes/admission/userfilter/StgteilVersionCondition.class.php:79
-#: ../app/views/studiengaenge/versionen/index.php:6
-msgid "Studiengangteil-Version"
-msgstr "Component version"
-
-#: ../lib/models/StgteilVersion.php:74 ../lib/wiki.inc.php:794
-#: ../lib/wiki.inc.php:870 ../templates/wiki/pageversions.php:17
-#: ../app/views/oer/endpoints/index.php:3
-#: ../app/views/settings/studies/studiengang.php:48
-#: ../app/views/admin/ilias_interface/index.php:23
-#: ../app/views/admin/plugin/search.php:16
-#: ../app/views/admin/plugin/unregistered.php:9
-#: ../app/views/admin/plugin/index.php:42
-#: ../app/views/admin/plugin/manifest.php:14 ../app/views/wiki/info.php:18
-msgid "Version"
-msgstr "Version"
-
-#: ../lib/models/StgteilVersion.php:283 ../lib/models/StgteilVersion.php:319
-#: ../lib/models/Modul.php:330
-#, php-format
-msgid "gültig ab %s"
-msgstr "valid from %s"
-
-#: ../lib/models/StgteilVersion.php:314 ../lib/models/Modul.php:323
-#, php-format
-msgid "gültig im %s"
-msgstr "valid in %s"
-
-#: ../lib/models/StgteilVersion.php:316 ../lib/models/Modul.php:326
-#, php-format
-msgid "gültig %s bis %s"
-msgstr "valid %s to %s"
-
-#: ../lib/models/StgteilVersion.php:443
-msgid "Der angegebene Studiengangteil ist ungültig."
-msgstr "The provided component of course of study is invalid."
-
-#: ../lib/models/StgteilVersion.php:448
-msgid "Bitte einen Studiengangteil angeben."
-msgstr "Please specify a component."
-
-#: ../lib/models/StgteilVersion.php:454 ../lib/models/Modul.php:924
-msgid "Für Fassung bitte eine Zahl angeben."
-msgstr "Please specify a number as version."
-
-#: ../lib/models/StgteilVersion.php:459 ../lib/models/Modul.php:929
-msgid "Bitte einen Typ der Fassung angeben."
-msgstr "Please specify a type of the version."
-
-#: ../lib/models/UserDomain.php:35
-msgid "Ungültige ID für Nutzerdomäne"
-msgstr "Invalid user domain ID"
-
-#: ../lib/models/Courseware/BlockTypes/Canvas.php:24
-msgid "Leinwand"
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Canvas.php:29
-msgid "Zeichnen und Schreiben auf einem Bild."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Audio.php:24
-#: ../app/views/oer/market/_searchform.php:66
-#: ../app/views/oer/mymaterial/edit.php:109
-msgid "Audio"
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Audio.php:29
-msgid "Spielt eine Audiodatei aus dem Dateibereich oder von einer URL ab."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Gallery.php:24
-#: ../app/controllers/course/studygroup.php:585
-msgid "Galerie"
-msgstr "Gallery"
-
-#: ../lib/models/Courseware/BlockTypes/Gallery.php:29
-msgid "Bilder aus einem Ordner im Dateibereich zeigen."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/IFrame.php:24
-msgid "IFrame"
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/IFrame.php:29
-msgid "Einbetten von einer Website oder Datei."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Embed.php:24
-msgid "Embed"
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Embed.php:29
-msgid "Bindet externe Inhalte wie Videos, Grafiken oder Musik ein."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Document.php:24
-#, fuzzy
-msgid "Dokument"
-msgstr "Documents"
-
-#: ../lib/models/Courseware/BlockTypes/Document.php:29
-msgid "Zeigt ein Dokument aus dem Dateibereich an."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/KeyPoint.php:24
-#, fuzzy
-msgid "Merksatz"
-msgstr "Clipboard"
-
-#: ../lib/models/Courseware/BlockTypes/KeyPoint.php:29
-msgid "Erzeugt einen Merksatz mit Icon und Rahmen."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Code.php:24
-#, fuzzy
-msgid "Quelltext"
-msgstr "Resource"
-
-#: ../lib/models/Courseware/BlockTypes/Code.php:29
-msgid "Quelltext wird seiner Syntax entsprechend farblich hervorgehoben."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Folder.php:24
-#: ../lib/classes/ModulesNotification.class.php:62
-#: ../app/views/course/topics/index.php:61
-msgid "Dateiordner"
-msgstr "Document folder"
-
-#: ../lib/models/Courseware/BlockTypes/Folder.php:29
-msgid "Stellt einen Ordner aus dem Dateibereich zur Verfügung."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Date.php:24
-#: ../app/controllers/consultation/admin.php:628
-#: ../app/controllers/course/dates.php:435
-#: ../app/views/consultation/overview/cancel.php:8
-#: ../app/views/consultation/overview/book.php:12
-#: ../app/views/consultation/admin/book.php:8
-#: ../app/views/consultation/admin/cancel_slot.php:8
-#: ../app/views/consultation/admin/cancel_slots.php:21
-#: ../app/views/consultation/admin/cancel_block.php:8
-#: ../app/views/consultation/export/print.php:77
-#: ../app/views/course/dates/new_topic.php:8
-msgid "Termin"
-msgstr "Date"
-
-#: ../lib/models/Courseware/BlockTypes/Date.php:29
-msgid "Zeigt einen Termin oder Countdown an."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/ImageMap.php:24
-msgid "Verweissensitive Grafik"
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/ImageMap.php:29
-msgid "Beliebige Bereiche auf einem Bild lassen sich verlinken."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Link.php:29
-msgid ""
-"Erstellt einen Link innerhalb der Courseware oder auf eine andere Seite."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Confirm.php:24
-#, fuzzy
-msgid "Bestätigung"
-msgstr "Confirm"
-
-#: ../lib/models/Courseware/BlockTypes/Confirm.php:29
-msgid "Vom Lernenden bestätigen lassen, dass der Inhalt betrachtet wurde."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Chart.php:24
-msgid "Diagramm"
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Chart.php:29
-msgid "Präsentiert Datensätze in einem Diagramm."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Download.php:24
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:77
-#: ../lib/extern/extern_config.inc.php:67
-#: ../app/views/admission/courseset/configure_courses.php:58
-#: ../app/views/admission/courseset/configure_courses.php:66
-#: ../app/views/admission/courseset/configure_courses.php:73
-#: ../app/views/admission/courseset/applications_list.php:20
-msgid "Download"
-msgstr "Download"
-
-#: ../lib/models/Courseware/BlockTypes/Download.php:29
-#, fuzzy
-msgid "Stellt eine Datei aus dem Dateibereich zum Download bereit."
-msgstr "Ready to download the required files."
-
-#: ../lib/models/Courseware/BlockTypes/DialogCards.php:24
-msgid "Dialog Cards"
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/DialogCards.php:29
-msgid ""
-"Karten zum Umdrehen, auf beiden Seiten lässt sich ein Bild und Text "
-"darstellen."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/BeforeAfter.php:24
-#, fuzzy
-msgid "Bildvergleich"
-msgstr "Area"
-
-#: ../lib/models/Courseware/BlockTypes/BeforeAfter.php:29
-msgid "Vergleicht zwei Bilder mit einem Schieberegler."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Headline.php:25
-msgid "Blickfang"
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Headline.php:30
-msgid "Erzeugt einen typografisch ansprechenden Text."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Text.php:24
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:192
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:158
-#: ../app/views/settings/messaging.php:10
-msgid "Text"
-msgstr "Text"
-
-#: ../lib/models/Courseware/BlockTypes/Text.php:29
-msgid "Erstellen von Inhalten mit dem WYSIWYG-Editor."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Typewriter.php:24
-#, fuzzy
-msgid "Schreibmaschine"
-msgstr "Write"
-
-#: ../lib/models/Courseware/BlockTypes/Typewriter.php:29
-msgid "Der Text erscheint Zeichen für Zeichen."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Video.php:24
-#: ../app/views/oer/market/_searchform.php:73
-#: ../app/views/oer/mymaterial/edit.php:112
-msgid "Video"
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/Video.php:29
-msgid "Spielt ein Video aus dem Dateibereich oder von einer URL ab."
-msgstr ""
-
-#: ../lib/models/Courseware/BlockTypes/TableOfContents.php:24
-#, fuzzy
-msgid "Inhaltsverzeichnis"
-msgstr "Course directory"
-
-#: ../lib/models/Courseware/BlockTypes/TableOfContents.php:29
-msgid "Stellt auf verschiedene Arten die Unterkapitel dieses Kapitels dar."
-msgstr ""
-
-#: ../lib/models/Courseware/StructuralElement.php:412
-#: ../lib/modules/CoursewareModule.class.php:110
-#, fuzzy
-msgid "neue Seite"
-msgstr "New page"
-
-#: ../lib/models/Courseware/Filesystem/PublicFolder.php:61
-#, fuzzy
-msgid "Ein Ordner für öffentlich zugängliche Dateien einer Courseware"
-msgstr "A folder for files which are open to the public"
-
-#: ../lib/models/Courseware/ContainerTypes/ListContainer.php:24
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:150
-#: ../templates/admin/topLinks.php:37
-#: ../app/controllers/course/studygroup.php:589
-msgid "Liste"
-msgstr "List"
-
-#: ../lib/models/Courseware/ContainerTypes/ListContainer.php:29
-#, fuzzy
-msgid "In diesem Container werden Blöcke untereinander dargestellt."
-msgstr "No content available in this area."
-
-#: ../lib/models/Courseware/ContainerTypes/ListContainer.php:37
-#, fuzzy
-msgid "neue Liste"
-msgstr "New page"
-
-#: ../lib/models/Courseware/ContainerTypes/TabsContainer.php:24
-msgid "Tabs"
-msgstr ""
-
-#: ../lib/models/Courseware/ContainerTypes/TabsContainer.php:29
-msgid ""
-"Dieser Container verfügt über eine horizontale Navigation, über die sich "
-"Gruppen von Blöcken erreichen lassen."
-msgstr ""
-
-#: ../lib/models/Courseware/ContainerTypes/TabsContainer.php:38
-msgid "neuer Tab"
-msgstr ""
-
-#: ../lib/models/Courseware/ContainerTypes/AccordionContainer.php:24
-msgid "Accordion"
-msgstr ""
-
-#: ../lib/models/Courseware/ContainerTypes/AccordionContainer.php:29
-msgid "Mit diesem Container lassen sich Blöcke unter Überschriften gruppieren."
-msgstr ""
-
-#: ../lib/models/Courseware/ContainerTypes/AccordionContainer.php:37
-#, fuzzy
-msgid "neues Fach"
-msgstr "new search"
-
-#: ../lib/models/Courseware/ContainerTypes/ContainerType.php:236
-#, fuzzy
-msgid "volle Breite"
-msgstr "All pages"
-
-#: ../lib/models/Courseware/ContainerTypes/ContainerType.php:237
-#, fuzzy
-msgid "halbe Breite"
-msgstr "Width"
-
-#: ../lib/models/Courseware/ContainerTypes/ContainerType.php:238
-msgid "halbe Breite (zentriert)"
-msgstr ""
-
-#: ../lib/models/Courseware/ContainerTypes/ContainerType.php:244
-#, fuzzy
-msgid "unbekannter Courseware-Container"
-msgstr "unknown semester"
-
-#: ../lib/models/StudipComment.class.php:110
-msgid "Ankündigungen Kommentare"
-msgstr "Announcement comments"
-
-#: ../lib/models/BlubberStatusgruppeThread.php:55
-#, php-format
-msgid "%s in %s"
-msgstr "%s in %s"
-
-#: ../lib/models/StgteilAbschnitt.php:69
-msgid "Studiengangteil-Abschnitt"
-msgstr "Component section"
-
-#: ../lib/models/StgteilAbschnitt.php:70
-#: ../app/views/course/lti/grades_user.php:9
-msgid "Abschnitt"
-msgstr "Section"
-
-#: ../lib/models/MessageUser.class.php:93
-msgid "MessageUser"
-msgstr "MessageUser"
-
-#: ../lib/models/Fachbereich.php:40 ../lib/models/Fachbereich.php:48
-#: ../config/mvv_config.php:113
-#: ../app/views/shared/studiengang/_studiengang.php:87
-#: ../app/views/fachabschluss/faecher/fach.php:28
-#: ../app/views/module/module/modul.php:259
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:136
-msgid "Verantwortliche Einrichtung"
-msgstr "Responsible institute"
-
-#: ../lib/models/Deputy.php:258 ../lib/models/Deputy.php:291
-#: ../lib/functions.php:981 ../config/config.inc.php:85
-#: ../config/config_develop.inc.php:89 ../app/controllers/news.php:678
-#: ../app/controllers/news.php:712
-#: ../app/views/course/grouping/_perm_level.php:4
-msgid "Vertretung"
-msgstr "Substitute"
-
-#: ../lib/models/Clipboard.class.php:125
-msgid "Die Daten zum Hinzufügen eines Eintrags sind ungültig!"
-msgstr "The data for adding an entry are invalid!"
-
-#: ../lib/models/Clipboard.class.php:153
-msgid "Fehler beim Speichern des Eintrags!"
-msgstr "Error while saving the entry!"
-
-#: ../lib/models/EventData.class.php:109
-msgid "Kalender Einträge"
-msgstr "Calendar entries"
-
-#: ../lib/models/StgteilabschnittModul.php:45
-#: ../lib/models/StgteilabschnittModul.php:53
-msgid "Zuordnung Modul zu Studiengangteil-Abschnitt"
-msgstr "Assign module to section of partial of course of study"
-
-#: ../lib/models/StgteilabschnittModul.php:54 ../lib/models/Modul.php:133
-#: ../lib/models/Modul.php:142 ../config/mvv_config.php:176
-#: ../app/views/search/studiengaenge/verlauf.php:27
-#: ../app/views/shared/version/_versionmodule.php:58
-#: ../app/views/module/module/index.php:10
-#: ../app/views/module/institute/details.php:6
-#: ../app/views/lvgruppen/lvgruppen/export_xls.php:8
-msgid "Modul"
-msgstr "Module"
-
-#: ../lib/models/StgteilabschnittModul.php:81
-#, php-format
-msgid ", gültig %s bis %s"
-msgstr ", valid %s to %s"
-
-#: ../lib/models/StgteilabschnittModul.php:84
-#, php-format
-msgid ", gültig ab %s"
-msgstr ", valid from %s"
-
-#: ../lib/models/UserStudyCourse.class.php:87
-msgid "UserStudiengang"
-msgstr "User courses of study"
-
-#: ../lib/models/StudiengangTeil.php:78 ../lib/models/StudiengangTeil.php:407
-#: ../app/controllers/admin/courseplanning.php:634
-#: ../app/controllers/admin/courses.php:1407
-#: ../app/controllers/studiengaenge/versionen.php:118
-#: ../app/controllers/studiengaenge/versionen.php:144
-#: ../app/controllers/studiengaenge/versionen.php:159
-#: ../app/views/admin/overlapping/selection.php:8
-#: ../app/views/admin/courses/sidebar.php:29
-msgid "Studiengangteil"
-msgstr "Partial course of study"
-
-#: ../lib/models/StudiengangTeil.php:433
-msgid "Es muss ein Fach zugeordnet werden."
-msgstr "A field of study must be assigned."
-
-#: ../lib/models/StudiengangTeil.php:438
-msgid "Es muss die Anzahl der Semester angegeben werden."
-msgstr "The amount of semester must be provided."
-
-#: ../lib/models/StudiengangTeil.php:445
-msgid "Der Titelzusatz ist zu kurz (mindestens 2 Zeichen)."
-msgstr "The title supplement is too short (at least 2 characters)."
-
-#: ../lib/models/HelpTourStep.class.php:70
-msgid "Der Schritt muss einen Titel oder Inhalt besitzen."
-msgstr "The step must have a title or content."
-
-#: ../lib/models/HelpTourStep.class.php:74
-msgid ""
-"Ungültige oder fehlende Angabe zur Seite, für die der Schritt angezeigt "
-"werden soll."
-msgstr ""
-"Invalid or missing information about the site that the step should be "
-"displayed on."
-
-#: ../lib/models/HelpTour.class.php:342
-msgid ""
-"Löschen nicht möglich. Die Tour muss mindestens einen Schritt enthalten."
-msgstr "Deletion impossible. The tour must have at least one step."
-
-#: ../lib/models/HelpTour.class.php:368
-msgid "Die Tour muss einen Namen und eine Beschreibung haben."
-msgstr "The tour must have a name and a description."
-
-#: ../lib/models/HelpTour.class.php:372
-msgid "Ungültige oder fehlende Angabe zur Art der Tour."
-msgstr "Invalid tour type."
-
-#: ../lib/models/HelpTour.class.php:376
-msgid "Angabe des Nutzendenstatus fehlt."
-msgstr "Missing user status."
-
-#: ../lib/models/HelpTour.class.php:383
-msgid "Die Tour muss mindestens einen Schritt enthalten."
-msgstr "The tour must have at least one step."
-
-#: ../lib/models/CourseCancelledEvent.class.php:84
-#: ../app/views/course/timesrooms/_cycleRow.php:52
-msgid "(fällt aus)"
-msgstr "(cancelled)"
-
-#: ../lib/models/ModulteilDeskriptor.php:63
-#: ../lib/models/ModulteilDeskriptor.php:71
-msgid "Modulteil-Deskriptor"
-msgstr "Module component descriptor"
-
-#: ../lib/models/OERHost.php:107
-msgid "Kann von dem Server keine Daten bekommen."
-msgstr ""
-
-#: ../lib/models/Vote.php:15
-msgid "Auswahlfrage"
-msgstr "Selection question"
-
-#: ../lib/models/DatafieldEntryModel.class.php:233
-msgid "Datenfeld Einträge"
-msgstr "Data field entries"
-
-#: ../lib/models/CalendarEvent.class.php:194
-#: ../app/views/calendar/group/_attendees.php:46
-#: ../app/views/calendar/single/_attendees.php:11
-#: ../app/views/calendar/single/_tooltip.php:51
-#: ../app/views/calendar/single/_edit_status.php:6
-msgid "Abwartend"
-msgstr "Waiting"
-
-#: ../lib/models/CalendarEvent.class.php:196
-#: ../app/views/calendar/group/_attendees.php:47
-#: ../app/views/calendar/single/_attendees.php:12
-#: ../app/views/calendar/single/_tooltip.php:52
-#: ../app/views/calendar/single/_edit_status.php:7
-msgid "Angenommen"
-msgstr "Accepted"
-
-#: ../lib/models/CalendarEvent.class.php:198
-#: ../app/views/calendar/group/_attendees.php:48
-#: ../app/views/calendar/single/_attendees.php:13
-#: ../app/views/calendar/single/_tooltip.php:53
-#: ../app/views/calendar/single/_edit_status.php:8
-msgid "Abgelehnt"
-msgstr "Refused"
-
-#: ../lib/models/CalendarEvent.class.php:200
-#: ../app/views/calendar/group/_attendees.php:49
-#: ../app/views/calendar/single/_attendees.php:14
-#: ../app/views/calendar/single/_tooltip.php:54
-#: ../app/views/calendar/single/_edit_status.php:9
-msgid "Angenommen (keine Teilnahme)"
-msgstr "Accepted (no participation)"
-
-#: ../lib/models/CalendarEvent.class.php:481
-#, php-format
-msgid "Der Termin wird alle %s Tage wiederholt."
-msgstr "The date will be repeated every %s days."
-
-#: ../lib/models/CalendarEvent.class.php:485
-msgid "Der Termin wird täglich wiederholt"
-msgstr "The date will be repeated daily"
-
-#: ../lib/models/CalendarEvent.class.php:491
-#, php-format
-msgid "Der Termin wird alle %s Wochen am %s wiederholt."
-msgstr "The date will be repeated every %s weeks on %s."
-
-#: ../lib/models/CalendarEvent.class.php:499
-#, php-format
-msgid "Der Termin wird jeden %s wiederholt."
-msgstr "The date will be repeated every %s."
-
-#: ../lib/models/CalendarEvent.class.php:506
-#, php-format
-msgid "Der Termin wird am %s. alle %s Monate wiederholt."
-msgstr "The date will be repeated on the %s. every %s months."
-
-#: ../lib/models/CalendarEvent.class.php:511
-#, php-format
-msgid "Der Termin wird jeden %s. %s alle %s Monate wiederholt."
-msgstr "The date will be repeated every %s. %s every %s months."
-
-#: ../lib/models/CalendarEvent.class.php:515
-#, php-format
-msgid "Der Termin wird jeden letzten %s alle %s Monate wiederholt."
-msgstr "The date will be repeated on the last %s every %s months."
-
-#: ../lib/models/CalendarEvent.class.php:522
-#, php-format
-msgid "Der Termin wird am %s. jeden Monat wiederholt."
-msgstr "The date will be repeated on the %s. every month."
-
-#: ../lib/models/CalendarEvent.class.php:527
-#, php-format
-msgid "Der Termin wird am %s. %s jeden Monat wiederholt."
-msgstr "The date will be repeated on %s. %s every month."
-
-#: ../lib/models/CalendarEvent.class.php:531
-#, php-format
-msgid "Der Termin wird jeden letzten %s jeden Monat wiederholt."
-msgstr "The date will be repeated on the last %s of each month."
-
-#: ../lib/models/CalendarEvent.class.php:543
-#, php-format
-msgid "Der Termin wird jeden %s. %s wiederholt."
-msgstr "The date will be repeated every %s. %s."
-
-#: ../lib/models/CalendarEvent.class.php:548
-#, php-format
-msgid "Der Termin wird jeden %s. %s im %s wiederholt."
-msgstr "The date will be repeated every %s %s in %s."
-
-#: ../lib/models/CalendarEvent.class.php:552
-#, php-format
-msgid "Der Termin wird jeden letzten %s im %s wiederholt."
-msgstr "The date will be repeated every last %s in %s."
-
-#: ../lib/models/CalendarEvent.class.php:559
-#: ../app/views/calendar/single/edit.php:203
-msgid "Der Termin wird nicht wiederholt."
-msgstr "The date will not be repeated."
-
-#: ../lib/models/CalendarEvent.class.php:578
-#: ../app/views/calendar/single/edit.php:154
-msgid "Hoch"
-msgstr "High"
-
-#: ../lib/models/CalendarEvent.class.php:580
-#: ../app/views/calendar/single/edit.php:154
-msgid "Mittel"
-msgstr "Medium"
-
-#: ../lib/models/CalendarEvent.class.php:582
-#: ../app/views/calendar/single/edit.php:154
-msgid "Niedrig"
-msgstr "Low"
-
-#: ../lib/models/CalendarEvent.class.php:584
-#: ../app/views/module/module/modulteil.php:49
-#: ../app/views/module/module/modulteil.php:56
-#: ../app/views/module/module/modulteil.php:77
-#: ../app/views/module/module/modulteil.php:84
-#: ../app/views/module/module/modulteil.php:101
-#: ../app/views/module/module/modulteil.php:367
-#: ../app/views/admin/api/edit.php:109
-#: ../app/views/calendar/single/edit.php:154
-msgid "Keine Angabe"
-msgstr "No description"
-
-#: ../lib/models/CalendarEvent.class.php:600
-#: ../lib/models/CalendarEvent.class.php:955
-#: ../app/views/admin/datafields/index.php:46
-#: ../app/views/blubber/compose.php:15
-msgid "Öffentlich"
-msgstr "Public"
-
-#: ../lib/models/CalendarEvent.class.php:602
-#: ../lib/models/CalendarEvent.class.php:957
-#: ../lib/models/CalendarEvent.class.php:963
-msgid "Vertraulich"
-msgstr "Confidential"
-
-#: ../lib/models/CalendarEvent.class.php:604
-#: ../lib/models/CalendarEvent.class.php:956
-#: ../lib/models/CalendarEvent.class.php:962
-#: ../app/views/admission/courseset/index.php:32
-msgid "Privat"
-msgstr "Private"
-
-#: ../lib/models/CalendarEvent.class.php:1382
-#: ../lib/classes/AdminModules.class.php:82
-#: ../lib/modules/CoreCalendar.class.php:23
-#: ../lib/modules/CoreCalendar.class.php:37
-#: ../app/views/admin/sem_classes/details.php:218
-#: ../app/views/calendar/single/_select_calendar.php:4
-msgid "Kalender"
-msgstr "Calendar"
-
-#: ../lib/models/ContentTermsOfUse.class.php:107
-msgid "Ohne Bedingung"
-msgstr "Without restriction"
-
-#: ../lib/models/ContentTermsOfUse.class.php:108
-msgid "Nur innerhalb geschlossener Veranstaltungen erlaubt"
-msgstr "Only allowed in closed courses"
-
-#: ../lib/models/ContentTermsOfUse.class.php:109
-msgid "Nur für EigentümerIn erlaubt"
-msgstr "Only allowed for owner"
-
-#: ../lib/models/ContentTermsOfUse.class.php:124
-msgid "Nicht definiert"
-msgstr "Undefined"
-
-#: ../lib/models/ContentTermsOfUse.class.php:153
-#, php-format
-msgid "Es existiert bereits ein Eintrag mit der ID %s!"
-msgstr "An entry with the ID %s already exists!"
-
-#: ../lib/models/ContentTermsOfUse.class.php:158
-msgid "Es wurde kein Name für den Eintrag gesetzt!"
-msgstr "No name has been set for the entry!"
-
-#: ../lib/models/CronjobTask.class.php:135
-#: ../app/views/resources/room_request/planning.php:288
-#: ../app/views/resources/_common/_request_tr.php:47
-#: ../app/views/evaluation/_evaluation.php:54
-msgid "Unbekannt"
-msgstr "Unknown"
-
-#: ../lib/models/CronjobTask.class.php:143
-msgid "fehlerhaft"
-msgstr "defective"
-
-#: ../lib/models/Course.class.php:745
-msgid "Neuer Anmeldemodus: Vorläufiger Eintrag"
-msgstr "New enrolment mode: Preliminary enrolment"
-
-#: ../lib/models/Course.class.php:745
-msgid "Neuer Anmeldemodus: Direkter Eintrag"
-msgstr "New enrolment mode: Direct enrolment"
-
-#: ../lib/models/Course.class.php:749
-msgid "Anmeldung verbindlich"
-msgstr "Binding admission"
-
-#: ../lib/models/Course.class.php:749
-msgid "Anmeldung unverbindlich"
-msgstr "Non-binding admission"
-
-#: ../lib/models/Course.class.php:753
-#, php-format
-msgid "Neue Teilnehmerzahl: %s"
-msgstr "New amount of participants: %s"
-
-#: ../lib/models/Course.class.php:757
-msgid "Warteliste aktiviert"
-msgstr "Wait list activated"
-
-#: ../lib/models/Course.class.php:757
-msgid "Warteliste deaktiviert"
-msgstr "Wait list deactivated"
-
-#: ../lib/models/Course.class.php:761
-#, php-format
-msgid "Plätze auf der Warteliste geändert: %u"
-msgstr "Seats changed on the wait list: %u"
-
-#: ../lib/models/Course.class.php:765
-msgid "Nachrücken aktiviert"
-msgstr "Moving up activated"
-
-#: ../lib/models/Course.class.php:765
-msgid "Nachrücken deaktiviert"
-msgstr "Moving up deactivated"
-
-#: ../lib/models/Course.class.php:770
-#, php-format
-msgid "Neuer Hinweistext bei vorläufigen Eintragungen: %s"
-msgstr "New note for the case of preliminary enrolment: %s"
-
-#: ../lib/models/Course.class.php:772
-msgid "Hinweistext bei vorläufigen Eintragungen wurde entfert"
-msgstr "The note for the case of preliminary enrolment has been removed"
-
-#: ../lib/models/Course.class.php:843
-msgid "Seminare"
-msgstr "Courses"
-
-#: ../lib/models/Modul.php:848
-msgid "Unbekanntes Modul als Vorlage."
-msgstr "Unknown module as template."
-
-#: ../lib/models/Modul.php:854 ../lib/models/Fach.php:681
-msgid "Es muss mindestens eine verantwortliche Einrichtung zugewiesen werden."
-msgstr "At least one responsible institute must be assigned."
-
-#: ../lib/models/Modul.php:886
-msgid "Der Modulcode ist zu kurz (mindestens 3 Zeichen)."
-msgstr "The module code is too short (at least 3 characters)."
-
-#: ../lib/models/Modul.php:894
-#, php-format
-msgid "Es existiert bereits ein Modul mit dem Code \"%s\"!"
-msgstr "A module with the code \"%s\" already exists!"
-
-#: ../lib/models/Modul.php:902
-msgid "Die Dauer (in Semestern) des Moduls muss angegeben werden."
-msgstr "The duration (in semesters) of the module must be provided."
-
-#: ../lib/models/Modul.php:908
-msgid "Die Kapazität/Teilnehmendenzahl des Moduls muss angegeben werden."
-msgstr "The capacity / number of participants of the module must be specified."
-
-#: ../lib/models/Modul.php:913
-msgid "Die Kreditpunkte müssen angegeben werden."
-msgstr "Credit points must be provided."
-
-#: ../lib/models/Modul.php:918
-msgid "Der Notenfaktor für die Endnote des Studiengangs muss angegeben werden."
-msgstr ""
-"The share for the final degree of the course of study has to be specified."
-
-#: ../lib/models/MvvFile.php:331
-msgid "Dokument suchen"
-msgstr "Search document"
-
-#: ../lib/models/StudycourseType.php:45
-msgid "Unbekannter Studiengangstyp"
-msgstr "Unknown course of study type"
-
-#: ../lib/models/LvgruppeSeminar.php:42 ../lib/models/LvgruppeSeminar.php:50
-msgid "Zuordnung Veranstaltung zu Lehrveranstaltungsgruppe"
-msgstr "Assignment of course to course group"
-
-#: ../lib/models/Lvgruppe.php:69 ../lib/models/Lvgruppe.php:77
-#: ../app/views/lvgruppen/lvgruppen/lvgruppe.php:7
-msgid "Lehrveranstaltungsgruppe"
-msgstr "Course group"
-
-#: ../lib/models/Lvgruppe.php:599
-msgid ""
-"Der Name der Lehrveranstaltungsgruppe ist zu kurz (mindestens 4 Zeichen)."
-msgstr "The name of the course group is too short (at least 4 characters)."
-
-#: ../lib/models/Lvgruppe.php:607
-#, php-format
-msgid ""
-"Es existiert bereits eine Lehrveranstaltungsgruppe mit dem Namen \"%s\"!"
-msgstr "A course group with the name \"%s\" already exists!"
-
-#: ../lib/models/SeminarCycleDate.class.php:185
-#, php-format
-msgid "%s, ab der %s. Semesterwoche"
-msgstr "%s, starting in the %s. semester week"
-
-#: ../lib/models/SeminarCycleDate.class.php:192
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:947
-#: ../templates/dates/seminar_xml.php:3
-#: ../templates/dates/seminar_export.php:20
-#: ../app/views/consultation/admin/create.php:12
-msgid "wöchentlich"
-msgstr "weekly"
-
-#: ../lib/models/SeminarCycleDate.class.php:192
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:947
-#: ../templates/dates/seminar_xml.php:4
-#: ../app/views/consultation/admin/create.php:13
-msgid "zweiwöchentlich"
-msgstr "fortnightly"
-
-#: ../lib/models/SeminarCycleDate.class.php:192
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:947
-#: ../templates/dates/seminar_xml.php:5
-#: ../app/views/consultation/admin/create.php:14
-msgid "dreiwöchentlich"
-msgstr "every third week"
-
-#: ../lib/models/FeedbackElement.php:137
-msgid ","
-msgstr ","
-
-#: ../lib/models/Fach.php:89 ../lib/models/Fach.php:528
-#: ../app/controllers/studiengaenge/versionen.php:89
-#: ../app/controllers/studiengaenge/versionen.php:128
-#: ../app/views/shared/studiengang/_studiengangteil.php:11
-#: ../app/views/fachabschluss/faecher/index.php:10
-#: ../app/views/settings/studies/studiengang.php:18
-#: ../app/views/settings/studies/studiengang.php:45
-#: ../app/views/admin/user/index.php:115
-#: ../app/views/studiengaenge/informationen/index.php:9
-#: ../app/views/studiengaenge/faecher/index.php:10
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:10
-#: ../app/views/studiengaenge/studiengangteile/index.php:11
-msgid "Fach"
-msgstr "Subject"
-
-#: ../lib/models/Fach.php:687
-msgid "Der Name des Faches ist zu kurz (mindestens 4 Zeichen)."
-msgstr "The field of study's name is too short (at least 4 characters)."
-
-#: ../lib/models/Fach.php:695
-#, php-format
-msgid "Es existiert bereits ein Fach mit dem Namen \"%s\"!"
-msgstr "A field of study with the name \"%s\" already exists!"
-
-#: ../lib/models/Fach.php:774
-msgid "Fächer/Studiengänge"
-msgstr "Field of study / course of study"
-
-#: ../lib/models/MvvContact.php:437
-msgid "Interne Person"
-msgstr "Internal person"
-
-#: ../lib/models/MvvContact.php:438
-msgid "Externe Person"
-msgstr "External person"
-
-#: ../lib/resources/ResourceManager.class.php:68
-msgid "Es wurde kein Name für die neue Ressourcenkategorie angegeben!"
-msgstr "No name was provided for the new resource category!"
-
-#: ../lib/resources/ResourceManager.class.php:131
-#, php-format
-msgid "Die Ressourcenkategorie %s konnte nicht gespeichert werden!"
-msgstr "The resource category %s could not be saved!"
-
-#: ../lib/resources/ResourceManager.class.php:545
-msgid ""
-"Die Positionsangabe kann nicht umgewandelt werden, da die angegebene "
-"Ressourceneigenschaft verwaist (ohne zugehörige Definition) ist!"
-msgstr ""
-"The position data cannot be converted since the specified resource property "
-"is orphaned (without a definition)!"
-
-#: ../lib/resources/ResourceManager.class.php:552
-msgid ""
-"Die Positionsangabe kann nicht umgewandelt werden, da die angegebene "
-"Ressourceneigenschaft nicht vom Typ 'position' ist!"
-msgstr ""
-"The posision data cannot be converted since the specified resource property "
-"is not a 'position' property!"
-
-#: ../lib/resources/ResourceManager.class.php:573
-msgid ""
-"Die Positionsangabe kann nicht umgewandelt werden, da sie ungültige Daten "
-"enthält!"
-msgstr "The posision data cannot be converted since it contains invalid data!"
-
-#: ../lib/resources/ResourceManager.class.php:653
-msgid "Unzureichende Berechtigungen zum globalen Sperren der Raumverwaltung!"
-msgstr "Insufficient permissions to globally lock the room management system!"
-
-#: ../lib/resources/ResourceManager.class.php:660
-#, php-format
-msgid ""
-"Im Zeitbereich vom %1$s bis %2$s gibt es bereits eine globale Sperrung der "
-"Raumverwaltung!"
-msgstr ""
-"A global lock of the room management system already exists in the period "
-"from %1$s to %2$s!"
-
-#: ../lib/resources/ResourceManager.class.php:675
-#, php-format
-msgid ""
-"Fehler beim Speichern der globalen Sperre der Raumverwaltung im Zeitbereich "
-"vom %1$s bis %2$s!"
-msgstr ""
-"Error while saving the global lock of the room management system in the "
-"period from %1$s to %2$s!"
-
-#: ../lib/resources/ResourceManager.class.php:698
-msgid ""
-"Die Positionsangabe kann nicht formatiert werden, da die angegebene "
-"Ressourceneigenschaft verwaist (ohne zugehörige Definition) ist!"
-msgstr ""
-"The position data cannot be formatted since the specified resource property "
-"is orphaned (without a definition)!"
-
-#: ../lib/resources/ResourceManager.class.php:703
-msgid ""
-"Die Positionsangabe kann nicht formatiert werden, da die angegebene "
-"Ressourceneigenschaft nicht vom Typ \"position\" ist!"
-msgstr ""
-"The posision data cannot be converted since the specified resource property "
-"is not a 'position' property!"
-
-#: ../lib/resources/ResourceManager.class.php:714
-#, php-format
-msgid "%s°S"
-msgstr "%s°S"
-
-#: ../lib/resources/ResourceManager.class.php:724
-#, php-format
-msgid "%s°N"
-msgstr "%s°N"
-
-#: ../lib/resources/ResourceManager.class.php:736
-#, php-format
-msgid "%s°O"
-msgstr "%s°E"
-
-#: ../lib/resources/ResourceManager.class.php:746
-#, php-format
-msgid "%s°W"
-msgstr "%s°W"
-
-#: ../lib/resources/ResourceManager.class.php:760
-#, php-format
-msgid "%s m unter NHN"
-msgstr "%s m below sea level"
-
-#: ../lib/resources/ResourceManager.class.php:770
-#, php-format
-msgid "%s m über NHN"
-msgstr "%s m above sea level"
-
-#: ../lib/resources/ResourceManager.class.php:795
-msgid ""
-"Eine URL zur Straßenkarte kann nicht erzeugt werden, da die angegebene "
-"Ressourceneigenschaft verwaist (ohne zugehörige Definition) ist!"
-msgstr ""
-"An URL to the street map cannot be created since the specified resource "
-"property is orphaned (without a definition)!"
-
-#: ../lib/resources/ResourceManager.class.php:800
-msgid ""
-"Eine URL zur Straßenkarte kann nicht erzeugt werden, da die angegebene "
-"Ressourceneigenschaft nicht vom Typ 'position' ist!"
-msgstr ""
-"An URL to the street map cannot be created since the specified resource "
-"property is not a 'position' property!"
-
-#: ../lib/resources/ResourceManager.class.php:1025
-msgid "Mindestens eine Rechtestufe fehlt zum Vergleich!"
-msgstr "At least one permission level is missing for the comparison!"
-
-#: ../lib/resources/ResourceManager.class.php:1037
-#: ../lib/resources/ResourceManager.class.php:1042
-#: ../app/controllers/resources/property.php:78
-#: ../app/controllers/resources/property.php:157
-msgid "Die angegebene Rechtestufe ist ungültig!"
-msgstr "The specified permission level is invalid!"
-
-#: ../lib/resources/RoomManager.class.php:324
-#, php-format
-msgid "Ihre Raumanfrage für den Raum %1$s wurde von %2$s aufgelöst"
-msgstr "Your room request for the room %1$s has been resolved by %2$s"
-
-#: ../lib/resources/RoomManager.class.php:329
-#, php-format
-msgid "Ihre Raumanfrage für den Raum %1$s wurde von %2$s aufgelöst."
-msgstr "Your room request for the room %1$s has been resolved by %2$s."
-
-#: ../lib/resources/RoomManager.class.php:352
-#, php-format
-msgid ""
-"Für die Veranstaltung %1$s wurden Raumbuchungen für die folgenden Termine "
-"erstellt:"
-msgstr ""
-"Room bookings have been created for the following dates of the course %1$s:"
-
-#: ../lib/resources/RoomManager.class.php:359
-#, php-format
-msgid "Am %1$s von %2$s Uhr bis %3$s Uhr"
-msgstr "On %1$s from %2$s until %3$s"
-
-#: ../lib/resources/RoomManager.class.php:371
-#, php-format
-msgid "Auflösung einer Raumanfrage in Veranstaltung %s"
-msgstr "Resolving a room request in course %s"
-
-#: ../lib/dbviews/sem_tree.view.php:51 ../lib/dbviews/sem_tree.view.php:54
-#: ../lib/dbviews/sem_tree.view.php:61 ../lib/dbviews/sem_tree.view.php:90
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:1131
-#: ../lib/classes/SemBrowse.class.php:697 ../lib/functions.php:819
-#: ../lib/functions.php:852 ../lib/functions.php:887 ../lib/functions.php:943
-#: ../lib/functions.php:980 ../app/views/settings/notification.php:73
-#: ../app/views/admin/courses/_course.php:58
-#: ../app/views/my_courses/groups.php:37
-msgid "(versteckt)"
-msgstr "(hidden)"
-
-#: ../lib/admission.inc.php:175
-#, php-format
-msgid ""
-"Sie sind in der Warteliste der Veranstaltung **%s (%s)** hochgestuft worden. "
-"Sie stehen zur Zeit auf Position %s."
-msgstr ""
-"You have been promoted within the waiting list for the course **%s(%s)**. At "
-"present you are at position %s."
-
-#: ../lib/admission.inc.php:179
-#, php-format
-msgid "Ihre Position auf der Warteliste der Veranstaltung %s wurde verändert"
-msgstr "Your position on the waiting list of course %s has been changed"
-
-#: ../lib/admission.inc.php:284
-#, php-format
-msgid ""
-"Sie sind in die Veranstaltung **%s (%s)** eingetragen worden, da für Sie ein "
-"Platz frei geworden ist. Ab sofort finden Sie die Veranstaltung in der "
-"Übersicht Ihrer Veranstaltungen. Damit sind Sie auch für die "
-"Präsenzveranstaltung zugelassen."
-msgstr ""
-"You have been accepted for the course **%s (%s)**. It has been added to \"My "
-"Courses\" on your start page."
-
-#: ../lib/admission.inc.php:286
-#, php-format
-msgid ""
-"Sie haben den Status vorläufig akzeptiert in der Veranstaltung **%s (%s)** "
-"erhalten, da für Sie ein Platz freigeworden ist."
-msgstr ""
-"You have provisionally been accepted for the course **%s (%s)**, because a "
-"place became available."
-
-#: ../lib/admission.inc.php:288
-#: ../lib/classes/admission/RandomAlgorithm.class.php:317
-#: ../lib/classes/admission/RandomAlgorithm.class.php:356
-#: ../lib/classes/admission/RandomAlgorithm.class.php:382
-#, php-format
-msgid "Teilnahme an der Veranstaltung %s"
-msgstr "Participation in course %s"
-
-#: ../lib/meine_seminare_func.inc.php:35
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:85
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:79
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:76
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:1390
-#: ../lib/classes/SemBrowse.class.php:444
-#: ../lib/classes/SemBrowse.class.php:581
-msgid "keine Studienbereiche eingetragen"
-msgstr "no fields of study entered"
-
-#: ../lib/meine_seminare_func.inc.php:45
-msgid "keine Gruppierung"
-msgstr "no grouping"
-
-#: ../lib/meine_seminare_func.inc.php:49 ../app/controllers/my_courses.php:163
-#: ../app/views/course/statusgroups/create_groups.php:56
-#: ../app/views/my_courses/_group.php:19 ../app/views/event_log/show.php:13
-msgid "Gruppe"
-msgstr "Group"
-
-#: ../lib/meine_seminare_func.inc.php:311
-#, php-format
-msgid "%s Dokumente, %s neue"
-msgstr "%s documents, %s new"
-
-#: ../lib/meine_seminare_func.inc.php:315
-#: ../app/controllers/public_courses.php:119
-#, php-format
-msgid "%s Dokumente"
-msgstr "%s documents"
-
-#: ../lib/meine_seminare_func.inc.php:348
-#, php-format
-msgid "%s Ankündigungen, %s neue"
-msgstr "%s announcements, %s new"
-
-#: ../lib/meine_seminare_func.inc.php:351
-#: ../app/controllers/public_courses.php:134
-#, php-format
-msgid "%s Ankündigungen"
-msgstr "%s announcements"
-
-#: ../lib/meine_seminare_func.inc.php:378 ../lib/modules/CoreScm.class.php:54
-msgid " (geändert)"
-msgstr " (changed)"
-
-#: ../lib/meine_seminare_func.inc.php:380
-#, php-format
-msgid "%s Einträge, %s neue"
-msgstr "%s entries, %s new"
-
-#: ../lib/meine_seminare_func.inc.php:388
-#: ../app/controllers/public_courses.php:147
-#, php-format
-msgid "%s Einträge"
-msgstr "%s entries"
-
-#: ../lib/meine_seminare_func.inc.php:425
-#, php-format
-msgid "%s Termine, %s neue"
-msgstr "%s dates, %s new"
-
-#: ../lib/meine_seminare_func.inc.php:428
-#: ../app/controllers/public_courses.php:160
-#, php-format
-msgid "%s Termine"
-msgstr "%s dates"
-
-#: ../lib/meine_seminare_func.inc.php:451
-#, php-format
-msgid "%s WikiSeiten, %s Änderungen"
-msgstr "%s wiki pages, %s changes"
-
-#: ../lib/meine_seminare_func.inc.php:455
-#: ../app/controllers/public_courses.php:174
-#, php-format
-msgid "%s WikiSeiten"
-msgstr "%s wiki pages"
-
-#: ../lib/meine_seminare_func.inc.php:480
-#, php-format
-msgid "%s Lernmodule, %s neue"
-msgstr "%s learning modules, %s new"
-
-#: ../lib/meine_seminare_func.inc.php:483
-#, php-format
-msgid "%s Lernmodule"
-msgstr "%s Learning modules"
-
-#: ../lib/meine_seminare_func.inc.php:548
-#, php-format
-msgid "%s Fragebögen, %s neue"
-msgstr "%s questionnaires, %s new"
-
-#: ../lib/meine_seminare_func.inc.php:551
-#, php-format
-msgid "%s Fragebögen"
-msgstr "%s questionnaires"
-
-#: ../lib/meine_seminare_func.inc.php:612
-#, php-format
-msgid "%s Teilnehmende, %s neue"
-msgstr "%s participants, %s new"
-
-#: ../lib/meine_seminare_func.inc.php:615
-#, php-format
-msgid "%s Teilnehmende"
-msgstr "%s participants"
-
-#: ../lib/extern/elements/ExternElementSelectSubjectAreas.class.php:56
-msgid "Auswahl der anzuzeigenden Studienbereiche"
-msgstr "Selection of fields of study to be displayed"
-
-#: ../lib/extern/elements/ExternElementSelectSubjectAreas.class.php:57
-msgid ""
-"Sie können hier die Studienbereiche auswählen, die auf der externen Seite "
-"ausgegeben werden sollen."
-msgstr "Select the fields of study to be exported to external pages."
-
-#: ../lib/extern/elements/ExternElementSelectSubjectAreas.class.php:88
-msgid "Alle Studienbereiche anzeigen"
-msgstr "Display all study areas"
-
-#: ../lib/extern/elements/ExternElementSelectSubjectAreas.class.php:89
-msgid ""
-"Wählen Sie diese Option, wenn alle Veranstaltungen aus allen "
-"Studienbereichen angezeigt werden sollen - unabhängig von unten "
-"vorgenommener Auswahl."
-msgstr ""
-"With this option, all the courses from all the fields of study will be "
-"displayed, independently of the selection made below."
-
-#: ../lib/extern/elements/ExternElementSelectSubjectAreas.class.php:95
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:661
-#: ../app/views/admission/courseset/_institute_choose.php:44
-msgid "Auswahl umkehren"
-msgstr "Toggle selection"
-
-#: ../lib/extern/elements/ExternElementSelectSubjectAreas.class.php:96
-msgid ""
-"Wählen Sie diese Option, wenn Veranstaltungen aus den ausgewählten Bereichen "
-"nicht angezeigt werden sollen."
-msgstr "With this option, courses in the selected areas will not be displayed."
-
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:56
-#: ../lib/extern/elements/ExternElementLink.class.php:55
-#: ../lib/extern/elements/ExternElementLinkInternTemplate.class.php:58
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:61
-#: ../lib/extern/modules/ExternModuleGlobal.class.php:80
-#: ../config/config.inc.php:251 ../config/config_develop.inc.php:300
-#: ../app/controllers/course/dates.php:121
-#: ../app/views/module/module/modul.php:511 ../app/views/admin/lti/index.php:20
-msgid "Links"
-msgstr "Links"
-
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:57
-#: ../lib/extern/elements/ExternElementLink.class.php:56
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:62
-msgid "Eigenschaften der Schrift für Links."
-msgstr "Properties of link font."
-
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:77
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:63
-msgid "Schriftformatierung"
-msgstr "Font formatting"
-
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:78
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:63
-msgid "Linkformatierung"
-msgstr "Link formatting"
-
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:94
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:64
-msgid "Verlinkung zum Modul"
-msgstr "Link to module"
-
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:96
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:93
-msgid ""
-"Der Link ruft das Modul mit der gewählten Konfiguration auf. Wählen Sie "
-"\"Standard\", um die von Ihnen gesetzte Standardkonfiguration zu benutzen. "
-"Ist für das aufgerufene Modul noch keine Konfiguration erstellt worden, wird "
-"die Stud.IP-Default-Konfiguration verwendet."
-msgstr ""
-"The link calls the module with the selected configuration. Select \"Default"
-"\" to use your default configuration. If no configuration has been created "
-"for the selected module, the Stud.IP default configuration will be taken."
-
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:105
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:107
-msgid "Standardkonfiguration"
-msgstr "Default configuration"
-
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:118
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:110
-msgid "SRI-Link"
-msgstr "SRI link"
-
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:119
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:111
-msgid ""
-"Wenn Sie die SRI-Schnittstelle benutzen, müssen Sie hier die vollständige "
-"URL (mit http://) der Seite angeben, in der das Modul, das durch den Link "
-"aufgerufen wird, eingebunden ist. Lassen Sie dieses Feld unbedingt leer, "
-"falls Sie die SRI-Schnittstelle nicht nutzen."
-msgstr ""
-"If you use the SRI interface, then you must enter the complete URL of the "
-"page (including http://) where the module is incorporated. Leave the field "
-"blank if you do not use the SRI interface."
-
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:122
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:114
-msgid "Extern-Link"
-msgstr "Extern link"
-
-#: ../lib/extern/elements/ExternElementLinkIntern.class.php:123
-#: ../lib/extern/elements/ExternElementLinkInternSimple.class.php:115
-msgid ""
-"Wenn Sie die SRI-Schnittstelle nicht benutzen, können Sie hier die "
-"vollständige URL (mit http://) der Seite angeben, in der das Modul, das "
-"durch den Link aufgerufen wird, eingebunden wird. Lassen Sie dieses Feld "
-"unbedingt leer, falls Sie die SRI-Schnittstelle nutzen."
-msgstr ""
-"If you do not use the SRI interface, then enter the complete URL (including "
-"http://) of the page incorporating the module called by the link. If you use "
-"the SRI interface, then you must leave this field empty."
-
-#: ../lib/extern/elements/ExternElementReplaceTextSemType.class.php:57
-msgid "Textersetzungen für Veranstaltungstypen"
-msgstr "Text replacements for course types"
-
-#: ../lib/extern/elements/ExternElementReplaceTextSemType.class.php:58
-msgid "Ersetzt die Bezeichnung der Veranstaltungstypen."
-msgstr "Replace descriptions of course types."
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:63
-msgid "Seitenkopf/Bild"
-msgstr "Page header/picture"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:64
-msgid "Angaben zur Gestaltung des Seitenkopfes."
-msgstr "Information about the configuration of the page header."
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:95
-msgid "Allgemeine Angaben zum Element Seitenkopf/Bild"
-msgstr "General information about the element page header/picture"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:97
-msgid "Überschrift (Name) ausblenden"
-msgstr "Hide heading (name)"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:98
-msgid "Unterdrückt die Anzeige des Namens als Überschrift."
-msgstr "Do not display name as header."
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:112
-msgid "Tabelle Seitenkopf/Bild (HTML-Tag &lt;table&gt;)"
-msgstr "Table page header/picture (HTML-Tag &lt;table&gt;)"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:113
-msgid "Tabellenzeile Name (HTML-Tag &lt;tr&gt;)"
-msgstr "Table row name (HTML-Tag &lt;tr&gt;)"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:114
-msgid "Tabellenzelle Name (HTML-Tag &lt;td&gt;)"
-msgstr "Table cell name (HTML-Tag &lt;tr&gt;)"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:115
-msgid "Schriftformatierung Name (HTML-Tag &lt;font&gt;)"
-msgstr "Font formatting of names (HTML-Tag &lt;font&gt;)"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:116
-msgid "Tabellenzelle Bild (HTML-Tag &lt;td&gt;)"
-msgstr "Table cell picture (HTML-Tag &lt;tr&gt;)"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:117
-msgid "Tabellenzelle Kontakt (HTML-Tag &lt;td&gt;)"
-msgstr "Table cell contact (HTML-Tag &lt;td&gt;)"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:123
-msgid "Ausrichtung"
-msgstr "Orientation"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:124
-msgid "Ausrichtung des Bildes."
-msgstr "Picture alignment."
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:125
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:106
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:112
-#: ../lib/extern/views/ExternEditHtml.class.php:441
-#: ../lib/extern/views/ExternEditHtml.class.php:479
-msgid "zentriert"
-msgstr "centred"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:125
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:106
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:112
-#: ../lib/extern/views/ExternEditHtml.class.php:439
-msgid "linksbündig"
-msgstr "left aligned"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:125
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:106
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:112
-#: ../lib/extern/views/ExternEditHtml.class.php:440
-msgid "rechtsbündig"
-msgstr "right aligned"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:126
-#: ../lib/extern/views/ExternEditHtml.class.php:477
-msgid "obenbündig"
-msgstr "top-justified"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:126
-#: ../lib/extern/views/ExternEditHtml.class.php:478
-msgid "untenbündig"
-msgstr "bottom-justified"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:130
-msgid "Rahmenbreite"
-msgstr "Border width"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:131
-msgid "Breite des Bildrahmens."
-msgstr "Width of picture border."
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:134
-#: ../lib/extern/views/ExternEditModule.class.php:78
-msgid "Breite"
-msgstr "Width"
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:135
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:139
-msgid "Breite des Bildes."
-msgstr "Picture width."
-
-#: ../lib/extern/elements/ExternElementPersondetailsHeader.class.php:138
-msgid "Höhe"
-msgstr "Height"
-
-#: ../lib/extern/elements/ExternElementTableRowTwoColumns.class.php:58
-msgid "Zeile mit zwei Spalten"
-msgstr "Row with two columns"
-
-#: ../lib/extern/elements/ExternElementTableRowTwoColumns.class.php:59
-msgid "Angaben zur Formatierung einer Tabellenzeile mit zwei Spalten."
-msgstr "Information about formatting of a table row with two columns."
-
-#: ../lib/extern/elements/ExternElementTableRowTwoColumns.class.php:61
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:61
-msgid "Angaben zum HTML-Tag &lt;tr&gt;"
-msgstr "Information about HTML tag &lt;tr&gt;"
-
-#: ../lib/extern/elements/ExternElementTableRowTwoColumns.class.php:61
-msgid "Linke Spalte &lt;td&gt;"
-msgstr "Left column &lt;td&gt;"
-
-#: ../lib/extern/elements/ExternElementTableRowTwoColumns.class.php:62
-msgid "Linke Spalte &lt;font&gt;"
-msgstr "Left column &lt;font&gt;"
-
-#: ../lib/extern/elements/ExternElementTableRowTwoColumns.class.php:62
-msgid "Rechte Spalte &lt;td&gt;"
-msgstr "Right column &lt;td&gt;"
-
-#: ../lib/extern/elements/ExternElementTableRowTwoColumns.class.php:63
-msgid "Rechte Spalte &lt;font&gt;"
-msgstr "Right column &lt;font&gt;"
-
-#: ../lib/extern/elements/ExternElementTableRowTwoColumns.class.php:87
-msgid "Spaltenbreite"
-msgstr "Column width"
-
-#: ../lib/extern/elements/ExternElementTableRowTwoColumns.class.php:88
-msgid "Breite der Spalte in Prozent."
-msgstr "Column width in percent."
-
-#: ../lib/extern/elements/ExternElementContact.class.php:58
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:77
-msgid "Name, Anschrift, Kontakt"
-msgstr "Name, address, contact"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:59
-msgid ""
-"Allgemeine Angaben zum und Formatierung des Kontaktfeldes (Anschrift, E-"
-"Mail, Homepage usw.)."
-msgstr ""
-"Generic information to the and formatting of the contact field (address, E-"
-"Mail, homepage etc.)."
-
-#: ../lib/extern/elements/ExternElementContact.class.php:67
-#: ../lib/extern/elements/ExternElementContact.class.php:97
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:71
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:65
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:86
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:62
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:69
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:73
-#: ../lib/extern/modules/ExternModulePersons.class.php:59
-#: ../app/controllers/shared/contacts.php:836
-#: ../app/controllers/institute/members.php:119
-#: ../app/views/shared/contacts/add_ansprechpartner.php:97
-#: ../app/views/profile/working_place.php:5
-#: ../app/views/settings/statusgruppen/modify_institute.php:39
-#: ../app/views/admin/user/edit_institute.php:31
-#: ../app/views/institute/overview/index.php:18
-msgid "Telefon"
-msgstr "Telephone"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:67
-#: ../lib/extern/elements/ExternElementContact.class.php:97
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:66
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:86
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:70
-#: ../lib/classes/RangeTreeObjectInst.class.php:48
-#: ../lib/classes/RangeTreeObjectFak.class.php:49
-#: ../app/views/profile/working_place.php:6
-#: ../app/views/settings/statusgruppen/modify_institute.php:45
-#: ../app/views/admin/user/edit_institute.php:35
-#: ../app/views/institute/overview/index.php:23
-msgid "Fax"
-msgstr "Fax"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:68
-#: ../lib/extern/elements/ExternElementContact.class.php:97
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:66
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:86
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:72
-#: ../lib/classes/RangeTreeObjectInst.class.php:49
-#: ../lib/classes/RangeTreeObjectFak.class.php:50
-#: ../lib/classes/LockRules.class.php:221
-#: ../lib/classes/LockRules.class.php:236
-#: ../app/controllers/shared/contacts.php:830
-#: ../app/controllers/institute/members.php:121
-#: ../app/views/shared/contacts/add_ansprechpartner.php:89
-#: ../app/views/profile/index.php:42 ../app/views/settings/details.php:44
-#: ../app/views/institute/overview/index.php:28
-#: ../app/views/institute/basicdata/index.php:91
-msgid "Homepage"
-msgstr "Homepage"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:68
-#: ../lib/extern/elements/ExternElementContact.class.php:97
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:71
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:65
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:73
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:76
-#: ../lib/extern/modules/ExternModulePersons.class.php:62
-#: ../app/controllers/institute/members.php:118
-#: ../app/views/admin/user/edit_institute.php:27
-msgid "Sprechzeiten"
-msgstr "Office hours"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:69
-#: ../lib/classes/RangeTreeObjectInst.class.php:49
-#: ../lib/classes/RangeTreeObjectFak.class.php:50
-#: ../app/views/admin/api/index.php:10
-msgid "Kontakt"
-msgstr "Contact"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:96
-msgid "Aufbau der Adress- und Kontakt-Tabelle"
-msgstr "Structure of address and contact table"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:100
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:96
-#: ../lib/extern/views/ExternEditModule.class.php:76
-#: ../lib/extern/views/ExternEditModule.class.php:343
-#: ../app/views/news/admin_news.php:87 ../app/views/tour/admin_overview.php:38
-#: ../app/views/tour/admin_details.php:131
-msgid "Überschrift"
-msgstr "Header"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:101
-msgid "Überschrift der Kontakt-Daten"
-msgstr "Heading of contact details"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:104
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:166
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:164
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:139
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:131
-#: ../app/views/settings/statusgruppen/modify_institute.php:71
-#: ../app/views/admin/user/edit_institute.php:40
-msgid "Standard-Adresse"
-msgstr "Default address"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:105
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:167
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:165
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:140
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:132
-msgid ""
-"Wenn Sie diese Option wählen, wird die Standard-Adresse ausgegeben, die "
-"jede(r) Mitarbeiter(in) bei seinen universitären Daten auswählen kann. "
-"Wählen Sie diese Option nicht, wenn immer die Adresse der Einrichtung "
-"ausgegeben werden soll."
-msgstr ""
-"If you select this option, then the default address each person may select "
-"for university details will be exported. Do not select this option if the "
-"institute's address always is to be exported. "
-
-#: ../lib/extern/elements/ExternElementContact.class.php:108
-msgid "Personenname ausblenden"
-msgstr "Hide person name"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:109
-msgid "Unterdrückt die Anzeige des Namens im Adressfeld."
-msgstr "Do not display the name in the address field."
-
-#: ../lib/extern/elements/ExternElementContact.class.php:112
-msgid "Funktionen anzeigen"
-msgstr "Show functions"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:113
-msgid ""
-"Ausgabe der Funktionen der Mitarbeiterin/des Mitarbeiters in der Einrichtung."
-msgstr "View person's function within institute."
-
-#: ../lib/extern/elements/ExternElementContact.class.php:116
-msgid "Einrichtungsname"
-msgstr "Institute name"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:117
-msgid ""
-"Anzeige des Einrichtungsnamens. Der Name kann auch als Link auf die in Stud."
-"IP angegebene URL (unter Grunddaten der Einrichtung) angezeigt werden."
-msgstr ""
-"Display institute's name. This name can be viewed as link to the URL (basic "
-"details of the institute) as entered in Stud.IP."
-
-#: ../lib/extern/elements/ExternElementContact.class.php:119
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:138
-#: ../app/controllers/admin/banner.php:49
-msgid "nicht anzeigen"
-msgstr "do not display"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:119
-#: ../lib/wiki.inc.php:1366
-msgid "anzeigen"
-msgstr "display"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:119
-msgid "als Link anzeigen"
-msgstr "display as link "
-
-#: ../lib/extern/elements/ExternElementContact.class.php:122
-msgid "E-Mail und Hompage getrennt"
-msgstr "E-Mail and homepage separated"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:123
-msgid ""
-"Sinnvoll ist diese Option bei sehr langen E-Mail-Adressen und Homepage-Links "
-"der Mitarbeiter. Diese werden dann unterhalb des Adressfeldes ausgegeben."
-msgstr ""
-"This option is useful in case of very long e-mail addresses and links to "
-"person's homepages. The output will be displayed below the address field."
-
-#: ../lib/extern/elements/ExternElementContact.class.php:126
-msgid "Adresszusatz"
-msgstr "Address supplement"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:127
-msgid "Zusatz zur Adresse der Einrichtung, z.B. Universitätsname."
-msgstr "Additional address details of the institute, e.g. university name."
-
-#: ../lib/extern/elements/ExternElementContact.class.php:143
-msgid "Schriftformatierung der Überschrift"
-msgstr "Font formatting of headers"
-
-#: ../lib/extern/elements/ExternElementContact.class.php:144
-msgid "Schriftformatierung des Inhalts"
-msgstr "Font formatting of content"
-
-#: ../lib/extern/elements/ExternElementContentNews.class.php:57
-msgid "Überschrift und Beschreibung der News"
-msgstr "Announcement heading and description"
-
-#: ../lib/extern/elements/ExternElementContentNews.class.php:58
-msgid "Eigenschaften der Überschrift und der Beschreibung einer News."
-msgstr "Properties of announcement heading and description."
-
-#: ../lib/extern/elements/ExternElementContentNews.class.php:76
-msgid "Schriftformatierung News-Titel (HTML-Tag &lt;font&gt;)"
-msgstr "Font formatting of announcement title (HTML tag &lt;font&gt;)"
-
-#: ../lib/extern/elements/ExternElementContentNews.class.php:77
-msgid "Ausrichtung News-Titel (HTML-Tag &lt;div&gt;)"
-msgstr "Arrangement of announcement title (HTML tag &lt;div&gt;)"
-
-#: ../lib/extern/elements/ExternElementContentNews.class.php:78
-msgid "Schriftformatierung News-Beschreibung (HTML-Tag &lt;font&gt;)"
-msgstr "Font formatting of announcement description (HTML tag &lt;font&gt;)"
-
-#: ../lib/extern/elements/ExternElementContentNews.class.php:79
-msgid "Ausrichtung News-Beschreibung (HTML-Tag &lt;div&gt;)"
-msgstr "Alignment of announcement description (HTML tag &lt;div&gt;)"
-
-#: ../lib/extern/elements/ExternElementContentNews.class.php:83
-#: ../lib/extern/elements/main/ExternElementMainSemlecturetree.class.php:97
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:139
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:249
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:151
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:127
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:237
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:208
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:149
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:132
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:258
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:98
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:120
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:130
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:100
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:132
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:99
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:126
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:99
-#: ../lib/extern/elements/main/ExternElementMainRangelecturetree.class.php:96
-#: ../lib/extern/elements/ExternElementStudipLink.class.php:92
-#: ../app/views/module/module/modulteil.php:433
-#: ../app/views/module/module/modul.php:633
-#: ../app/views/studiengaenge/versionen/modul_zuordnung.php:16
-msgid "Weitere Angaben"
-msgstr "Further information"
-
-#: ../lib/extern/elements/ExternElementTreeBackLink.class.php:58
-msgid "Link auf übergeordnete Ebene"
-msgstr "Link to higher level"
-
-#: ../lib/extern/elements/ExternElementTreeBackLink.class.php:59
-msgid ""
-"Formatierung des Link auf die übergeordnete Ebene in einer Baum-Navigation."
-msgstr "Formatting of the link to higher level in a tree navigation."
-
-#: ../lib/extern/elements/ExternElementTreeBackLink.class.php:75
-#: ../lib/extern/elements/ExternElementTreePath.class.php:72
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:98
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:96
-msgid "Allgemeine Angaben"
-msgstr "General information"
-
-#: ../lib/extern/elements/ExternElementTreeBackLink.class.php:76
-msgid "Link-Text"
-msgstr "Link text"
-
-#: ../lib/extern/elements/ExternElementTreeBackLink.class.php:77
-msgid ""
-"Geben Sie den Text ein, der auf die übergeordnete Ebene verweist (Link "
-"zurück)."
-msgstr "Enter the text which refers to higher level (link back)."
-
-#: ../lib/extern/elements/ExternElementTreeBackLink.class.php:80
-msgid "Link-Bild (URL)"
-msgstr "Link image (URL)"
-
-#: ../lib/extern/elements/ExternElementTreeBackLink.class.php:81
-msgid ""
-"Geben Sie die URL eines Bildes ein, das als Link auf die übergeordnete Ebene "
-"verweist (z.B. Back-Button)."
-msgstr ""
-"Enter the URL of an image file to serve as link referring to higher level (e."
-"g. back button)."
-
-#: ../lib/extern/elements/ExternElementSelectInstitutes.class.php:54
-msgid "Auswahl der anzuzeigenden Institute/Einrichtungen"
-msgstr "Selection of institutes to be displayed"
-
-#: ../lib/extern/elements/ExternElementSelectInstitutes.class.php:55
-msgid ""
-"Sie können hier die Institute/Einrichtungen auswählen, die auf der externen "
-"Seite ausgegeben werden sollen."
-msgstr "Select the institutes/institutions to be exported to external pages."
-
-#: ../lib/extern/elements/main/ExternElementMainSemlecturetree.class.php:54
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:53
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:54
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:54
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:53
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:55
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:53
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:53
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:56
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:48
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:54
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:56
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:52
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:52
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:54
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:51
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:53
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:51
-#: ../lib/extern/elements/main/ExternElementMainRangelecturetree.class.php:53
-#: ../lib/extern/lib/ExternElementMain.class.php:66
-#: ../app/views/resources/admin/configuration.php:5
-#: ../app/views/course/basicdata/view.php:28 ../app/views/admin/api/edit.php:21
-msgid "Grundeinstellungen"
-msgstr "Basic settings"
-
-#: ../lib/extern/elements/main/ExternElementMainSemlecturetree.class.php:55
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:54
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:55
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:55
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:54
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:56
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:54
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:54
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:57
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:49
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:55
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:57
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:53
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:53
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:55
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:52
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:54
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:52
-#: ../lib/extern/elements/main/ExternElementMainRangelecturetree.class.php:54
-msgid ""
-"In den Grundeinstellungen können Sie allgemeine Daten des Moduls ändern."
-msgstr ""
-"In the basic settings you can change the general details of the module."
-
-#: ../lib/extern/elements/main/ExternElementMainSemlecturetree.class.php:83
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:112
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:122
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:111
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:114
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:108
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:113
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:117
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:104
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:91
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:105
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:98
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:93
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:105
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:92
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:90
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:92
-#: ../lib/extern/elements/main/ExternElementMainRangelecturetree.class.php:82
-#: ../lib/extern/views/extern_info_module.inc.php:53
-msgid "Name der Konfiguration"
-msgstr "Name of configuration"
-
-#: ../lib/extern/elements/main/ExternElementMainSemlecturetree.class.php:93
-#: ../lib/extern/elements/main/ExternElementMainRangelecturetree.class.php:92
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:99
-msgid "Umschließende Tabelle"
-msgstr "Enclosing table"
-
-#: ../lib/extern/elements/main/ExternElementMainSemlecturetree.class.php:99
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:171
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:264
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:170
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:167
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:252
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:168
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:134
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:160
-#: ../lib/extern/elements/main/ExternElementMainRangelecturetree.class.php:98
-msgid "HTML-Header/Footer"
-msgstr "HTML header/footer"
-
-#: ../lib/extern/elements/main/ExternElementMainSemlecturetree.class.php:100
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:172
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:265
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:171
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:168
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:253
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:169
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:135
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:161
-#: ../lib/extern/elements/main/ExternElementMainRangelecturetree.class.php:99
-msgid ""
-"Anwählen, wenn die Seite als komplette HTML-Seite ausgegeben werden soll, z."
-"B. bei direkter Verlinkung oder in einem Frameset."
-msgstr ""
-"To be selected if the page should be displayed as complete HTML page, e.g., "
-"when using a direct link or in a frameset."
-
-#: ../lib/extern/elements/main/ExternElementMainSemlecturetree.class.php:105
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:190
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:270
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:176
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:173
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:258
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:174
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:164
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:166
-#: ../lib/extern/elements/main/ExternElementMainRangelecturetree.class.php:104
-msgid "Stylesheet-Datei"
-msgstr "Stylesheet file"
-
-#: ../lib/extern/elements/main/ExternElementMainSemlecturetree.class.php:106
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:191
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:271
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:177
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:174
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:259
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:175
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:165
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:167
-#: ../lib/extern/elements/main/ExternElementMainRangelecturetree.class.php:105
-msgid "Geben Sie hier die URL Ihrer Stylesheet-Datei an."
-msgstr "Enter the URL of your Stylesheet file here."
-
-#: ../lib/extern/elements/main/ExternElementMainSemlecturetree.class.php:109
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:194
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:274
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:177
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:262
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:178
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:168
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:170
-#: ../lib/extern/elements/main/ExternElementMainRangelecturetree.class.php:108
-#: ../app/views/siteinfo/new.php:37 ../app/views/siteinfo/edit.php:37
-#: ../app/views/course/ilias_interface/edit_moduletitle.php:4
-msgid "Seitentitel"
-msgstr "Page title"
-
-#: ../lib/extern/elements/main/ExternElementMainSemlecturetree.class.php:110
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:195
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:275
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:178
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:263
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:179
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:169
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:171
-#: ../lib/extern/elements/main/ExternElementMainRangelecturetree.class.php:109
-msgid ""
-"Geben Sie hier den Titel der Seite ein. Der Titel wird bei der Anzeige im "
-"Web-Browser in der Titelzeile des Anzeigefensters angezeigt."
-msgstr ""
-"Enter the title of the page here. The title will be shown in the title bar "
-"of the browser window."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:66
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:69
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:69
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:72
-#: ../app/views/course/wizard/steps/advancedbasicdata/index.php:11
-msgid "Veranstaltungsart"
-msgstr "Course type"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:67
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:70
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:73
-#: ../lib/classes/LockRules.class.php:178
-#: ../app/controllers/admin/courses.php:1097
-#: ../app/views/public_courses/index.php:37
-#: ../app/views/course/details/index.php:108
-#: ../app/views/questionnaire/assign.php:42
-msgid "Veranstaltungstyp"
-msgstr "Courses type"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:67
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:69
-#: ../lib/extern/views/extern_info_module.inc.php:65
-#: ../lib/extern/views/ExternEditModule.class.php:478
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:71
-#: ../lib/extern/modules/ExternModuleDownload.class.php:62
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:45
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:74
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:293
-#: ../lib/extern/modules/ExternModuleTemplateDownload.class.php:65
-#: ../lib/classes/calendar/SingleCalendar.php:510
-#: ../lib/classes/calendar/SingleCalendar.php:625
-#: ../lib/classes/LockRules.class.php:176 ../lib/archiv.inc.php:187
-#: ../app/controllers/resources/export.php:298
-#: ../app/controllers/resources/export.php:415 ../app/controllers/tour.php:562
-#: ../app/controllers/course/basicdata.php:99
-#: ../app/controllers/course/dates.php:440
-#: ../app/controllers/calendar/calendar.php:360
-#: ../app/views/search/studiengaenge/info.php:86
-#: ../app/views/oer/market/details.php:140
-#: ../app/views/oer/mymaterial/edit.php:91
-#: ../app/views/shared/version/_version.php:45
-#: ../app/views/shared/studiengang/_studiengang_info.php:48
-#: ../app/views/shared/studiengang/_studiengang.php:58
-#: ../app/views/shared/studiengang/_stgteilversion.php:35
-#: ../app/views/resources/property/_add_edit_form.php:7
-#: ../app/views/resources/category/show_resources.php:6
-#: ../app/views/resources/category/details.php:4
-#: ../app/views/resources/booking/add_from_request.php:38
-#: ../app/views/fachabschluss/faecher/fach.php:21
-#: ../app/views/fachabschluss/kategorien/kategorie.php:30
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:16
-#: ../app/views/web_migrate/history.php:30
-#: ../app/views/web_migrate/index.php:39
-#: ../app/views/course/overview/index.php:35
-#: ../app/views/course/timesrooms/createCycle.php:50
-#: ../app/views/course/studygroup/details.php:8
-#: ../app/views/course/studygroup/edit.php:23
-#: ../app/views/course/topics/index.php:46
-#: ../app/views/course/topics/edit.php:19
-#: ../app/views/course/wizard/steps/basicdata/index.php:51
-#: ../app/views/course/wizard/steps/basicdata/index_studygroup.php:32
-#: ../app/views/course/lti/edit.php:16
-#: ../app/views/course/feedback/_new_edit_feedback_form.php:11
-#: ../app/views/course/feedback/_feedback.php:3
-#: ../app/views/files_dashboard/search.php:42
-#: ../app/views/admin/api/edit.php:94 ../app/views/admin/semester/edit.php:27
-#: ../app/views/admin/cronjobs/schedules/display.php:6
-#: ../app/views/admin/cronjobs/schedules/edit.php:55
-#: ../app/views/admin/cronjobs/schedules/edit.php:72
-#: ../app/views/admin/cronjobs/tasks/index.php:23
-#: ../app/views/admin/specification/index.php:15
-#: ../app/views/admin/specification/edit.php:31
-#: ../app/views/admin/content_terms_of_use/edit.php:47
-#: ../app/views/admin/banner/new.php:13 ../app/views/admin/banner/index.php:13
-#: ../app/views/admin/plugin/manifest.php:17
-#: ../app/views/admin/holidays/edit.php:12
-#: ../app/views/admin/lockrules/index.php:19
-#: ../app/views/admin/lockrules/_form.php:25
-#: ../app/views/admin/datafields/new.php:153
-#: ../app/views/admin/datafields/index.php:69
-#: ../app/views/admin/datafields/edit.php:181
-#: ../app/views/admin/licenses/edit.php:28 ../app/views/event_log/admin.php:7
-#: ../app/views/event_log/edit.php:10
-#: ../app/views/calendar/single/_event_data.php:25
-#: ../app/views/calendar/single/edit.php:98
-#: ../app/views/calendar/single/_tooltip.php:17
-#: ../app/views/calendar/schedule/_entry_schedule.php:48
-#: ../app/views/my_ilias_accounts/_ilias_module.php:46
-#: ../app/views/file/new_edit_folder_form.php:10
-#: ../app/views/file/folder_details.php:11
-#: ../app/views/file/file_details.php:19 ../app/views/file/edit_license.php:10
-#: ../app/views/file/edit.php:18 ../app/views/file/edit_urlfile.php:39
-#: ../app/views/studiengaenge/versionen/version.php:92
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:299
-msgid "Beschreibung"
-msgstr "Description"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:67
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:69
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:65
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:86
-#: ../lib/extern/modules/ExternModuleLecturestable.class.php:68
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:78
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:72
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:75
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:70
-#: ../lib/classes/RangeTreeObjectInst.class.php:48
-#: ../lib/classes/RangeTreeObjectFak.class.php:49
-#: ../lib/classes/LockRules.class.php:177
-#: ../lib/classes/LockRules.class.php:217 ../lib/archiv.inc.php:144
-#: ../templates/consultations/mail.php:4
-#: ../templates/dates/_seminar_rooms.php:25
-#: ../app/controllers/consultation/export.php:30
-#: ../app/controllers/consultation/export.php:63
-#: ../app/controllers/course/basicdata.php:180
-#: ../app/controllers/course/archive.php:72
-#: ../app/views/consultation/overview/cancel.php:13
-#: ../app/views/consultation/overview/book.php:17
-#: ../app/views/consultation/overview/ungrouped.php:23
-#: ../app/views/consultation/admin/book.php:13
-#: ../app/views/consultation/admin/create.php:43
-#: ../app/views/consultation/admin/create.php:47
-#: ../app/views/consultation/admin/ungrouped.php:37
-#: ../app/views/consultation/admin/ungrouped.php:151
-#: ../app/views/consultation/admin/cancel_slot.php:13
-#: ../app/views/consultation/admin/edit_room.php:8
-#: ../app/views/consultation/admin/edit_room.php:9
-#: ../app/views/consultation/admin/cancel_block.php:21
-#: ../app/views/files_dashboard/search.php:43
-#: ../app/views/institute/overview/index.php:13
-#: ../app/views/institute/basicdata/index.php:67
-msgid "Ort"
-msgstr "Location"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:68
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:69
-#: ../lib/extern/modules/ExternModuleLecturestable.class.php:70
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:80
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:74
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:77
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:72
-#: ../app/controllers/admission/courseset.php:401
-msgid "Zeiten"
-msgstr "Times"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:69
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:77
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:51
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:80
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:299
-#: ../lib/archiv.inc.php:189 ../app/controllers/course/basicdata.php:156
-#: ../app/views/course/details/index.php:197
-msgid "Voraussetzungen"
-msgstr "Pre-requisites"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:69
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:78
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:52
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:81
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:300
-#: ../lib/classes/LockRules.class.php:191 ../lib/archiv.inc.php:190
-#: ../app/controllers/course/basicdata.php:164
-#: ../app/views/course/details/index.php:205
-msgid "Lernorganisation"
-msgstr "Learning organisation"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:69
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:79
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:164
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:53
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:82
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:301
-#: ../lib/classes/LockRules.class.php:192 ../lib/archiv.inc.php:191
-#: ../app/controllers/course/basicdata.php:172
-#: ../app/views/course/details/index.php:213
-msgid "Leistungsnachweis"
-msgstr "Performance record"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:70
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:80
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:83
-msgid "Bereichseinordnung"
-msgstr "Area classification"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:70
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:81
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:161
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:55
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:84
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:303
-#: ../lib/classes/LockRules.class.php:188 ../lib/archiv.inc.php:199
-#: ../config/mvv_config.php:171 ../config/config.inc.php:212
-#: ../config/config_develop.inc.php:248
-#: ../app/controllers/course/basicdata.php:217
-#: ../app/controllers/course/plus.php:215
-#: ../app/views/course/details/index.php:231
-#: ../app/views/contents/courseware/create_project.php:39
-#: ../app/views/contents/courseware/create_project.php:54
-#: ../app/views/admin/sem_classes/details.php:166
-msgid "Sonstiges"
-msgstr "Miscellanea"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:70
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:82
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:85
-#: ../lib/classes/LockRules.class.php:179 ../lib/archiv.inc.php:186
-#: ../app/controllers/course/basicdata.php:83
-#: ../app/views/course/wizard/steps/advancedbasicdata/index.php:17
-#: ../app/views/course/details/index.php:239
-msgid "ECTS-Punkte"
-msgstr "ECTS points"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:71
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:128
-#: ../lib/archiv.inc.php:140 ../config/config.inc.php:202
-#: ../config/config.inc.php:214 ../config/config_develop.inc.php:238
-#: ../config/config_develop.inc.php:250
-#: ../app/views/course/details/index.php:162
-msgid "Vorbesprechung"
-msgstr "Preliminary discussion"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:72
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:132
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:62
-#: ../lib/archiv.inc.php:137 ../app/views/course/overview/index.php:22
-#: ../app/views/course/details/index.php:176
-msgid "Erster Termin"
-msgstr "First date"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:81
-#: ../lib/export/export_start.inc.php:99
-msgid "Veranstaltungsdaten"
-msgstr "Course details"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:119
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:129
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:118
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:120
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:124
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:112
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:105
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:112
-msgid "Allgemeine Angaben zum Tabellenaufbau"
-msgstr "General information about table structure"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:126
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:228
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:216
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:195
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:234
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:91
-msgid "Textersetzungen"
-msgstr "Text substitutions"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:129
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:133
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:85
-#: ../lib/extern/elements/ExternElementRangeTreeLevelName.class.php:89
-msgid "Geben Sie eine alternative Bezeichnung ein."
-msgstr "Enter an alternative notation."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:141
-msgid "Absatzüberschrift in eigener Zeile"
-msgstr "Paragraph heading in extra line"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:142
-msgid ""
-"Diese Option bewirkt, dass die Überschrift eines Absatzes in einer eigenen "
-"Zeile ausgegeben wird. Ist diese Option nicht ausgewählt, wird die "
-"Überschrift dem Text des Absatzes direkt vorangestellt."
-msgstr ""
-"This option makes the paragraph heading to be displayed on a separate line. "
-"If this option is not selected, then the heading will directly precede the "
-"paragraph text."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:147
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:191
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:176
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:170
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:175
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:101
-msgid "Bereichspfad ab Ebene"
-msgstr "Area path from layer"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:148
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:192
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:177
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:171
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:176
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:102
-msgid "Wählen Sie, ab welcher Ebene der Bereichspfad ausgegeben werden soll."
-msgstr "Displaying the area path will start at the level to be selected here."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:153
-msgid "Stud.IP-Info"
-msgstr "Stud.IP info"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:154
-msgid ""
-"Diese Option zeigt weitere Informationen aus der Stud.IP-Datenbank an "
-"(Anzahl Teilnehmender, Posting, Dokumente usw.)."
-msgstr ""
-"This option displays more information from the Stud.IP database (number of "
-"participants, postings, documents etc.)."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:159
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:161
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:154
-msgid "Stud.IP-Link"
-msgstr "Stud.IP link"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:160
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:162
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:155
-msgid ""
-"Ausgabe eines Links, der direkt zum Stud.IP-Administrationsbereich verweist."
-msgstr ""
-"Display a link which directly refers to the Stud.IP administration area."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:162
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:164
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:157
-msgid "oberhalb"
-msgstr "upper half"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:162
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:164
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:157
-msgid "unterhalb der Tabelle"
-msgstr "below the table"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:162
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:164
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:157
-msgid "ausblenden"
-msgstr "hide"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:165
-msgid "Stud.IP-Link-Ziel"
-msgstr "Stud.IP link target"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:166
-msgid ""
-"Ziel des Stud.IP-Links. Entweder direkter Einsprung zur Anmeldeseite oder in "
-"den Administrationsbereich (nur für berechtigte Nutzer) der Veranstaltung"
-msgstr ""
-"Target of the Stud.IP link. Either a direct jump to the enrolment page or "
-"into the administration area of the course (for authorised users only)"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:168
-msgid "Anmeldung"
-msgstr "Enrolment"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:168
-msgid "Administrationsbereich"
-msgstr "Administration area"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:177
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:251
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:153
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:141
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:239
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:210
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:151
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:144
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:260
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:100
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:126
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:132
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:134
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:101
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:128
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:107
-msgid "Namensformat"
-msgstr "Name format"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:178
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:252
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:154
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:142
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:240
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:211
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:152
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:145
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:261
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:101
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:127
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:133
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:135
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:102
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:129
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:108
-msgid "Wählen Sie, wie Personennamen formatiert werden sollen."
-msgstr "Select username format."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:180
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:187
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:149
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:153
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:157
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:168
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:179
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:254
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:261
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:112
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:116
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:120
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:131
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:142
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:156
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:163
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:144
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:158
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:134
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:138
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:142
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:153
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:164
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:242
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:249
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:128
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:132
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:136
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:147
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:158
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:213
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:220
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:154
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:147
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:161
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:130
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:134
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:138
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:160
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:263
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:270
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:103
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:117
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:129
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:143
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:135
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:137
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:151
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:104
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:118
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:131
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:110
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:124
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:104
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:108
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:112
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:123
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:134
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:102
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:106
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:110
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:121
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:132
-#: ../lib/extern/views/ExternEditGeneric.class.php:57
-#: ../lib/extern/views/ExternEditHtml.class.php:241
-#: ../lib/extern/views/ExternEditHtml.class.php:438
-#: ../lib/extern/views/ExternEditHtml.class.php:476
-#: ../lib/extern/views/ExternEditHtml.class.php:511
-#: ../app/controllers/admin/courses.php:107
-msgid "keine Auswahl"
-msgstr "no selection"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:180
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:254
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:156
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:144
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:242
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:213
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:154
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:147
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:263
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:103
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:129
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:135
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:137
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:104
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:131
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:110
-#: ../lib/extern/modules/views/news_preview.inc.php:33
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:26
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:41
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:56
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:71
-#: ../lib/extern/modules/views/lectures_preview.inc.php:41
-#: ../lib/extern/modules/views/lectures_preview.inc.php:56
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:274
-msgid "Meyer, P."
-msgstr "Meyer, P."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:180
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:254
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:156
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:144
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:242
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:213
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:154
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:147
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:263
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:103
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:129
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:135
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:137
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:104
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:131
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:110
-#: ../lib/extern/modules/views/news_preview.inc.php:36
-#: ../lib/extern/modules/views/news_preview.inc.php:51
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:29
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:59
-#: ../lib/extern/modules/views/lectures_preview.inc.php:44
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:277
-msgid "Peter Meyer"
-msgstr "Peter Meyer"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:180
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:254
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:156
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:144
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:242
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:213
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:147
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:263
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:103
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:129
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:137
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:104
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:110
-#: ../lib/extern/modules/views/news_preview.inc.php:39
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:32
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:62
-#: ../lib/extern/modules/views/lectures_preview.inc.php:47
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:280
-msgid "Meyer Peter"
-msgstr "Meyer Peter"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:181
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:255
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:157
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:145
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:243
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:214
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:155
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:148
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:264
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:104
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:130
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:136
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:138
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:105
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:132
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:111
-#: ../lib/extern/modules/views/news_preview.inc.php:42
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:35
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:65
-#: ../lib/extern/modules/views/lectures_preview.inc.php:50
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:283
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:289
-msgid "Dr. Peter Meyer"
-msgstr "Dr. Peter Meyer"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:181
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:255
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:157
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:145
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:243
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:214
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:155
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:148
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:264
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:104
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:130
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:136
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:138
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:105
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:132
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:111
-#: ../lib/extern/modules/views/news_preview.inc.php:45
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:38
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:68
-#: ../lib/extern/modules/views/lectures_preview.inc.php:53
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:286
-msgid "Meyer, Peter, Dr."
-msgstr "Meyer, Peter, Dr."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:184
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:258
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:160
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:155
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:246
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:217
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:158
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:267
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:114
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:140
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:148
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:115
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:121
-#: ../config/config_develop.inc.php:187
-#: ../app/views/search/studiengaenge/info.php:43
-#: ../app/views/materialien/files/range.php:28
-#: ../app/views/materialien/files/index.php:11
-#: ../app/views/settings/general.php:20 ../app/views/admin/user/new.php:128
-#: ../app/views/admin/user/edit.php:141
-#: ../app/views/admin/datafields/new.php:39
-#: ../app/views/admin/datafields/edit.php:62
-#: ../app/views/admin/datafields/edit.php:73
-#: ../app/views/tour/admin_overview.php:39 ../app/views/tour/import.php:31
-#: ../app/views/help_content/admin_overview.php:21
-msgid "Sprache"
-msgstr "Language"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:185
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:259
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:161
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:156
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:247
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:218
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:159
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:268
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:115
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:141
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:149
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:116
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:122
-msgid "Wählen Sie eine Sprache für die Datumsangaben aus."
-msgstr "Select a language to used for date information."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:187
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:261
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:163
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:158
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:249
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:220
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:161
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:270
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:117
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:143
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:151
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:118
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:124
-#: ../config/mvv_config.php:43 ../config/mvv_config.php:235
-msgid "Deutsch"
-msgstr "German"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:187
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:261
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:163
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:158
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:249
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:220
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:161
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:270
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:117
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:143
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:151
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:118
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:124
-#: ../config/mvv_config.php:44 ../config/mvv_config.php:121
-#: ../config/mvv_config.php:237 ../config/mvv_config.php:331
-msgid "Englisch"
-msgstr "English "
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:198
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:278
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:180
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:181
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:266
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:182
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:176
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:178
-msgid "Copyright"
-msgstr "Copyright"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:199
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:279
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:181
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:182
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:267
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:183
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:177
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:179
-msgid ""
-"Geben Sie hier einen Copyright-Vermerk an. Dieser wird im Meta-Tag "
-"\"copyright\" ausgegeben, wenn Sie die Option \"HTML-Header/Footer\" "
-"angewählt haben."
-msgstr ""
-"Enter a copyright note here. This will be displayed in the Meta-Tag "
-"\"copyright\" provided you have selected the option \"HTML Header/Footer\"."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:202
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:282
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:184
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:185
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:270
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:186
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:180
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:182
-#: ../lib/classes/UserLookup.class.php:422
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:134
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:278
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:314
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:349
-#: ../app/views/news/admin_news.php:88
-#: ../app/views/admin/autoinsert/index.php:57
-#: ../app/views/admin/autoinsert/index.php:76
-#: ../app/views/file/add_from_library.php:23
-msgid "Autor"
-msgstr "Author"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturedetails.class.php:203
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:283
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:185
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:186
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:271
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:187
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:181
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:183
-msgid ""
-"Geben Sie hier den Namen des Seitenautors an. Dieser wird im Meta-Tag "
-"\"author\" ausgegeben, wenn Sie die Option \"HTML-Header/Footer\" angewählt "
-"haben."
-msgstr ""
-"Enter the name of the page author here. This will be displayed in the Meta-"
-"Tag \"author\" provided you have selected the option \"HTML Header/Footer\"."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:84
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:138
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:78
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:123
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:117
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:134
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:119
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:116
-#: ../app/controllers/my_courses.php:825
-#: ../app/controllers/institute/members.php:545
-msgid "Gruppierung"
-msgstr "Grouping"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:92
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:73
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:86
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:57
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:57
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:80
-#: ../app/views/search/module/show.php:10
-#: ../app/views/shared/modul/overview.php:11
-msgid "Lehrveranstaltungen"
-msgstr "Courses"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:136
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:121
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:115
-msgid "Allgemeine Angaben Seitenaufbau"
-msgstr "General information about page structure"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:139
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:124
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:118
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:120
-msgid "Wählen Sie, wie die Veranstaltungen gruppiert werden sollen."
-msgstr "Select how the courses are to be grouped."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:145
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:108
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:130
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:124
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:126
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:100
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:98
-#: ../app/controllers/admin/courses.php:1029
-#: ../app/controllers/admin/courses.php:1030
-#: ../app/views/course/timesrooms/editSemester.php:8
-msgid "Startsemester"
-msgstr "Start semester"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:146
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:109
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:131
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:125
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:127
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:101
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:99
-msgid ""
-"Geben Sie das erste anzuzeigende Semester an. Die Angaben \"vorheriges\", "
-"\"aktuelles\" und \"nächstes\" beziehen sich immer auf das laufende Semester "
-"und werden automatisch angepasst."
-msgstr ""
-"Enter the first semester to be displayed. The information \"previous\" , "
-"\"current\" and \"next\" always refers to the current semester and will "
-"automatically be adapted."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:149
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:153
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:157
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:112
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:116
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:120
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:134
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:138
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:142
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:128
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:132
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:136
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:130
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:134
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:138
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:104
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:108
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:112
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:102
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:106
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:110
-msgid "aktuelles"
-msgstr "current"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:149
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:112
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:134
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:128
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:130
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:104
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:102
-msgid "nächstes"
-msgstr "next"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:153
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:157
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:116
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:120
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:138
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:142
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:132
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:136
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:134
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:138
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:108
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:112
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:106
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:110
-msgid "vorheriges"
-msgstr "previous"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:166
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:129
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:151
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:145
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:121
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:119
-msgid "Anzahl der anzuzeigenden Semester"
-msgstr "Amount of displayed semester"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:167
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:130
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:152
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:146
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:122
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:120
-msgid ""
-"Geben Sie an, wieviele Semester (ab o.a. Startsemester) angezeigt werden "
-"sollen."
-msgstr ""
-"Please specify how many semesters shall be displayed (starting with the "
-"start semester selected above)."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:177
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:140
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:162
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:156
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:158
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:132
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:130
-msgid "Umschalten des aktuellen Semesters"
-msgstr "Switching the current semester"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:178
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:141
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:163
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:157
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:159
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:133
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:131
-msgid ""
-"Geben Sie an, wieviele Wochen vor Semesterende automatisch auf das nächste "
-"Semester umgeschaltet werden soll."
-msgstr ""
-"Enter how many weeks before the end of semester, the current semester will "
-"automatically be switched to the next semester."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:179
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:142
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:164
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:158
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:160
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:134
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:132
-msgid "am Semesterende"
-msgstr "at the end of semester"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:179
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:142
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:164
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:158
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:160
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:134
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:132
-msgid "1 Woche vor Semesterende"
-msgstr "1 week before the end of semester"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:181
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:144
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:166
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:160
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:162
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:136
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:134
-#, php-format
-msgid "%s Wochen vor Semesterende"
-msgstr "%s weeks before the end of semester"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:185
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:170
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:164
-msgid "Veranstaltungen beteiligter Institute anzeigen"
-msgstr "Show courses of involved institutes"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:186
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:171
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:165
-msgid ""
-"Wählen Sie diese Option, um Veranstaltungen anzuzeigen, bei denen diese "
-"Einrichtung als beteiligtes Institut eingetragen ist."
-msgstr ""
-"Choose this option to display courses at the institutes which are entered as "
-"participating institute."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:197
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:181
-msgid "Anzahl Veranstaltungen/Gruppierung anzeigen"
-msgstr "Display amount of courses/grouping"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:198
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:182
-msgid ""
-"Wählen Sie diese Option, wenn die Anzahl der Veranstaltungen und die "
-"gewählte Gruppierungsart angezeigt werden sollen."
-msgstr ""
-"Choose this option if the number of courses and the selected grouping style "
-"are be displayed."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:203
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:158
-msgid "Spaltenüberschriften wiederholen"
-msgstr "Repeat column headings"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:204
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:159
-msgid ""
-"Wiederholung der Spaltenüberschriften über oder unter der Gruppierungszeile."
-msgstr "Repeat the column heading above or below the grouping row."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:206
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:161
-msgid "über"
-msgstr "above"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:206
-msgid "unter Gruppierungszeile"
-msgstr "below grouping row"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:206
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:161
-#: ../lib/extern/views/ExternEditModule.class.php:123
-#: ../lib/extern/views/ExternEditModule.class.php:207
-#: ../config/mvv_config.php:318 ../app/controllers/institute/members.php:559
-#: ../app/views/admission/courseset/_institute_choose.php:40
-#: ../app/views/resources/admin/user_permissions.php:17
-#: ../app/views/resources/admin/user_permissions.php:56
-#: ../app/views/course/timesrooms/_regularEvents.php:59
-#: ../app/views/settings/statusgruppen/modify.php:64
-#: ../app/views/settings/general.php:3
-#: ../app/views/admin/sem_classes/_sem_type.php:26
-#: ../app/views/admin/sem_classes/add_sem_type.php:17
-#: ../app/views/wiki/info.php:60
-msgid "keine"
-msgstr "none"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:212
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:202
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:179
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:219
-msgid "Ausgabe bestimmter Veranstaltungsklassen"
-msgstr "Display of certain course classes"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:217
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:206
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:184
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:223
-msgid "Wählen Sie die anzuzeigenden Veranstaltungsklassen aus."
-msgstr "Select the course classes to be displayed."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:230
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:218
-#: ../app/views/admin/sem_classes/overview.php:18
-msgid "Anzahl Veranstaltungen"
-msgstr "Number of courses"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:231
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:219
-msgid ""
-"Geben Sie einen Text ein, der nach der Anzahl der Veranstaltungen steht. Nur "
-"wirksam, wenn die Ausgabe der Anzahl der Veranstaltungen und der Gruppierung "
-"aktiviert wurde."
-msgstr ""
-"Enter the text to be displayed behind the number of courses. It will be "
-"shown only if output of the number of courses and of the grouping is "
-"activated."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:234
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:222
-msgid "Gruppierungsinformation"
-msgstr "Grouping information"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:235
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:223
-msgid ""
-"Geben Sie einen Text ein, der vor der Gruppierungsart steht. Nur wirksam, "
-"wenn die Ausgabe der Anzahl der Veranstaltungen und der Gruppierung "
-"aktiviert wurde."
-msgstr ""
-"Enter the text to be displayed before the grouping style. It will be shown "
-"only if output about the number of courses and of the grouping is activated."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:238
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:226
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:197
-msgid "&quot;Keine Studienbereiche&quot;"
-msgstr "&quot;No study areas&quot;"
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:239
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:227
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:198
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:238
-msgid ""
-"Geben Sie einen Text ein, der Angezeigt wird, wenn Lehrveranstaltungen "
-"vorliegen, die keinem Bereich zugeordnet sind. Nur wirksam in Gruppierung "
-"nach Bereich."
-msgstr ""
-"Enter the text which will be displayed if there are courses not assigned to "
-"any area. It will be shown only if courses are grouped by area."
-
-#: ../lib/extern/elements/main/ExternElementMainLecturestable.class.php:243
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:231
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:202
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:237
-msgid "Geben Sie eine Bezeichnung für die entsprechende Gruppierungsart ein."
-msgstr "Enter a notation for the type of grouping."
-
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:100
-msgid "Name der globalen Konfiguration"
-msgstr "Name of global configuration"
-
-#: ../lib/extern/elements/main/ExternElementMainGlobal.class.php:106
-msgid "Anzuzeigende Lehrveranstaltungen"
-msgstr "Courses to be displayed"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:73
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:79
-#: ../lib/classes/LockRules.class.php:237 ../app/views/settings/details.php:61
-msgid "Schwerpunkte"
-msgstr "Research interests"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:74
-msgid "Aktuell"
-msgstr "Current"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:83
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:82
-#: ../lib/navigation/CourseNavigation.php:98
-msgid "MitarbeiterInnen"
-msgstr "Staff members"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:129
-msgid "Kontaktdaten anzeigen"
-msgstr "Display contact data"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:130
-msgid ""
-"Anwählen, wenn die Kontaktdaten (Anschrift, Email, Telefon usw.) angezeigt "
-"werden sollen."
-msgstr ""
-"Choose when the contact details (address, e-mail address, telephone etc) are "
-"to be displayed."
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:135
-#: ../lib/extern/elements/ExternElementStudipLink.class.php:100
-msgid "Bild anzeigen"
-msgstr "Show picture"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:136
-msgid ""
-"Wählen Sie, ob ein vom Nutzer in Stud.IP eingestelltes Bild links oder "
-"rechts neben den Kontaktdaten angezeigt werden soll."
-msgstr ""
-"Choose whether pictures uploaded to Stud.IP are to displayed at the left or "
-"at the right to the contact details."
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:138
-#: ../app/views/tour/edit_step.php:113
-msgid "links"
-msgstr "left"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:138
-#: ../app/views/tour/edit_step.php:121
-msgid "rechts"
-msgstr "right"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:148
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:151
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:107
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:133
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:141
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:108
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:114
-msgid "Datumsformat"
-msgstr "Date format"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:149
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:152
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:108
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:134
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:142
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:109
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:115
-msgid "Wählen Sie, wie Datumsangaben formatiert werden sollen."
-msgstr "Select how dates shall be formatted."
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:151
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:154
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:110
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:136
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:144
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:111
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:117
-msgid "25. Nov. 2003"
-msgstr "25 Nov. 2003"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:151
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:154
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:136
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:111
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:117
-msgid "25.11.2003"
-msgstr "25.11.2003"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:151
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:154
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:136
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:111
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:117
-msgid "25.11.03"
-msgstr "25.11.03"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:152
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:155
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:111
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:137
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:145
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:112
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:118
-msgid "25. November 2003"
-msgstr "25 November 2003"
-
-#: ../lib/extern/elements/main/ExternElementMainPersondetails.class.php:152
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:155
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:137
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:112
-#: ../lib/extern/elements/main/ExternElementMainTemplateLecturedetails.class.php:118
-msgid "11/25/03"
-msgstr "11/25/03"
-
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:187
-msgid "Termine/Zeiten anzeigen"
-msgstr "Display dates/times"
-
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:188
-msgid ""
-"Wählen Sie diese Option, wenn Termine und Zeiten der Veranstaltung unter dem "
-"Veranstaltungsnamen angezeigt werden sollen."
-msgstr ""
-"Select this option if course dates and times shall be displayed below the "
-"course names."
-
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:193
-msgid "Lehrende anzeigen"
-msgstr "Show lecturers"
-
-#: ../lib/extern/elements/main/ExternElementMainLectures.class.php:194
-msgid ""
-"Wählen Sie diese Option, wenn die Namen der Lehrenden der Veranstaltung "
-"angezeigt werden sollen."
-msgstr ""
-"Select this option if the names of the lecturers of the course shall be "
-"displayed."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:81
-msgid "Keine Veranstaltungen in diesem Bereich vorhanden."
-msgstr "No courses in this subject area available."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:223
-msgid "Keine Veranstaltungen"
-msgstr "No courses"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateLectures.class.php:224
-msgid ""
-"Dieser Text wird an Stelle der Tabelle ausgegeben, wenn keine "
-"Veranstaltungen vorhanden sind."
-msgstr ""
-"This text will be displayed in place of a table in case that no course is "
-"available."
-
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:130
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:112
-msgid "Anzeige von Gruppen"
-msgstr "Group display"
-
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:135
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:117
-msgid "Personen nach Gruppen/Funktionen gruppieren."
-msgstr "Group people according to groups/functions."
-
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:140
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:121
-msgid ""
-"An dieser Einrichtung wurden noch keine Gruppen/Funktionen angelegt, oder es "
-"wurden diesen noch keine Personen zugeordnet."
-msgstr ""
-"At this institute no group/function has been created or there is not any "
-"person assigned to it."
-
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:141
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:122
-msgid ""
-"Das Modul gibt nur Daten von Personen aus, die einer Gruppe/Funktion "
-"zugeordnet sind."
-msgstr ""
-"The module displays details about users who are assigned to some group/"
-"function, only."
-
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:154
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersons.class.php:135
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:131
-msgid "Meyer, Peter"
-msgstr "Meyer, Peter"
-
-#: ../lib/extern/elements/main/ExternElementMainPersons.class.php:161
-msgid "unter Gruppenname"
-msgstr "below group name"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:69
-msgid "Upload am"
-msgstr "Upload on"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:70
-#: ../lib/extern/modules/ExternModuleDownload.class.php:64
-#: ../lib/extern/modules/ExternModuleTemplateDownload.class.php:67
-#: ../lib/filesystem/FileArchiveManager.class.php:454
-#: ../app/views/files/_files_thead.php:35
-#: ../app/views/admin/statusgroups/editGroup.php:33
-#: ../app/views/file/_file_aside.php:10 ../app/views/file/_folder_aside.php:32
-msgid "Größe"
-msgstr "Size"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:70
-#: ../lib/extern/modules/ExternModuleDownload.class.php:65
-#: ../lib/extern/modules/ExternModuleTemplateDownload.class.php:68
-msgid "Upload durch"
-msgstr "Upload by"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:78
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:71
-msgid "Keine Dateien vorhanden"
-msgstr "No files available"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:140
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:122
-msgid "Max. Länge der Beschreibung"
-msgstr "Max. description length"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:141
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:123
-msgid ""
-"Geben Sie an, wieviele Zeichen der Beschreibung der Datei ausgegeben werden "
-"sollen."
-msgstr "Enter how many characters of the file description should be displayed."
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:172
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:146
-msgid "Keine Dateien"
-msgstr "No files"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:173
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:147
-msgid ""
-"Dieser Text wird an Stelle der Tabelle ausgegeben, wenn keine Dateien zum "
-"Download verfügbar sind."
-msgstr ""
-"This text will be displayed in place of a table if no files are available "
-"for downloading."
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:187
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:153
-msgid "Eigene Icons"
-msgstr "Personal icons"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:191
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:157
-msgid "Bilder"
-msgstr "Pictures"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:193
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:159
-msgid "Adobe pdf"
-msgstr "Adobe PDF"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:194
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:160
-msgid "Powerpoint (ppt)"
-msgstr "Powerpoint (ppt)"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:195
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:161
-msgid "Excel (xls)"
-msgstr "Excel (xls)"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:196
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:162
-msgid "Rich Text (rtf)"
-msgstr "Rick text (rtf)"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:197
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:163
-msgid "ZIP-Dateien"
-msgstr "ZIP files"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:198
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:164
-msgid "sonstige Dateien"
-msgstr "other files"
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:201
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:167
-msgid ""
-"Geben Sie die URL eines Bildes ein, dass als Icon für Bild-Dateien dienen "
-"soll. Erlaubte Formate: jpg, png, gif. "
-msgstr ""
-"Enter the URL of an image file that should serve as icon for image files. "
-"Permitted formats: jpg, png, gif.  "
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:202
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:168
-msgid ""
-"Geben Sie die URL eines Bildes ein, dass als Icon für Text-Dateien dienen "
-"soll. Erlaubte Formate: jpg, png, gif. "
-msgstr ""
-"Enter the URL of an image file that should serve as icon for text files. "
-"Permitted formats jpg, png, gif."
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:203
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:169
-msgid ""
-"Geben Sie die URL eines Bildes ein, dass als Icon für PDF-Dateien dienen "
-"soll. Erlaubte Formate: jpg, png, gif. "
-msgstr ""
-"Enter the URL of an image file that should serve as icon for PDF files. "
-"Permitted formats: jpg, png, gif."
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:204
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:170
-msgid ""
-"Geben Sie die URL eines Bildes ein, dass als Icon für Powerpoint-Dateien "
-"dienen soll. Erlaubte Formate: jpg, png, gif. "
-msgstr ""
-"Enter the URL of an image file that should serve as icon for PowerPoint "
-"presentations. Permitted formats: jpg, png, gif."
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:205
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:171
-msgid ""
-"Geben Sie die URL eines Bildes ein, dass als Icon für Excel-Dateien dienen "
-"soll. Erlaubte Formate: jpg, png, gif. "
-msgstr ""
-"Enter the URL of an image file that should serve as icon for Excel "
-"spreadsheets. Permitted formats: jpg, png, gif."
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:206
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:172
-msgid ""
-"Geben Sie die URL eines Bildes ein, dass als Icon für RTF-Dateien dienen "
-"soll. Erlaubte Formate: jpg, png, gif. "
-msgstr ""
-"Enter the URL of an image file that should serve as icon for RTF files. "
-"Permitted formats: jpg, png, gif."
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:207
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:173
-msgid ""
-"Geben Sie die URL eines Bildes ein, dass als Icon für komprimierte Dateien "
-"dienen soll. Erlaubte Formate: jpg, png, gif. "
-msgstr ""
-"Enter the URL of an image file that should serve as icon for compressed "
-"files. Permitted formats: jpg, png, gif."
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:208
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:174
-msgid ""
-"Geben Sie die URL eines Bildes ein, dass als Icon für alle anderen "
-"Dateiformate dienen soll. "
-msgstr ""
-"Enter the URL of an image file that should serve as icon for all other file "
-"formats. "
-
-#: ../lib/extern/elements/main/ExternElementMainDownload.class.php:210
-#: ../lib/extern/elements/main/ExternElementMainTemplateDownload.class.php:176
-msgid "Wenn Sie keine URL angeben, wird ein Standard-Icon ausgegeben."
-msgstr "If no URL is provided, then a default icon will be displayed."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:111
-msgid "Konfiguration des Moduls"
-msgstr "Configuration of the module"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:113
-msgid "Anzeigemodus"
-msgstr "Display mode"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:114
-msgid "Auswahl zwischen Einrichtungsbaum und Bereichsbaum"
-msgstr "Choice between institute tree and area tree"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:116
-#: ../lib/classes/SemBrowse.class.php:1179
-#: ../lib/export/export_xslt_vars.inc.php:148
-msgid "Vorlesungsverzeichnis"
-msgstr "Course directory"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:181
-msgid "Anzeige von Unterebenen"
-msgstr "Sub-layer display"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:182
-msgid "Anzahl der Unterebenen des Baumes, die angezeigt werden sollen."
-msgstr "Number of sub-levels in the tree to be displayed."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:188
-msgid "Start bei Root-Ebene"
-msgstr "Start at root layer"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:189
-msgid ""
-"Wird das Modul ohne weitere Parameter aufgerufen startet die Anzeige beim "
-"Root-Level (alle Fakultäten)."
-msgstr ""
-"If the module will be called without further parameters, then display starts "
-"at root level (all faculties)."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:193
-msgid "Leere Ebenen ausblenden"
-msgstr "Hide empty layers"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:194
-msgid ""
-"Ebenen ohne Veranstaltungen und ohne Veranstaltungen in ihren Unterebenen "
-"werden nicht angezeigt."
-msgstr ""
-"Levels without courses and without courses at any sub-level will not be "
-"displayed."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:200
-msgid "Konfiguration der Suche"
-msgstr "Search configuration"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:202
-msgid "Sortierung des Treffersets"
-msgstr "Match set sorting"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:203
-msgid "Nach welchem Tabellenfeld soll das Trefferset sortiert werden?"
-msgstr "By which table field shall the result set be sorted?"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:208
-msgid "Anzahl der Treffer bei Suche"
-msgstr "Amount of results for the search"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:209
-msgid ""
-"Maximale Anzahl der Veranstaltungen im Trefferset. Angabe 0, um alle "
-"anzuzeigen."
-msgstr "Maximum number of courses in the result set. Set to 0 to show all."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:212
-msgid "Anzahl der Seiten im Result Browser"
-msgstr "Amount of pages in the result browser"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:213
-msgid "Maximale Anzahl der Seiten, die der Result Browser anzeigen soll."
-msgstr "Maximum number of pages to be shown in the result browser."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:245
-msgid "Termintypen"
-msgstr "Date types"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:246
-msgid "Wählen Sie aus, welche Termintypen angezeigt werden sollen."
-msgstr "Select the date types to be displayed."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:248
-msgid "alle Termine"
-msgstr "all dates"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:248
-msgid "nur Sitzungstermine"
-msgstr "meeting dates only"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:248
-msgid "nur andere Termine"
-msgstr "other dates only"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateSemBrowse.class.php:251
-#: ../config/config.inc.php:201 ../config/config.inc.php:213
-#: ../config/config_develop.inc.php:237 ../config/config_develop.inc.php:249
-msgid "Sitzung"
-msgstr "Meeting"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:70
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:70
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:79
-msgid "Keine aktuellen News"
-msgstr "No current announcement"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:104
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:138
-#: ../lib/extern/modules/views/news_preview.inc.php:48
-msgid "Meyer"
-msgstr "Meyer"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:120
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:118
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:174
-msgid "Keine News"
-msgstr "No news"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplateNews.class.php:121
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:175
-msgid ""
-"Dieser Text wird an Stelle der Tabelle ausgegeben, wenn keine News verfügbar "
-"sind."
-msgstr ""
-"This text will be displayed in place of a table if no current announcement "
-"is available."
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:68
-msgid "Der Ticker wird geladen..."
-msgstr "The ticker is being loaded..."
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:69
-msgid "Ende des Tickers."
-msgstr "End of ticker."
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:102
-msgid "Tick-Frequenz"
-msgstr "Tick frequency"
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:103
-msgid "Geben Sie an, wieviele Zeichen pro Sekunde ausgegeben werden sollen."
-msgstr "Enter how many characters per second should be displayed."
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:106
-msgid "Pause zwischen News"
-msgstr "Pause between news"
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:107
-msgid ""
-"Geben Sie an, wie lange der Ticker warten soll (in Millisekunden), bis er "
-"die nächste News ausgibt."
-msgstr ""
-"Enter how long (in milliseconds) the ticker should wait before displaying "
-"the next announcement."
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:110
-msgid "Text am Anfang der Ausgabe"
-msgstr "Text at the begin of the output"
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:111
-msgid ""
-"Dieser Text wird ausgegeben, während die News in den Ticker geladen werden, "
-"also am Anfang des ersten Durchlaufs."
-msgstr ""
-"This text will be displayed while the announcement is being loaded, i.e. at "
-"the start of the first cycle."
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:114
-msgid "Text am Ende der Ausgabe"
-msgstr "Text at the end of the output"
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:115
-msgid ""
-"Dieser Text wird ausgegeben, nachdem alle News angezeigt wurden, also am "
-"Ende jedes Durchlaufs."
-msgstr ""
-"This text will be displayed after all the announcements have been displayed, "
-"i.e. at the end of the each cycle."
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:119
-msgid "Dieser Text wird ausgegeben, wenn keine News verfügbar sind."
-msgstr "This text will be displayed if no announcement is available."
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:122
-msgid "Ticker sofort starten?"
-msgstr "Start the ticker immediately?"
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:123
-msgid ""
-"Wählen Sie diese Option, wenn das Modul den Ticker automatisch starten soll. "
-"Bei längeren Ladezeiten der Seite, in der Sie den Ticker integriert haben, "
-"kann es sinnvoll sein, den Ticker erst zu starten, wenn die Seite komplett "
-"geladen ist. Deaktivieren Sie dafür diese Option, und tragen Sie im <body>-"
-"Tag der Seite das Attribut onLoad=\"newsticker\" ein."
-msgstr ""
-"Choose this option if you want the ticker module to start automatically. If "
-"the page where the ticker is integrated takes a while to be loaded, then it "
-"possibly makes sense not to start the ticker before the page has completely "
-"been loaded. To this end, deactivate this option and enter the attribute "
-"onLoad=\"newsticker\" into the <body>-tag of the page."
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:126
-msgid "Nur JavaScript-Funktion ausgeben?"
-msgstr "Output JavaScript functions, only?"
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:127
-msgid ""
-"Wählen Sie diese Option, wenn das Modul nur die JavaScript-Funktion ausgeben "
-"soll. Die Funktionsname ist newsticker(). Sie kann z.B. innerhalb von "
-"<textarea> eingesetzt werden. Beispiel:"
-msgstr ""
-"Choose this option if the module should output the JavaScript function, "
-"only. The function's name is newsticker(). It can be entered in the "
-"<textarea>. For example:"
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:142
-msgid "Angaben zum HTML-Tag &lt;textarea&gt;"
-msgstr "Information about HTML Tag &lt;textarea&gt;"
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:144
-msgid "Anzahl Zeilen im Ausgabefenster"
-msgstr "Amount of lines in the output window"
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:145
-msgid ""
-"Geben Sie die Anzahl der Zeilen an. Es sind nur Werte zwischen 1 und 10 "
-"erlaubt."
-msgstr "Enter the number of lines. Values between 1 and 10 are allowed, only."
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:148
-msgid "Anzahl der Zeichen pro Zeile"
-msgstr "Amount of characters per line"
-
-#: ../lib/extern/elements/main/ExternElementMainNewsticker.class.php:149
-msgid ""
-"Geben Sie die Anzahl der Zeichen pro Zeile an. Es sind nur Werte zwischen 10 "
-"und 200 erlaubt."
-msgstr ""
-"Enter the number of characters per line. Values between 10 and 200 are "
-"allowed, only."
-
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:68
-#: ../lib/extern/modules/ExternModuleDownload.class.php:63
-#: ../lib/extern/modules/ExternModuleTemplateDownload.class.php:66
-#: ../lib/evaluation/classes/EvaluationExportManagerCSV.class.php:137
-#: ../lib/filesystem/FileArchiveManager.class.php:458
-#: ../lib/admissionrules/timedadmission/templates/configure.php:11
-#: ../lib/admissionrules/timedadmission/templates/configure.php:29
-#: ../lib/admissionrules/participantrestrictedadmission/templates/configure.php:7
-#: ../templates/consultations/mail.php:2 ../templates/datafields/date.php:14
-#: ../app/controllers/consultation/export.php:26
-#: ../app/controllers/consultation/export.php:59
-#: ../app/controllers/messages.php:382 ../app/controllers/messages.php:436
-#: ../app/controllers/room_management/planning.php:1093
-#: ../app/controllers/room_management/planning.php:1096
-#: ../app/views/resources/print/clipboard_rooms.php:89
-#: ../app/views/files/_files_thead.php:40
-#: ../app/views/materialien/files/range.php:30
-#: ../app/views/materialien/files/index.php:13
-#: ../app/views/course/timesrooms/editDate.php:18
-#: ../app/views/course/timesrooms/createSingleDate.php:8
-#: ../app/views/course/feedback/index.php:41
-#: ../app/views/course/dates/singledate.php:8
-#: ../app/views/files_dashboard/search.php:45 ../app/views/messages/read.php:40
-#: ../app/views/messages/print.php:6
-#: ../app/views/admin/cronjobs/schedules/edit.php:225
-#: ../app/views/my_courses/waiting_list.php:24
-#: ../app/views/calendar/single/edit.php:32
-#: ../app/views/calendar/single/edit.php:63
-msgid "Datum"
-msgstr "Date"
-
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:68
-#: ../lib/extern/modules/ExternModuleNews.class.php:61
-#: ../lib/visual.inc.php:711 ../app/views/messages/write.php:61
-msgid "Nachricht"
-msgstr "Message"
-
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:78
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:81
-#: ../lib/extern/extern_config.inc.php:64
-msgid "News"
-msgstr "Announcements"
-
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:117
-msgid "Datum/Autor anzeigen"
-msgstr "Display date/author"
-
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:118
-msgid ""
-"Anzeige von Datum und Autor, nur Datum oder nur Autor in der Spalte Datum/"
-"Autor."
-msgstr ""
-"Display in the column date/author either date and author, date only, or "
-"author only."
-
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:120
-msgid "Datum und Autor"
-msgstr "Date and author"
-
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:120
-msgid "nur Datum"
-msgstr "date only"
-
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:123
-msgid "Autorenname nicht verlinken"
-msgstr "Do not link author name"
-
-#: ../lib/extern/elements/main/ExternElementMainNews.class.php:124
-msgid ""
-"Wählen Sie diese Option, wenn der Autorenname nicht auf das Modul "
-"Personendetails verlinkt werden soll."
-msgstr ""
-"Choose this option if the author's name should not be linked to the personal "
-"details module."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:122
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:113
-msgid "Nur Lehrende"
-msgstr "Only lecturers"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:123
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:114
-msgid ""
-"Es werden nur Personen angezeigt, die in einer sichtbaren Veranstaltung des "
-"aktuellen Semesters Lehrperson sind."
-msgstr ""
-"Only those persons are displayed that are lecturers in a visible course of "
-"the current semester."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersondetails.class.php:128
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:119
-msgid ""
-"Das Modul zeigt nur Personen an, die eine Standardadresse angegeben haben."
-msgstr "The module displays persons with default address, only."
-
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:97
-msgid "Sortierung der Personenliste"
-msgstr "Ordering of the personal list"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:105
-#: ../app/controllers/resources/room_request.php:506
-#: ../app/controllers/resources/room_request.php:2378
-#: ../app/controllers/module/module.php:1392
-#: ../app/controllers/admin/datafields.php:272
-#: ../app/controllers/admin/smileys.php:286
-#: ../app/controllers/studiengaenge/versionen.php:347
-#: ../app/controllers/studiengaenge/studiengaenge.php:1088
-#: ../app/controllers/files.php:232 ../app/views/files/flat.php:76
-#: ../app/views/course/enrolment/_priocourses.php:55
-#: ../app/views/course/enrolment/_priocourses.php:78
-msgid "Filter"
-msgstr "Filter"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:107
-msgid "Rechtestufe in Einrichtung"
-msgstr "Permission level in institute"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:108
-msgid ""
-"Es werden nur Personen angezeigt, die in einer Einrichtung die angegebenen "
-"Rechtestufen besitzen"
-msgstr ""
-"Only people will be displayed which have the specified permission level in "
-"an institute"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:110
-#: ../lib/classes/UserLookup.class.php:423
-#: ../app/views/admin/autoinsert/index.php:53
-#: ../app/views/admin/autoinsert/index.php:75
-msgid "Tutor"
-msgstr "Tutor"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:110
-#: ../lib/classes/UserLookup.class.php:424
-#: ../app/views/admin/autoinsert/index.php:49
-#: ../app/views/admin/autoinsert/index.php:74
-msgid "Dozent"
-msgstr "Lecturer"
-
-#: ../lib/extern/elements/main/ExternElementMainTemplatePersBrowse.class.php:110
-msgid "Administrator"
-msgstr "Administrator"
-
-#: ../lib/extern/elements/ExternElementTreePath.class.php:55
-msgid "Navigations-Pfad"
-msgstr "Navigation path"
-
-#: ../lib/extern/elements/ExternElementTreePath.class.php:56
-msgid "Eigenschaften des Navigations-Pfades innerhalb einer Baum-Navigation."
-msgstr "Properties of the navigations path within tree navigation."
-
-#: ../lib/extern/elements/ExternElementTreePath.class.php:73
-msgid "Pfad-Trennzeichen"
-msgstr "Path separator"
-
-#: ../lib/extern/elements/ExternElementTreePath.class.php:74
-msgid ""
-"Geben Sie ein oder mehrere Zeichen ein, die als Trennzeichen zwischen den "
-"Links im Navigations-Pfad erscheinen sollen."
-msgstr ""
-"Enter one or more characters to appear as separators between links in the "
-"navigations path."
-
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:58
-msgid "Veranstaltungsname/Zeiten(Termine)/Lehrende"
-msgstr "Course name/times (course dates)/lecturers"
-
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:59
-msgid ""
-"Formatierung von Veranstaltungsname/Zeiten(Termine)/Lehrenden in der "
-"Veranstaltungsübersicht."
-msgstr ""
-"Formatting of course name/times (course dates)/lecturers in course overview."
-
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:61
-msgid "Angaben zum HTML-Tag &lt;td&gt;"
-msgstr "Information about HTML tag &lt;td&gt;"
-
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:62
-msgid "Ausrichtung Veranstaltungsname"
-msgstr "Course name alignment"
-
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:62
-msgid "Ausrichtung Zeiten(Termine)/Lehrenden"
-msgstr "Alignment of times(course dates)/lecturers"
-
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:63
-msgid "Schrift Zeiten(Termine)/Lehrende (HTML-Tag &lt;font&gt;)"
-msgstr "Font for times(course dates)/lecturers (HTML tag &lt;font&gt;)"
-
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:99
-msgid "Spaltenbreite Zeiten"
-msgstr "Times column width"
-
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:100
-msgid "Breite der Spalte \"Zeiten(Termine)\" in Prozent."
-msgstr "Width of the column \"Times(course dates)\" in percent."
-
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:103
-msgid "Horizontale Ausrichtung Zeiten"
-msgstr "Horizontal alignment times"
-
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:104
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:110
-#: ../lib/extern/views/ExternEditHtml.class.php:433
-msgid "Wählen Sie aus der Auswahlliste die Art der horizontalen Ausrichtung."
-msgstr "Select the type of horizontal arrangement from the drop down menu."
-
-#: ../lib/extern/elements/ExternElementLecturesInnerTable.class.php:109
-msgid "Horizontale Ausrichtung Lehrende"
-msgstr "Horizontal alignment lecturers"
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:58
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:58
-msgid "Angaben zur Ausgabe von Lehrveranstaltungen."
-msgstr "Information about displaying courses."
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:70
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:70
-#: ../config/mvv_config.php:13
-msgid "Wintersemester"
-msgstr "Winter semester"
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:71
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:71
-#: ../config/mvv_config.php:12
-msgid "Sommersemester"
-msgstr "Summer semester"
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:140
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:138
-msgid "Bezeichnung Sommersemester"
-msgstr "Summer semester description"
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:141
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:139
-msgid "Alternative Bezeichnung für den Begriff \"Sommersemester\"."
-msgstr "Alternative notation for \"Summer semester\"."
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:144
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:142
-msgid "Bezeichnung Wintersemester"
-msgstr "Winter semester description"
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:145
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:143
-msgid "Alternative Bezeichnung für den Begriff \"Wintersemester\"."
-msgstr "Alternative notation for \"Winter semester\"."
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:148
-msgid "Darstellungsart"
-msgstr "Display type"
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:149
-msgid "Wählen Sie zwischen Listendarstellung und reiner Textdarstellung."
-msgstr "Choose between list view or plain text view."
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:150
-msgid "nur Text"
-msgstr "text only"
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:154
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:146
-#: ../lib/classes/SemBrowse.class.php:1337
-msgid "Veranstaltungsklassen"
-msgstr "Course classes"
-
-#: ../lib/extern/elements/ExternElementPersondetailsLectures.class.php:155
-#: ../lib/extern/elements/ExternElementPersondetailsLecturesTemplate.class.php:147
-msgid "Wählen Sie aus, welche Veranstaltungsklassen angezeigt werden sollen."
-msgstr "Choose the course classes to be displayed."
-
-#: ../lib/extern/elements/ExternElementLinkInternTemplate.class.php:59
-msgid "Eigenschaften der Verlinkung zu anderen Modulen."
-msgstr "Properties of the link to other modules."
-
-#: ../lib/extern/elements/ExternElementTableFooter.class.php:55
-msgid "Tabellenfuß"
-msgstr "Table footer"
-
-#: ../lib/extern/elements/ExternElementTableFooter.class.php:56
-msgid "Der Tabellenfuß enthält keine administrierbaren Attribute."
-msgstr "The table footer does not contain any administrative attributes."
-
-#: ../lib/extern/elements/ExternElementTableParagraph.class.php:56
-msgid "Allgemeine Angaben zum Absatz"
-msgstr "General information about paragraph"
-
-#: ../lib/extern/elements/ExternElementTableParagraph.class.php:57
-msgid "Der Absatz wird mit Hilfe einer Tabelle aufgebaut."
-msgstr "The paragraph will be constructed with the help of a table."
-
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:58
-#: ../lib/extern/elements/ExternElementTreeLevelContent.class.php:58
-msgid "Inhalt der Ebene"
-msgstr "Content at this level"
-
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:59
-#: ../lib/extern/elements/ExternElementTreeLevelContent.class.php:59
-msgid "Formatierung des Ebeneninhalts in einer Baum-Navigation."
-msgstr "Formatting of the level content in tree navigation."
-
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:65
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:86
-msgid "Stra&szlig;e"
-msgstr "Street"
-
-#: ../lib/extern/elements/ExternElementRangeTreeLevelContent.class.php:84
-#: ../lib/extern/elements/ExternElementRangeTreeLevelName.class.php:88
-msgid "Bezeichnungen"
-msgstr "Notations"
-
-#: ../lib/extern/elements/ExternElementTableHeadrow.class.php:57
-#: ../lib/extern/modules/ExternModuleGlobal.class.php:73
-msgid "Kopfzeile"
-msgstr "Header"
-
-#: ../lib/extern/elements/ExternElementTableHeadrow.class.php:58
-msgid "Angaben, die die Kopfzeile einer Tabelle betreffen."
-msgstr "Information about table header."
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:57
-msgid "Informationen aus Stud.IP"
-msgstr "Information from Stud.IP"
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:58
-msgid ""
-"Anzeige weiterer Informationen aus Stud.IP im Modul &quot;"
-"Veranstaltungsdetails&quot;."
-msgstr ""
-"Display further information from Stud.IP in the module &quot;Course "
-"details&quot;."
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:66
-msgid "Weitere Informationen aus Stud.IP zu dieser Veranstaltung"
-msgstr "Further information from Stud.IP about this course"
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:67
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:96
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:231
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:484
-msgid "Heimatinstitut"
-msgstr "Home institute"
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:68
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:96
-msgid "beteiligte Institute"
-msgstr "involved institutes"
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:69
-msgid "In Stud.IP angemeldete Teilnehmende"
-msgstr "Participants logged into Stud.IP"
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:70
-msgid "Anzahl der Postings im Stud.IP-Forum"
-msgstr "Amount of postings in the Stud.IP forum"
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:71
-msgid "Anzahl der Dokumente im Stud.IP-Downloadbereich"
-msgstr "Amount of documents in the Stud.IP download area"
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:93
-msgid ""
-"Geben Sie jeweils einen Text ein, der an der entsprechenden Stelle "
-"ausgegeben werden soll."
-msgstr "In each case, enter the text to be displayed at the respective place."
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:97
-#: ../lib/classes/globalsearch/GlobalSearchForum.php:19
-#: ../lib/classes/Siteinfo.php:531 ../lib/archiv.inc.php:257
-#: ../lib/archiv.inc.php:387
-msgid "Forenbeiträge"
-msgstr "Postings"
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:97
-#: ../lib/classes/Siteinfo.php:495 ../lib/archiv.inc.php:293
-#: ../lib/archiv.inc.php:388 ../lib/navigation/MVVNavigation.php:84
-#: ../app/views/fachabschluss/kategorien/kategorie.php:39
-#: ../app/views/materialien/files/details.php:14
-#: ../app/views/admin/user/_course_files.php:46
-#: ../app/views/admin/user/_institute_files.php:31
-#: ../app/views/studiengaenge/versionen/version.php:102
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:320
-msgid "Dokumente"
-msgstr "Documents"
-
-#: ../lib/extern/elements/ExternElementStudipInfo.class.php:108
-msgid "Schriftformatierung für Textersetzungen"
-msgstr "Font formatting of text substitution"
-
-#: ../lib/extern/elements/ExternElementTableGroup.class.php:57
-msgid "Gruppenüberschriften"
-msgstr "Group headers"
-
-#: ../lib/extern/elements/ExternElementTableGroup.class.php:58
-msgid ""
-"Gruppenüberschriften sind Tabellenzeilen, die eine neue Gruppe einleiten."
-msgstr "Group headers are table rows that introduce a new group."
-
-#: ../lib/extern/elements/ExternElementTableHeader.class.php:57
-msgid "Tabellenkopf"
-msgstr "Table header"
-
-#: ../lib/extern/elements/ExternElementTableHeader.class.php:58
-msgid "Angaben zur Gestaltung der Tabelle."
-msgstr "Information about table layout."
-
-#: ../lib/extern/elements/ExternElementTreeLevelName.class.php:58
-#: ../lib/extern/elements/ExternElementRangeTreeLevelName.class.php:58
-msgid "Name der Ebene"
-msgstr "Level name"
-
-#: ../lib/extern/elements/ExternElementTreeLevelName.class.php:59
-#: ../lib/extern/elements/ExternElementRangeTreeLevelName.class.php:59
-msgid "Formatierung des Ebenennamens in einer Baum-Navigation."
-msgstr "Formatting of level name in tree navigation."
-
-#: ../lib/extern/elements/ExternElementTableParagraphHeadline.class.php:56
-msgid "Absatzüberschrift"
-msgstr "Paragraph heading"
-
-#: ../lib/extern/elements/ExternElementTableParagraphHeadline.class.php:57
-msgid "Angaben zur Formatierung einer Absatzüberschrift."
-msgstr "Information about formatting of paragraph heading."
-
-#: ../lib/extern/elements/ExternElementTableParagraphText.class.php:56
-msgid "Text im Absatz"
-msgstr "Text in paragraph"
-
-#: ../lib/extern/elements/ExternElementTableParagraphText.class.php:57
-msgid "Angaben zur Formatierung des Absatztextes."
-msgstr "Information about formatting of paragraph text."
-
-#: ../lib/extern/elements/ExternElementTableParagraphText.class.php:77
-#: ../lib/extern/elements/ExternElementList.class.php:75
-#: ../lib/extern/elements/ExternElementTableParagraphSubHeadline.class.php:77
-msgid "Einzug"
-msgstr "Indent"
-
-#: ../lib/extern/elements/ExternElementTableParagraphText.class.php:78
-#: ../lib/extern/elements/ExternElementList.class.php:76
-#: ../lib/extern/elements/ExternElementTableParagraphSubHeadline.class.php:78
-msgid "Linker Einzug"
-msgstr "Left indent"
-
-#: ../lib/extern/elements/ExternElementTableParagraphText.class.php:79
-msgid ""
-"Geben Sie an, wie weit (Pixel) der Text im Absatz links eingerückt werden "
-"soll."
-msgstr ""
-"Enter how far (in pixel) the text in the paragraph should be indented at the "
-"left."
-
-#: ../lib/extern/elements/ExternElementTreeKids.class.php:58
-msgid "Ausgabe der Unterebenen"
-msgstr "Output of sub-levels"
-
-#: ../lib/extern/elements/ExternElementTreeKids.class.php:59
-msgid "Formatierung der Unterebenen in einer Baum-Navigation."
-msgstr "Formatting of sub-levels in tree navigation."
-
-#: ../lib/extern/elements/ExternElementStudipLink.class.php:56
-msgid "Link zum Stud.IP Administrationsbereich"
-msgstr "Link to Stud.IP administration area"
-
-#: ../lib/extern/elements/ExternElementStudipLink.class.php:57
-msgid "Link zum direkten Einsprung in den Stud.IP Administrationsbereich."
-msgstr "Link to directly proceed to the Stud.IP administration area."
-
-#: ../lib/extern/elements/ExternElementStudipLink.class.php:66
-msgid "Daten ändern"
-msgstr "Change data"
-
-#: ../lib/extern/elements/ExternElementStudipLink.class.php:96
-msgid "Linktext"
-msgstr "Link text"
-
-#: ../lib/extern/elements/ExternElementStudipLink.class.php:97
-msgid "Geben Sie den Text für den Link ein."
-msgstr "Enter link text."
-
-#: ../lib/extern/elements/ExternElementStudipLink.class.php:101
-msgid "Anwählen, wenn ein Bild als Link angezeigt werden soll."
-msgstr "To be selected if an image file should be displayed as link."
-
-#: ../lib/extern/elements/ExternElementStudipLink.class.php:105
-msgid "Bild-URL"
-msgstr "Picture URL"
-
-#: ../lib/extern/elements/ExternElementStudipLink.class.php:106
-msgid ""
-"Geben Sie die URL eines Bildes ein, dass als Link dienen soll. Wenn Sie "
-"keine URL angeben, wird ein Standard-Bild (Pfeile) ausgegeben."
-msgstr ""
-"Enter the URL of the image file to serve as link. If you do not enter an "
-"URL, then a default image (arrow icon) will be displayed."
-
-#: ../lib/extern/elements/ExternElementBody.class.php:55
-#: ../lib/extern/modules/ExternModuleGlobal.class.php:70
-msgid "Seitenkörper"
-msgstr "Page body"
-
-#: ../lib/extern/elements/ExternElementBody.class.php:56
-msgid "Eigenschaften des Seitenkörpers (HTML-Tag &gt;body&lt;)."
-msgstr "Page body properties (HTML tag &gt;body&lt;)."
-
-#: ../lib/extern/elements/ExternElementTableRow.class.php:57
-#: ../lib/extern/modules/ExternModuleGlobal.class.php:75
-msgid "Datenzeile"
-msgstr "Data record"
-
-#: ../lib/extern/elements/ExternElementTableRow.class.php:58
-msgid "Angaben zur Formatierung einer Datenzeile."
-msgstr "Information about formatting a data record."
-
-#: ../lib/extern/elements/ExternElementList.class.php:54
-msgid "Aufzählungsliste"
-msgstr "Numbered list"
-
-#: ../lib/extern/elements/ExternElementList.class.php:55
-msgid "Eigenschaften einer Aufzählungsliste."
-msgstr "Properties of numbered list. "
-
-#: ../lib/extern/elements/ExternElementList.class.php:77
-msgid ""
-"Geben Sie an, wie weit (Pixel) die Aufzählungsliste im Absatz links "
-"eingerückt werden soll."
-msgstr ""
-"Enter how far (in pixels) within the paragraph the numbered list is to be "
-"indented to the left."
-
-#: ../lib/extern/elements/ExternElementTableParagraphSubHeadline.class.php:56
-msgid "Überschrift eines Unterabsatzes"
-msgstr "Heading of sub-paragraph"
-
-#: ../lib/extern/elements/ExternElementTableParagraphSubHeadline.class.php:57
-msgid "Angaben zur Formatierung der Überschrift eines Unterabsatzes."
-msgstr "Information about formatting the heading of a sub-paragraph."
-
-#: ../lib/extern/elements/ExternElementTableParagraphSubHeadline.class.php:79
-msgid ""
-"Geben Sie an, wie weit (Pixel) die Überschrift im Absatz links eingerückt "
-"werden soll."
-msgstr ""
-"Enter how far (in pixels) the heading of the paragraph should be indented at "
-"the left."
-
-#: ../lib/extern/elements/ExternElementTemplateGeneric.class.php:59
-msgid "Standard Template"
-msgstr "Default template"
-
-#: ../lib/extern/elements/ExternElementTemplateGeneric.class.php:60
-msgid "Hier kann ein Template hinterlegt werden."
-msgstr "A template can be stored here."
-
-#: ../lib/extern/elements/ExternElementTemplateGeneric.class.php:68
-#: ../lib/extern/elements/ExternElementTemplateGeneric.class.php:96
-msgid "Geben Sie hier das Template ein."
-msgstr "Enter the template."
-
-#: ../lib/extern/elements/ExternElementTemplateGeneric.class.php:89
-msgid "Beschreibung der Marker"
-msgstr "Description of markers"
-
-#: ../lib/extern/elements/ExternElementTemplateGeneric.class.php:95
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:72
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:75
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:92
-#: ../lib/extern/modules/ExternModuleTemplateDownload.class.php:83
-#: ../app/views/event_log/admin.php:8 ../app/views/event_log/edit.php:16
-msgid "Template"
-msgstr "Template"
-
-#: ../lib/extern/lib/ExternConfig.class.php:143
-msgid ""
-"Sie haben die maximale Anzahl an Konfigurationen für dieses Modul erreicht! "
-"Kopieren fehlgeschlagen!"
-msgstr ""
-"You have reached the maximum amount of configurations for this module. "
-"Copying failed!"
-
-#: ../lib/extern/lib/ExternConfig.class.php:540
-#: ../lib/extern/views/extern_info_module.inc.php:90
-msgid "URL_DER_INCLUDE_SEITE"
-msgstr "URL_OF_THE_INCLUDED_PAGE"
-
-#: ../lib/extern/lib/ExternConfig.class.php:674
-msgid "Sie verfügen nicht über ausreichend Rechte für diese Aktion."
-msgstr "You do not have sufficient permissions for this action."
-
-#: ../lib/extern/lib/ExternEdit.class.php:114
-#: ../lib/extern/lib/ExternEdit.class.php:122
-#, php-format
-msgid "Angaben zum HTML-Tag &lt;%s&gt;"
-msgstr "Information about HTML-Tag &lt;%s&gt;"
-
-#: ../lib/extern/lib/ExternEdit.class.php:172
-#: ../lib/classes/Interactable.class.php:159
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2064
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2398
-#: ../lib/evaluation/evaluation_admin_template.lib.php:747
-#: ../lib/evaluation/evaluation_admin_template.lib.php:750
-#: ../lib/evaluation/evaluation_admin_template.lib.php:887
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:525
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:533
-#: ../templates/sidebar/time-range-filter.php:28
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:91
-#: ../app/views/fachabschluss/faecher/fach.php:105
-#: ../app/views/fachabschluss/kategorien/kategorie.php:50
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:42
-#: ../app/views/module/module/modulteil.php:465
-#: ../app/views/module/module/modul.php:685
-#: ../app/views/module/module/lvgruppe.php:24
-#: ../app/views/course/timesrooms/cancel.php:6
-#: ../app/views/course/timesrooms/cancelStack.php:8
-#: ../app/views/course/basicdata/view.php:323
-#: ../app/views/course/studygroup/edit.php:51
-#: ../app/views/settings/messaging.php:119
-#: ../app/views/settings/account/index.php:158
-#: ../app/views/settings/categories.php:77 ../app/views/settings/privacy.php:93
-#: ../app/views/settings/privacy.php:183
-#: ../app/views/settings/studies/studiengang.php:103
-#: ../app/views/settings/studies/studiengang.php:157
-#: ../app/views/settings/studies/institute.php:54
-#: ../app/views/settings/studies/institute.php:98
-#: ../app/views/settings/notification.php:95
-#: ../app/views/settings/deputies.php:60
-#: ../app/views/settings/userdomains.php:49
-#: ../app/views/settings/userdomains.php:84
-#: ../app/views/settings/userdomains.php:112
-#: ../app/views/settings/calendar.php:157 ../app/views/settings/password.php:27
-#: ../app/views/settings/details.php:107
-#: ../app/views/admin/configuration/edit_configuration.php:59
-#: ../app/views/admin/additional/index.php:33
-#: ../app/views/admin/specification/edit.php:75
-#: ../app/views/admin/user/edit_institute.php:62
-#: ../app/views/admin/plugin/default_activation.php:41
-#: ../app/views/admin/lockrules/_form.php:45
-#: ../app/views/admin/lockrules/_form.php:93
-#: ../app/views/admin/datafields/edit.php:198
-#: ../app/views/tour/admin_conflicts.php:54
-#: ../app/views/institute/basicdata/index.php:120
-#: ../app/views/help_content/admin_conflicts.php:35
-#: ../app/views/help_content/admin_conflicts.php:36
-#: ../app/views/lvgruppen/lvgruppen/lvgruppe.php:23
-#: ../app/views/studiengaenge/versionen/abschnitt.php:28
-#: ../app/views/studiengaenge/versionen/modul_zuordnung.php:31
-#: ../app/views/studiengaenge/versionen/modulteil_semester.php:52
-#: ../app/views/studiengaenge/versionen/version.php:141
-#: ../app/views/studiengaenge/stgteilbezeichnungen/stgteilbezeichnung.php:33
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:100
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:342
-msgid "Übernehmen"
-msgstr "Accept"
-
-#: ../lib/extern/lib/ExternElementMain.class.php:67
-msgid ""
-"In den Grundeinstellungen können Sie allgemeine Daten des Elements ändern."
-msgstr ""
-"In the basic settings you can change the general details of the element."
-
-#: ../lib/extern/lib/ExternElementMain.class.php:116
-msgid ""
-"Nur bei Benutzung der SRI-Schnittstelle für dieses Modul: Geben Sie hier die "
-"vollständige URL der Seite an, in die die Ausgabe des Moduls eingefügt "
-"werden soll."
-msgstr ""
-"Only when using the SRI interface: Enter the complete URL of the webpage "
-"where the output of the module is to be incorporated."
-
-#: ../lib/extern/lib/ExternElementMain.class.php:119
-msgid "URL des SRI-Templates"
-msgstr "URL of SRI-template"
-
-#: ../lib/extern/lib/ExternElementMain.class.php:126
-msgid "Einbindung des Moduls"
-msgstr "Incorporating this module"
-
-#: ../lib/extern/lib/ExternElementMain.class.php:130
-msgid ""
-"URL der Seite, in der die Ausgabe des Moduls per Include (z.B. durch eine "
-"Script-Sprache) eingebunden wird."
-msgstr ""
-"URL of the webpage where the output of this module is be incorporated via "
-"include (e.g. by use of a script language)."
-
-#: ../lib/extern/views/ExternEditGeneric.class.php:58
-msgid "serifenlose Schrift"
-msgstr "sans-serif font"
-
-#: ../lib/extern/views/ExternEditGeneric.class.php:59
-msgid "Serifenschrift"
-msgstr "Serif font"
-
-#: ../lib/extern/views/ExternEditGeneric.class.php:60
-msgid "diktengleiche Schrift"
-msgstr "mono-space font"
-
-#: ../lib/extern/views/extern_info_module.inc.php:46
-#: ../lib/classes/Visibility.php:215 ../app/views/admin/user/edit.php:32
-msgid "Allgemeine Daten"
-msgstr "General details"
-
-#: ../lib/extern/views/extern_info_module.inc.php:49
-msgid "Modulname"
-msgstr "Module name"
-
-#: ../lib/extern/views/extern_info_module.inc.php:57
-#: ../templates/wiki/pageversions.php:25
-#: ../app/views/resources/_common/_request_info.php:49
-msgid "Erstellt am"
-msgstr "Created on"
-
-#: ../lib/extern/views/extern_info_module.inc.php:61
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:135
-#: ../templates/wiki/list.php:23 ../app/views/admission/courseset/index.php:34
-#: ../app/views/course/basicdata/view.php:52
-#: ../app/views/admin/smileys/statistics.php:11
-#: ../app/views/my_courses/_group.php:27
-msgid "Letzte Änderung"
-msgstr "Last changes"
-
-#: ../lib/extern/views/extern_info_module.inc.php:73
-msgid "Direkter Link"
-msgstr "Direct link"
-
-#: ../lib/extern/views/extern_info_module.inc.php:75
-msgid ""
-"Diese Adresse können Sie in einen Link auf Ihrer Website integrieren, um auf "
-"die Ausgabe des Moduls zu verweisen."
-msgstr ""
-"You can insert this address in your website as link referring to the "
-"module's output."
-
-#: ../lib/extern/views/extern_info_module.inc.php:79
-msgid "Stud.IP-Remote-Include (SRI)  Schnittstelle"
-msgstr "Stud.IP Remote Include (SRI) Interface"
-
-#: ../lib/extern/views/extern_info_module.inc.php:80
-msgid ""
-"Der unten aufgeführte Textblock ermöglicht Ihnen den Zugriff auf die Stud.IP-"
-"Remote-Include-Schnittstelle (SRI)."
-msgstr ""
-"The text block below enables you to access the Stud.IP Remote Include "
-"Interface (SRI)."
-
-#: ../lib/extern/views/extern_info_module.inc.php:84
-msgid ""
-"Kopieren Sie dieses Code-Schnipsel in eine beliebige Stelle im HTML-"
-"Quelltext einer Seite Ihrer Website."
-msgstr ""
-"Copy this code snippet in any place in the HTML source code of a webpage in "
-"your website."
-
-#: ../lib/extern/views/extern_info_module.inc.php:85
-msgid ""
-"Durch eine spezielle Art des Seitenaufrufs, wird an dieser Stelle die "
-"Ausgabe des Moduls eingefügt."
-msgstr ""
-"By way of some specific type of page loading, the module output will be "
-"incorporated at this position."
-
-#: ../lib/extern/views/extern_info_module.inc.php:86
-msgid "Link zur SRI-Schnittstelle"
-msgstr "Link to SRI interface"
-
-#: ../lib/extern/views/extern_info_module.inc.php:90
-#, php-format
-msgid ""
-"Ersetzen Sie %s durch die URL der Seite, in die Sie die Ausgabe des Moduls "
-"einfügen wollen. Diese Seite muss obigen Code-Schnipsel enthalten."
-msgstr ""
-"Replace %s with the URL of the webpage where the module output is to be "
-"incorporated. This webpage must include the above code snippet."
-
-#: ../lib/extern/views/extern_info_module.inc.php:95
-#: ../lib/extern/views/extern_edit_module.inc.php:59
-#: ../lib/extern/views/extern_edit_module.inc.php:149
-#: ../lib/extern/admin_extern.inc.php:302
-#: ../lib/export/export_run_xslt.inc.php:179
-#: ../lib/export/export_run_xslt.inc.php:181
-#: ../lib/export/export_choose_xslt.inc.php:147
-#: ../lib/export/export_choose_xslt.inc.php:190
-#: ../lib/export/export_choose_xslt.inc.php:229
-#: ../lib/export/export_xml.inc.php:124 ../lib/export/export_xml.inc.php:149
-#: ../templates/evaluation/config.php:109 ../templates/tour/tour.php:24
-#: ../templates/elearning/_new_account_form.php:78
-#: ../templates/elearning/_new_account_form.php:134
-#: ../templates/elearning/_new_account_form.php:156
-#: ../app/views/oer/market/discussion.php:3
-#: ../app/views/shared/log_event/show.php:58
-#: ../app/views/resources/room_request/decline.php:41
-#: ../app/views/resources/booking/move.php:35
-#: ../app/views/resources/booking/copy.php:35
-#: ../app/views/resources/booking/delete.php:19
-#: ../app/views/course/ilias_interface/view_object.php:9
-#: ../app/views/course/wizard/summary.php:48
-#: ../app/views/course/wizard/step.php:11
-#: ../app/views/course/details/index.php:503
-#: ../app/views/admin/plugin/default_activation.php:43
-#: ../app/views/privacy/index.php:50 ../app/views/privacy/index.php:52
-#: ../app/views/room_management/planning/copy_bookings.php:148
-#: ../app/views/room_management/planning/copy_bookings.php:229
-#: ../app/views/file/choose_folder_from_institute.php:62
-#: ../app/views/file/choose_file_from_course.php:62
-#: ../app/views/file/add_url.php:38 ../app/views/file/choose_folder.php:195
-#: ../app/views/file/choose_folder.php:201
-#: ../app/views/file/choose_folder.php:207
-#: ../app/views/file/choose_folder_from_course.php:69
-#: ../app/views/file/choose_file.php:166
-msgid "Zurück"
-msgstr "Back"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:59
-msgid "Geben Sie die Höhe der Tabellenzeile in Pixeln an."
-msgstr "Enter the height, in pixels, of the table rows."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:66
-msgid "Zeilenhöhe:"
-msgstr "Row height:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:88
-msgid "Geben Sie die Breite des äußeren Tabellenrahmens in Pixeln an."
-msgstr "Enter the width, in pixels, of the external table border."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:95
-msgid "Rahmendicke:"
-msgstr "Border thickness:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:115
-#: ../lib/extern/views/ExternEditHtml.class.php:129
-#: ../lib/extern/views/ExternEditHtml.class.php:143
-msgid ""
-"Geben Sie einen HTML-Farbnamen oder eine Farbe im Hex-Format (#RRGGBB) in "
-"das Textfeld ein, oder wählen Sie eine Farbe aus der Auswahlliste."
-msgstr ""
-"Enter a HTML colour name or a colour in Hex format (#RRGGBB) in the text "
-"field, or select a colour from the drop down menu."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:116
-msgid "Schriftfarbe"
-msgstr "Font colour"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:130
-msgid "Hintergrundfarbe:"
-msgstr "Background colour:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:144
-msgid "Rahmenfarbe"
-msgstr "Border colour"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:158
-#: ../lib/extern/views/ExternEditHtml.class.php:173
-#: ../lib/extern/views/ExternEditHtml.class.php:188
-#: ../lib/extern/views/ExternEditHtml.class.php:203
-#: ../lib/extern/views/ExternEditHtml.class.php:218
-msgid ""
-"Geben Sie einen HTML-Farbnamen oder eine Farbe im Hex-Format (#RRGGBB) in "
-"das Textfeld ein, oder wählen Sie eine Farbe aus der Auswahlliste. "
-msgstr ""
-"Enter a HTML colour name or a colour in Hex format (#RRGGBB) in the text "
-"field, or select a colour from the drop down menu. "
-
-#: ../lib/extern/views/ExternEditHtml.class.php:159
-msgid ""
-"Diese Farbe wird als zweite Farbe bei aktiviertem Zebra-Effekt ausgegeben."
-msgstr ""
-"This colour will be used as second colour when Zebra effect is activated."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:160
-msgid "2. Hintergrundf.:"
-msgstr "2nd background colour:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:174
-msgid "Diese Farbe wird seitenweit als Schriftfarbe benutzt."
-msgstr "This colour is used page-wide as font colour."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:175
-msgid "Schriftfarbe:"
-msgstr "Font colour:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:189
-msgid ""
-"Diese Farbe wird seitenweit für Verweise zu noch nicht besuchten Zielen "
-"benutzt."
-msgstr "This colour is used page-wide for links to targets not visited yet."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:190
-msgid "Linkfarbe (nicht besucht):"
-msgstr "Link colour (not visited):"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:204
-msgid ""
-"Diese Farbe wird seitenweit für Verweise zu bereits besuchten Zielen benutzt."
-msgstr "This colour is used page-wide for links to targets already visited."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:205
-msgid "Linkfarbe (besucht):"
-msgstr "Link colour (visited):"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:219
-msgid "Diese Farbe wird seitenweit für aktivierte Verweise benutzt."
-msgstr "This colour is used page-wide for activated links."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:220
-msgid "Linkfarbe (aktiviert):"
-msgstr "Link colour (activated):"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:333
-msgid ""
-"Geben Sie den Abstand zwischen Zelleninhalt und Zellenrand in Pixeln an."
-msgstr ""
-"Enter the space, in pixels, between the cell content and the cell border."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:340
-msgid "Cellpadding:"
-msgstr "Cell padding:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:359
-msgid "Geben Sie den Abstand zwischen benachbarten Zellen in Pixeln an."
-msgstr "Enter the space, in pixels, between neighbouring cells."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:366
-msgid "Cellspacing:"
-msgstr "Cell spacing:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:385
-msgid "Geben Sie die Breite des Elements in Prozent oder Pixeln an."
-msgstr "Enter the entire width of the element in percent or pixels."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:398
-msgid "Breite:"
-msgstr "Width:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:411
-#: ../lib/extern/views/ExternEditModule.class.php:167
-#: ../lib/extern/views/ExternEditModule.class.php:173
-#: ../lib/admissionrules/conditionaladmission/templates/configure.php:29
-#: ../lib/admissionrules/conditionaladmission/templates/configure.php:61
-#: ../app/views/course/feedback/_results.php:24
-msgid "Prozent"
-msgstr "Percent"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:418
-#: ../lib/extern/views/ExternEditModule.class.php:167
-#: ../lib/extern/views/ExternEditModule.class.php:177
-msgid "Pixel"
-msgstr "Pixel"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:446
-msgid "horizontale Ausrichtung:"
-msgstr "horizontal arrangement:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:471
-msgid "Wählen Sie aus der Auswahlliste die Art der vertikalen Ausrichtung."
-msgstr "Select a type of vertical arrangement from the drop down menu."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:484
-msgid "vertikale Ausrichtung:"
-msgstr "vertical arrangement:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:508
-msgid "Geben Sie die relative Schriftgröße an."
-msgstr "Enter the relative font size."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:509
-msgid "Schriftgröße:"
-msgstr "Font size:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:524
-msgid "Schriftart:"
-msgstr "Font type:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:525
-msgid "Wählen Sie eine Schriftart aus."
-msgstr "Select a font type."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:538
-msgid "Geben Sie einen CSS-Klassennamen aus Ihrer Stylesheet-Definition an."
-msgstr "Enter a CSS class name out of your stylesheet definition."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:539
-msgid "CSS-Klasse:"
-msgstr "CSS class:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:552
-msgid "Geben Sie Style-Sheet-Angaben ein."
-msgstr "Enter stylesheet information."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:553
-msgid "Style:"
-msgstr "Style:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:566
-msgid "Geben Sie einen Seitentitel an."
-msgstr "Enter page title."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:567
-msgid "Seiten-Titel:"
-msgstr "Page title:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:581
-msgid ""
-"Aktivieren Sie einen vertikalen oder horizontalen Zebra-Effekt für "
-"Tabellenzeilen/-spalten. "
-msgstr ""
-"Activate a vertical or horizontal Zebra effect for table rows / columns. "
-
-#: ../lib/extern/views/ExternEditHtml.class.php:582
-#: ../lib/extern/views/ExternEditHtml.class.php:599
-msgid "Geben Sie hierfür eine zweite Hintergrundfarbe an."
-msgstr "For that enter a second background colour."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:583
-#: ../lib/extern/views/ExternEditHtml.class.php:600
-msgid "Zebra-Effekt:"
-msgstr "Zebra effect:"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:584
-#: ../lib/extern/views/ExternEditHtml.class.php:601
-msgid "aus"
-msgstr "off"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:584
-msgid "horizontal"
-msgstr "horizontal"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:584
-msgid "vertikal"
-msgstr "vertical"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:598
-msgid "Aktivieren Sie einen Zebra-Effekt für die Spaltenüberschriften. "
-msgstr "Activate Zebra effect for the column heading."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:601
-msgid "an"
-msgstr "on"
-
-#: ../lib/extern/views/ExternEditHtml.class.php:615
-msgid ""
-"Geben Sie die URL eines Bildes an, das als Hintergrundbild für die gesamte "
-"Seite dienen soll."
-msgstr ""
-"Enter a URL of the image file, that should serve as the background image for "
-"the entire page."
-
-#: ../lib/extern/views/ExternEditHtml.class.php:616
-msgid "Hintergrundbild:"
-msgstr "Background picture:"
-
-#: ../lib/extern/views/extern_edit_module.inc.php:56
-#, php-format
-msgid ""
-"Es wurden bereits %s Konfigurationen angelegt. Sie können für dieses Module "
-"keine weiteren Konfigurationen anlegen."
-msgstr ""
-"%s configurations have already been created. You cannot create any further "
-"configurations for these modules."
-
-#: ../lib/extern/views/extern_edit_module.inc.php:119
-msgid "Bitte korrigieren Sie die mit * gekennzeichneten Werte!"
-msgstr "Please correct the values depicted by *!"
-
-#: ../lib/extern/views/extern_edit_module.inc.php:133
-msgid ""
-"Der Konfigurationsname wurde bereits für eine Konfiguration dieses Moduls "
-"vergeben. Bitte geben Sie einen anderen Namen ein."
-msgstr ""
-"The configuration name already is in use by a different configuration of "
-"this module. Please choose a different name."
-
-#: ../lib/extern/views/extern_edit_module.inc.php:137
-msgid ""
-"Die eingegebenen Werte wurden übernommen und der Name der Konfiguration "
-"geändert."
-msgstr ""
-"The entered values have been accepted and the name of the configuration has "
-"been changed."
-
-#: ../lib/extern/views/extern_edit_module.inc.php:141
-msgid "Die eingegebenen Werte wurden übernommen."
-msgstr "The entered values have been accepted."
-
-#: ../lib/extern/views/extern_edit_module.inc.php:152
-msgid ""
-"Um die Werte eines einzelnen Elements zu ändern, klicken Sie bitte den "
-"\"Übernehmen\"-Button innerhalb des jeweiligen Elements."
-msgstr ""
-"To change the value of each element please click the \"apply\" button inside "
-"the particular element."
-
-#: ../lib/extern/views/ExternEditModule.class.php:74
-#: ../lib/extern/views/ExternEditModule.class.php:196
-#: ../lib/extern/views/ExternEditModule.class.php:342
-#: ../lib/classes/admission/userfilter/DatafieldCondition.class.php:26
-msgid "Datenfeld"
-msgstr "Data field"
-
-#: ../lib/extern/views/ExternEditModule.class.php:80
-#: ../lib/extern/views/ExternEditModule.class.php:197
-#: ../app/views/admin/specification/_field.php:18
-msgid "Sortierung"
-msgstr "Ordering"
-
-#: ../lib/extern/views/ExternEditModule.class.php:82
-msgid "Reihenfolge/<br>Sichtbarkeit"
-msgstr "Sequence/<br>Visibility"
-
-#: ../lib/extern/views/ExternEditModule.class.php:142
-#: ../lib/extern/views/ExternEditModule.class.php:146
-#: ../lib/extern/views/ExternEditModule.class.php:392
-#: ../lib/extern/views/ExternEditModule.class.php:396
-msgid "Datenfeld verschieben"
-msgstr "Move data field"
-
-#: ../lib/extern/views/ExternEditModule.class.php:151
-msgid "Datenfeld ausblenden"
-msgstr "Hide data field"
-
-#: ../lib/extern/views/ExternEditModule.class.php:154
-msgid "Datenfeld einblenden"
-msgstr "Display data field"
-
-#: ../lib/extern/views/ExternEditModule.class.php:164
-msgid "Breite in:"
-msgstr "Width in:"
-
-#: ../lib/extern/views/ExternEditModule.class.php:165
-msgid ""
-"Wählen Sie hier, ob die Breiten der Tabellenspalten als Prozentwerte oder "
-"Pixel interpretiert werden sollen."
-msgstr ""
-"Choose whether the width of the table columns should be interpreted as "
-"percent values or pixels. "
-
-#: ../lib/extern/views/ExternEditModule.class.php:233
-msgid "Geben Sie den Namen der Konfiguration an."
-msgstr "Give the configuration a name."
-
-#: ../lib/extern/views/ExternEditModule.class.php:244
-msgid "Gruppen auswählen:"
-msgstr "Select group:"
-
-#: ../lib/extern/views/ExternEditModule.class.php:245
-msgid "Wählen Sie die Statusgruppen aus, die ausgegeben werden sollen."
-msgstr "Select the status groups to be displayed."
-
-#: ../lib/extern/views/ExternEditModule.class.php:278
-#: ../app/views/admin/statusgroups/editGroup.php:8
-#: ../app/views/contact/editGroup.php:12 ../app/views/contact/editGroup.php:14
-msgid "Gruppenname"
-msgstr "Group name"
-
-#: ../lib/extern/views/ExternEditModule.class.php:279
-msgid "alternativer Gruppenname"
-msgstr "alternative group name"
-
-#: ../lib/extern/views/ExternEditModule.class.php:280
-#: ../lib/extern/views/ExternEditModule.class.php:345
-#: ../app/controllers/admin/courses.php:989
-#: ../app/controllers/admin/courses.php:990
-#: ../app/controllers/calendar/contentbox.php:163
-#: ../app/views/admission/courseset/configure.php:6
-#: ../app/views/admission/courseset/configure.php:35
-#: ../app/views/materialien/files/range.php:27
-#: ../app/views/materialien/files/index.php:10
-#: ../app/views/admin/courseplanning/viewcolumns.php:4
-#: ../app/views/admin/user/new.php:49 ../app/views/admin/user/edit.php:60
-#: ../app/views/admin/datafields/new.php:103
-#: ../app/views/admin/datafields/edit.php:123
-msgid "Sichtbarkeit"
-msgstr "Visibility"
-
-#: ../lib/extern/views/ExternEditModule.class.php:344
-msgid "Reihenfolge"
-msgstr "Sequence"
-
-#: ../lib/extern/views/ExternEditModule.class.php:425
-msgid ""
-"Wählen Sie die Studienbereiche aus, deren Veranstaltungen angezeigt werden "
-"sollen."
-msgstr "Select the fields of study whose courses are to be displayed."
-
-#: ../lib/extern/views/ExternEditModule.class.php:426
-msgid "Sie können beliebig viele Studienbereiche auswählen."
-msgstr "Here, you can select arbitrarily many fields of study."
-
-#: ../lib/extern/views/ExternEditModule.class.php:451
-#: ../lib/classes/sidebar/SearchWidget.php:33
-#: ../lib/navigation/SearchNavigation.php:29
-#: ../lib/navigation/SearchNavigation.php:31
-#: ../lib/navigation/FilesNavigation.php:52
-#: ../templates/elearning/elearning_interface_edit.php:47
-#: ../templates/elearning/_searchfield.php:5
-#: ../app/controllers/search/courses.php:80
-#: ../app/controllers/room_management/overview.php:99
-#: ../app/views/shared/contacts/add_ansprechpartner.php:47
-#: ../app/views/shared/contacts/add_ansprechpartner.php:57
-#: ../app/views/shared/contacts/add_ansprechpartner.php:67
-msgid "Suche"
-msgstr "Search"
-
-#: ../lib/extern/views/ExternEditModule.class.php:454
-#, php-format
-msgid "Geben Sie '%s' ein, um alle Studienbereiche zu finden."
-msgstr "Enter '%s' to find all study areas."
-
-#: ../lib/extern/views/ExternEditModule.class.php:457
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:226
-#, php-format
-msgid "Ihre Suche ergab %s Treffer."
-msgstr "Your search had %s results."
-
-#: ../lib/extern/views/ExternEditModule.class.php:458
-msgid " (Suchergebnisse werden blau angezeigt)"
-msgstr " (Search results are shown blue)"
-
-#: ../lib/extern/views/ExternEditModule.class.php:477
-msgid "Marker"
-msgstr "Marker"
-
-#: ../lib/extern/views/ExternEditModule.class.php:488
-msgid "Globale Variablen"
-msgstr "Global variables"
-
-#: ../lib/extern/views/ExternEditModule.class.php:531
-#: ../lib/evaluation/evaluation_show.lib.php:305
-#: ../lib/elearning/ELearningUtils.class.php:510
-#: ../app/views/file/update.php:31
-msgid "Aktualisieren"
-msgstr "Update"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:75
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:78
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:92
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:97
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:90
-msgid "Verlinkung zum Modul MitarbeiterInnendetails"
-msgstr "Link to the staff details module"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:109
-msgid "Nutzerbild (groß)"
-msgstr "User picture (large)"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:110
-msgid "Nutzerbild (mittel)"
-msgstr "User picture (medium)"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:111
-msgid "Nutzerbild (klein)"
-msgstr "User picture (small)"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:115
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:161
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:140
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:159
-msgid "Der local-part der E-Mail-Adresse (vor dem @-Zeichen)"
-msgstr "Local part of the e-mail address (preceeding the @-symbol)"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersons.class.php:116
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:162
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:141
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:160
-msgid "Der domain-part der E-Mail-Adresse (nach dem @-Zeichen)"
-msgstr "Domain part of the e-mail address (following the @-symbol)"
-
-#: ../lib/extern/modules/ExternModuleLecturestable.class.php:69
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:79
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:71
-#: ../app/views/resources/room_request/overview.php:30
-#: ../app/views/resources/room_request/planning.php:145
-#: ../app/views/course/timesrooms/createCycle.php:41
-#: ../app/views/course/timesrooms/editStack.php:66
-#: ../app/views/course/timesrooms/editDate.php:7
-#: ../app/views/course/timesrooms/createSingleDate.php:24
-#: ../app/views/tour/edit_step.php:31
-#: ../app/views/my_courses/waiting_list.php:26
-#: ../app/views/room_management/overview/index.php:108
-msgid "Art"
-msgstr "Type"
-
-#: ../lib/extern/modules/ExternModuleLecturestable.class.php:82
-#: ../lib/extern/modules/ExternModuleLectures.class.php:64
-msgid "Anzahl Veranstaltungen/Gruppierung"
-msgstr "Number of courses/grouping"
-
-#: ../lib/extern/modules/ExternModuleLecturestable.class.php:84
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:98
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:90
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:88
-#: ../lib/extern/modules/ExternModuleLectures.class.php:66
-msgid "Link zum Modul Veranstaltungsdetails"
-msgstr "Link to course details module "
-
-#: ../lib/extern/modules/ExternModuleLecturestable.class.php:86
-#: ../lib/extern/modules/ExternModuleDownload.class.php:72
-#: ../lib/extern/modules/ExternModuleNews.class.php:68
-#: ../lib/extern/modules/ExternModulePersons.class.php:74
-#: ../lib/extern/modules/ExternModuleTemplateDownload.class.php:85
-#: ../lib/extern/modules/ExternModuleLectures.class.php:68
-msgid "Link zum Modul MitarbeiterInnendetails"
-msgstr "Link to staff details module "
-
-#: ../lib/extern/modules/ExternModulePersondetails.class.php:84
-msgid "eigene Kategorien"
-msgstr "personal categories"
-
-#: ../lib/extern/modules/ExternModuleNewsticker.class.php:129
-#: ../lib/extern/modules/views/newsticker_preview.inc.php:22
-#, php-format
-msgid "Das ist News Nummer %s!"
-msgstr "That is announcement no %s!"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:87
-msgid "Verlinkung der alpabetischen Liste zur Personenliste"
-msgstr "Linking the alphabetically ordered list with the personal list"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:89
-msgid "Verlinkung der Einrichtungsliste zur Personenliste"
-msgstr "Linking the list of institutes with the personal list"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:91
-msgid "Verlinkung der Personenliste zum Modul MitarbeiterInnendetails"
-msgstr "Linking personal details with the staff details module"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:93
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:104
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:99
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:93
-msgid "Haupttemplate"
-msgstr "Main template"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:94
-msgid "Einrichtungsliste"
-msgstr "List of institutes"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:95
-msgid "Personenliste"
-msgstr "Staff list"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:96
-msgid "Liste mit Anfangsbuchstaben der Nachnamen"
-msgstr "List of initials of last names"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:114
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:122
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:221
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:117
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:123
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:107
-#: ../lib/extern/modules/ExternModuleTemplateDownload.class.php:99
-msgid "Globale Variablen (gültig im gesamten Template)."
-msgstr "Global variables (valid in the whole template)."
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:118
-msgid "Auflistung der Anfangsbuchstaben"
-msgstr "List of initials"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:119
-msgid "Auflistung der Einrichtungen"
-msgstr "List of institutes"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:120
-msgid "Auflistung der gefundenen Personen"
-msgstr "List of people found"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:127
-msgid "Name der Einrichtung (erster Level im Einrichtungsbaum)"
-msgstr "Name of institute (first level in the institutes tree)"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:128
-msgid ""
-"Anzahl der Personen innerhalb der Einrichtung (und untergeordneten "
-"Einrichtungen)"
-msgstr "Number of people in the institute (and subordinated institutes)"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:129
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:139
-msgid "URL zur Personenlist mit diesem Anfangsbuchstaben"
-msgstr "URL to personal list with given initial"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:137
-msgid "Anfangsbuchstabe der Namen zur Verlinkung nach alpabetische Übersicht"
-msgstr "Initials of the names to be linked with the alphabetical overview"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersBrowse.class.php:138
-msgid "Anzahl der Personennamen mit diesem Anfangsbuchstaben"
-msgstr "Number of persons' names with given initial"
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:93
-msgid "Anzahl aller sichtbaren News"
-msgstr "Number of visible announcements"
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:94
-msgid "Anzahl aller archivierten News"
-msgstr "Number of archived announcements"
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:99
-msgid "Alle sichtbaren News"
-msgstr "All visible announcements"
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:108
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:127
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:200
-msgid "Vollständiger Name des Autors."
-msgstr "Author's full name."
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:109
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:128
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:201
-msgid "Nachname des Autors."
-msgstr "Author's last name."
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:110
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:129
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:202
-msgid "Vorname des Autors."
-msgstr "Author's first name."
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:111
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:130
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:203
-msgid "Titel des Autors (vorangestellt)."
-msgstr "Author's title (prefix)."
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:112
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:131
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:204
-msgid "Titel des Autors (nachgestellt)."
-msgstr "Author's second title."
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:116
-msgid "Ende aller sichtbaren News"
-msgstr "End of visible announcements"
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:118
-msgid "Alle archivierten News"
-msgstr "All archived announcements"
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:135
-msgid "Ende aller archivierten News"
-msgstr "End of all archived announcements"
-
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:185
-#: ../lib/extern/modules/ExternModuleTemplateNews.class.php:223
-#: ../app/views/course/plus/index.php:139
-#: ../app/views/course/plus/index.php:246
-#: ../app/views/profile_modules/index.php:74
-#: ../app/views/my_ilias_accounts/_ilias_module.php:48
-#: ../app/views/file/file_details.php:21
-msgid "Keine Beschreibung vorhanden."
-msgstr "No description available."
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:90
-msgid "Verlinkung zum Modul Veranstaltungsdetails"
-msgstr "Link to course details module"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:94
-msgid "Ziel für Suchformular"
-msgstr "Target for search form"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:96
-msgid "Ziel für Links auf Ebenen"
-msgstr "Target for links at all levels"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:98
-msgid "Ziel für Links auf Ebenen zur Anzeige von Veranstaltungen"
-msgstr "Target for links at levels for displaying courses"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:100
-msgid "Template einfaches Suchformular"
-msgstr "Template for plain search form"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:101
-msgid "Template erweitertes Suchformular"
-msgstr "Template for extended search form"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:102
-msgid "Template Navigation"
-msgstr "Template for navigation"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:103
-msgid "Template Veranstaltungsliste"
-msgstr "Template for course list"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:123
-msgid "Name des aktuellen Semesters"
-msgstr "Name of the current semester"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:124
-msgid "Name der aktuelllen Ebene"
-msgstr "Name of the current level"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:125
-msgid "ID der aktuellen Ebene"
-msgstr "ID of the current layer"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:126
-msgid "Infotext zur aktuellen Ebene"
-msgstr "Information about current level"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:127
-msgid "Name der Ebene an Stelle x des Pfades"
-msgstr "Name of the level at place x of the path"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:128
-msgid "Interne ID der Ebene an Stelle x des Pfades"
-msgstr "Internal level-ID at place x of the path"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:129
-msgid "Such-Parameter, die in einer URL-Query weitergreicht werden"
-msgstr "Search parameter values to be passed on to an URL query"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:130
-msgid "URL zur Personendetailseite ohne Auswahlparameter"
-msgstr "URL to the personal details page without selection parameter"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:131
-msgid "URL zur Veranstaltungsdetailseite ohne Auswahlparameter"
-msgstr "URL to the course details page without selection parameter"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:132
-msgid "URL zur Zielseite der Ebenenlinks ohne Auswahlparameter"
-msgstr ""
-"URL to the target page of the links to the levels without selection parameter"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:133
-msgid "URL zur Zielseite der Ebenenlinks mit Kursansicht ohne Auswahlparameter"
-msgstr ""
-"URL to the target page of the links to the levels with course view but "
-"without selection parameter"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:134
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:231
-msgid "Nummer der Ergebnisseite der Suche"
-msgstr "Search result page number"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:135
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:232
-msgid "Anzahl der Ergenisseiten der Suche"
-msgstr "Amount of search result pages"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:145
-msgid "URL zum ändern des Semesters, ohne eine Suche auszulösen"
-msgstr "URL for changing the semester without triggering a search"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:146
-msgid "URL, um Suche auszulösen"
-msgstr "URL for triggering a search"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:147
-msgid "Optionen für Suchfeld"
-msgstr "Options for search fields"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:148
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:164
-msgid "Optionen für Semesterauswahl"
-msgstr "Options for semester selection"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:149
-msgid "Eingabefeld für Suchbegriff"
-msgstr "Field for entering search string"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:151
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:166
-msgid "Link, der das Suchformular zurücksetzt"
-msgstr "Link to reset search form"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:157
-msgid "Eingabefeld für Titel"
-msgstr "Field to enter title"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:158
-msgid "Eingabefeld für Untertitel"
-msgstr "Field to enter sub-title"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:159
-msgid "Eingabefeld für Veranstaltungsnummer"
-msgstr "Field to enter course number"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:160
-msgid "Eingabefeld für Kommentar zur Veranstaltung"
-msgstr "Field to enter a course commentary"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:161
-msgid "Eingabefeld für Lehrendenname"
-msgstr "Input field for lecturer name"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:162
-msgid "Eingabefeld für Studienbereich"
-msgstr "Field to enter field of study"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:163
-msgid "Optionen für Veranstaltungstyp"
-msgstr "Options for course type"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:165
-msgid "Optionen für logische Verknüpfung"
-msgstr "Options for logical link"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:170
-msgid "Ausgabe, wenn keine Veranstaltungen auf aktueller Ebene vorhanden sind"
-msgstr "Output if no course available at current level"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:172
-msgid "Ausgabe, wenn keine Unterebenen vorhanden sind"
-msgstr "Output if no sub-level available"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:174
-msgid "Anzahl der Veranstaltungen der aktueller Ebene"
-msgstr "Number of courses at current level"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:175
-msgid "URL zur Liste mit allen Veranstaltungen der aktuellen Ebene"
-msgstr "URL to the list of all courses at current level"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:176
-msgid "Anzahl der Veranstaltungen aller untergeordneten Ebenen"
-msgstr "Number of courses at all subordinated levels"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:177
-msgid "URL zur Liste mit allen Veranstaltungen der untergeordneten Ebenen"
-msgstr "URL to list of all courses at subordinated levels"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:178
-msgid "URL zur übergeordneten Ebene"
-msgstr "URL to superior level"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:179
-msgid "Name des aktuellen Levels"
-msgstr "Name of current level"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:181
-msgid "Anfang des Bereichspfades"
-msgstr "Start of area path"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:182
-msgid "Bereich im Bereichspfad"
-msgstr "Area within area path"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:184
-msgid "Name des Studienbereichs/der Einrichtung"
-msgstr "Name of field of study/institute"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:185
-#: ../lib/extern/admin_extern.inc.php:427
-msgid "Weitere Informationen"
-msgstr "Further information"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:188
-msgid ""
-"Text, der zwischen den einzelnen Ebenen im Pfad ausgegeben wird (nicht nach "
-"letzter Ebene)"
-msgstr ""
-"Text to be displayed between the various levels in a path (not after the "
-"last level)"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:192
-msgid "Dieser Inhalt wird ausgegeben, wenn keine Unterbereiche vorhanden sind"
-msgstr "This content will be displayed if no sub-area available"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:194
-msgid ""
-"Beginn der Ebene x mit allen Unterebenen, wobei x die aktuelle Ebenennummer "
-"ist (x > 0 und x <= Anzahl der angezeigten Ebenen)"
-msgstr ""
-"Beginning of level x with all sub-levels, where x is the number of the "
-"current level (with x > 0 and x <= the number of levels displayed)"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:195
-msgid "Beginn der aktuellen Ebene x"
-msgstr "Beginning of current level x"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:196
-msgid "Liste mit Veranstaltungen auf Ebene x (Template Veranstaltungsliste)"
-msgstr "List of courses on level x (template course list)"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:202
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:213
-msgid "Anzahl der Veranstaltungen in der Ebene x (einschließlich Unterebenen)"
-msgstr "Number of courses at level x (including sub-levels)"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:204
-msgid "Weitere Informationen zur Ebene x"
-msgstr "Further information about level x"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:222
-msgid "Anzahl der Veranstaltungen in der Liste"
-msgstr "Number of courses in the list"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:223
-msgid "Textersetzung für Gruppierungsart"
-msgstr "Text substitutions for grouping type"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:224
-msgid "Gruppierungsart"
-msgstr "Grouping type"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:225
-msgid "URL zum Export der Veranstaltungsliste"
-msgstr "URL for exporting the course list"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:226
-msgid "URL für Gruppierung nach Typ"
-msgstr "URL for grouping by type"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:227
-msgid "URL für Gruppierung nach Semester"
-msgstr "URL for grouping by semester"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:228
-msgid "URL für Gruppierung nach Studienbereich"
-msgstr "URL for grouping by field of study"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:229
-msgid "URL für Gruppierung nach Lehrperson"
-msgstr "URL for grouping by lecturer"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:230
-msgid "URL für Gruppierung nach Einrichtung"
-msgstr "URL for grouping by institute"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:233
-msgid "Ausgabe, wenn keine Veranstaltungen gefunden wurden"
-msgstr "Output if no course was found"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:240
-msgid ""
-"Info-Text für Studienbereiche. Wird nur angezeigt bei Gruppierung nach "
-"Bereich."
-msgstr ""
-"Information about fields of study. It will be shown only if courses are "
-"grouped by area."
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:241
-msgid ""
-"Wird angezeigt, wenn kein Info-Text für Bereiche verfügbar ist. Nur bei "
-"Gruppierung nach Bereich."
-msgstr ""
-"Will be displayed only if no information about areas is available. Only in "
-"case of grouping by area."
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:243
-msgid "Fortlaufende Gruppennummer"
-msgstr "Running group number"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:249
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:127
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:188
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:126
-msgid "Die Veranstaltungsnummer"
-msgstr "Course number"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:250
-msgid "Feld Beschreibung der Veranstaltungsdaten"
-msgstr "Field for description of the course details"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:251
-msgid "Feld ECTS der Veranstaltunsdaten"
-msgstr "Field ECTS of course data"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:260
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:136
-msgid "Stud.IP-Username"
-msgstr "Stud.IP username"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:264
-msgid "Wird ausgegeben, wenn keine Lehrenden vorhanden sind."
-msgstr "Will be displayed if no lecturers are available."
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:266
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:158
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:140
-msgid "Die Veranstaltungsart"
-msgstr "Course type"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:270
-msgid "Freie Raumangabe"
-msgstr "Ancillary location details"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:287
-msgid "Wird ausgegeben, wenn kein Raum zum Termin angegeben ist."
-msgstr "Will be displayed if no room is assigned to the date."
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:306
-msgid "Ausgabe des Namens des Termintyps, wenn Sitzungstermin"
-msgstr "Display the name of the date type if the date is a meeting"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:307
-msgid "Ausgabe des Namens des Termintyps, wenn kein Sitzungstermin"
-msgstr "Display the name of the date type if the date is not a meeting"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:309
-msgid "Wird ausgegeben, wenn kein Raum zum Termin angegeben ist"
-msgstr "Will be displayed if no room is assigned to the date"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:316
-msgid "Kommaseparierte, zusammengefasste Temindaten"
-msgstr "Comma separated list of grouped appointment details"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:448
-#, php-format
-msgid "vor dem %s"
-msgstr "before %s"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:465
-#: ../app/controllers/search/courses.php:140
-msgid "ErgebnisVeranstaltungssuche.xls"
-msgstr "ResultCoursesearch.xls"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:592
-#: ../lib/classes/StudipSemSearch.class.php:126
-msgid "UND"
-msgstr "AND"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:593
-#: ../lib/classes/StudipSemSearch.class.php:126
-msgid "ODER"
-msgstr "OR"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:659
-#: ../lib/classes/StudipSemTreeViewSimple.class.php:88
-#: ../lib/classes/StudipSemRangeTreeViewSimple.class.php:155
-#: ../lib/classes/StudipSemRangeTreeViewSimple.class.php:166
-msgid "Keine weitere Info vorhanden"
-msgstr "No further information available"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:1302
-#: ../lib/classes/SemBrowse.class.php:494
-msgid "Stud.IP Veranstaltungen"
-msgstr "Stud.IP courses"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:1356
-#: ../lib/classes/SemBrowse.class.php:549
-#, php-format
-msgid "%s Veranstaltungen gefunden %s, Gruppierung: %s"
-msgstr "%s courses found %s, grouping: %s"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:1358
-#: ../lib/classes/SemBrowse.class.php:415
-#: ../lib/classes/SemBrowse.class.php:551 ../app/views/news/edit_news.php:186
-#: ../app/views/multipersonsearch/no_js_form.php:32
-msgid "Suchergebnis"
-msgstr "Search results"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:1427
-#: ../lib/classes/SemBrowse.class.php:615
-#: ../lib/classes/SemBrowse.class.php:871 ../lib/classes/SemType.class.php:254
-#: ../app/views/my_courses/waiting_list.php:46
-msgid "Studiengruppe"
-msgstr "Study group"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:1428
-#: ../lib/classes/SemBrowse.class.php:616
-#: ../lib/classes/SemBrowse.class.php:872
-msgid "Zutritt auf Anfrage"
-msgstr "Entry upon request, only"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:1436
-#: ../lib/classes/SemBrowse.class.php:629
-#: ../lib/classes/SemBrowse.class.php:948
-#: ../lib/classes/SemBrowse.class.php:988
-#: ../lib/classes/globalsearch/GlobalSearchCourses.php:148
-#: ../lib/classes/globalsearch/GlobalSearchCourses.php:211
-#: ../lib/classes/globalsearch/GlobalSearchMyCourses.php:117
-#: ../lib/classes/globalsearch/GlobalSearchMyCourses.php:152
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:646
-#: ../templates/index_nobody.php:83 ../templates/dates/seminar_html.php:73
-#: ../templates/dates/seminar_html.php:84
-msgid "mehr"
-msgstr "more"
-
-#: ../lib/extern/modules/ExternModuleTemplateSemBrowse.class.php:1477
-msgid "14-täglich"
-msgstr "fortnightly"
-
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:100
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:95
-msgid "Template für News"
-msgstr "Template for announcements"
-
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:101
-msgid "Template für statistische Daten aus Stud.IP"
-msgstr "Template for statistical Stud.IP data"
-
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:163
-msgid "Organisationsform"
-msgstr "Organisation type"
-
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:172
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:177
-msgid "Inhalt aus dem Template für News"
-msgstr "Content of the template for announcements"
-
-#: ../lib/extern/modules/ExternModuleTemplateLecturedetails.class.php:183
-msgid "Modulzuordnungen der Veranstaltung"
-msgstr "Module assignment of the course"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:92
-msgid "Einstellungen für Lehrveranstaltungen"
-msgstr "Settings for courses"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:94
-msgid "Template für Lehrveranstaltungen"
-msgstr "Template for courses"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:97
-msgid "Template für Termine"
-msgstr "Template for dates"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:99
-msgid "Template für eigene Kategorien"
-msgstr "Template for personal categories"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:101
-msgid "Einschränkung auf Institute/Einrichtungen"
-msgstr "Restriction to institutes"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:133
-msgid "Kommaseparierte Liste mit Statusgruppen"
-msgstr "Comma separated list of status groups"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:176
-msgid "Inhalt aus dem Template für Veranstaltungen"
-msgstr "Content of the template for courses"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:178
-msgid "Inhalt aus dem Template für Termine"
-msgstr "Content of template for dates"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:179
-msgid "Inhalt aus dem Template für eigene Kategorien"
-msgstr "Content of the template for personal categories"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:211
-msgid "Startdatum der Terminliste"
-msgstr "Start date of the date list"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:212
-msgid "Enddatum der Terminliste"
-msgstr "End date of the date list"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:218
-msgid "Start und Endzeit oder ganztägig"
-msgstr "Starting and final time or all-day"
-
-#: ../lib/extern/modules/ExternModuleTemplatePersondetails.class.php:236
-msgid "Laufende Nummer"
-msgstr "Serial number"
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:60
-#: ../lib/extern/modules/ExternModuleTemplateDownload.class.php:63
-msgid "Icon"
-msgstr "Icon"
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:61
-#: ../lib/extern/modules/ExternModuleTemplateDownload.class.php:64
-#: ../app/views/materialien/files/range.php:26
-#: ../app/views/materialien/files/index.php:9
-#: ../app/views/admin/user/_institute_files.php:18
-#: ../app/views/admin/user/list_files.php:33
-msgid "Dateiname"
-msgstr "File name"
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:73
-msgid "Link zum Dateidownload"
-msgstr "Link to file download"
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:224
-msgid "Das ist eine Text-Datei."
-msgstr "This is a text file."
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:227
-msgid "Das ist eine Powerpoint-Datei."
-msgstr "This is a PowerPoint presentation."
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:230
-msgid "Das ist eine ZIP-Datei."
-msgstr "This is a ZIP archive."
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:233
-msgid "Das ist eine Excel-Datei."
-msgstr "This is an Excel spreadsheet."
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:236
-msgid "Das ist eine Bild-Datei."
-msgstr "This is an image file."
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:239
-msgid "Das ist ein Dokument im Microsoft Rich-Text-Format."
-msgstr "This is a document in Microsoft Rich Text Format."
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:242
-msgid "Das ist ein Adobe PDF-Dokument."
-msgstr "This is an Adobe PDF document."
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:245
-msgid "Und noch ein ZIP-Archiv."
-msgstr "And one more ZIP archive."
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:248
-msgid "Eine weitere Text-Datei."
-msgstr "One more text file."
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:251
-msgid "Ein Bild im PNG-Format."
-msgstr "An image file in PNG format."
-
-#: ../lib/extern/modules/ExternModuleDownload.class.php:254
-msgid "Eine anderes Format."
-msgstr "A different format."
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:37
-msgid "Das ist mein Lebenslauf."
-msgstr "This is my C.V."
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:40
-msgid "Das sind meine Arbeitsschwerpunkte."
-msgstr "These are my research interests."
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:43
-msgid "Das sind meine Publikationen."
-msgstr "These are my publications."
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:46
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:48
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:50
-#, php-format
-msgid "Das ist News Nr. %u"
-msgstr "This is news no. %u"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:47
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:49
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:51
-#, php-format
-msgid "News Nr. %u"
-msgstr "News no. %u"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:59
-msgid "Das ist der erste Termin"
-msgstr "This is the first date"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:60
-msgid "Das ist der zweite Termin"
-msgstr "This is the second date"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:61
-msgid "Das ist der dritte Termin"
-msgstr "This is the third date"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:63
-msgid "Zweiter Termin"
-msgstr "Second date"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:64
-msgid "dritter Termin "
-msgstr "third date"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:67
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:68
-msgid "Eigene Kategorie"
-msgstr "Personal category"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:75
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:76
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:77
-#, php-format
-msgid "Veranstaltung %u"
-msgstr "Course %u"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:78
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:79
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:80
-#, php-format
-msgid "Untertitel der Veranstaltung %u"
-msgstr "Course subtitle %u"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:91
-msgid "HochschullehrerIn"
-msgstr "Lecturer"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:92
-msgid "Mustereinrichtung"
-msgstr "Sample institute"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:93
-msgid "Musterstra&szlig;e 23"
-msgstr "Sample street 23"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:94
-msgid "12345 Musterstadt"
-msgstr "12345 sample town"
-
-#: ../lib/extern/modules/views/persondetails_preview.inc.php:100
-msgid "Mo. und Do. 12.00 - 13.00"
-msgstr "Mon. and Thu. 12.00 - 13.00"
-
-#: ../lib/extern/modules/views/ExternSemBrowse.class.php:475
-#, php-format
-msgid "%s Unterveranstaltung"
-msgid_plural "%s Unterveranstaltungen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/extern/modules/views/news_preview.inc.php:29
-#, php-format
-msgid "Aktuelle Nachricht Nr. %s"
-msgstr "Current message no. %s"
-
-#: ../lib/extern/modules/views/news_preview.inc.php:30
-#, php-format
-msgid "Beschreibung der Nachricht Nr. %s"
-msgstr "Description of message no. %s"
-
-#: ../lib/extern/modules/views/persons_preview.inc.php:40
-msgid "Name Name"
-msgstr "Name name"
-
-#: ../lib/extern/modules/views/persons_preview.inc.php:41
-msgid "Raum 21"
-msgstr "Room 21"
-
-#: ../lib/extern/modules/views/persons_preview.inc.php:42
-msgid "jeden Tag, 13.00 - 14.00"
-msgstr "every day, 13.00 - 14.00"
-
-#: ../lib/extern/modules/views/persons_preview.inc.php:43
-msgid "Gruppe A"
-msgstr "Group A"
-
-#: ../lib/extern/modules/views/persons_preview.inc.php:50
-msgid "Gruppe B"
-msgstr "Group B"
-
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:22
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:95
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:270
-#: ../app/controllers/course/basicdata.php:36
-#: ../app/views/search/archive/index.php:10
-#: ../app/views/course/archive/archive.php:21
-#: ../app/views/course/archive/confirm.php:12
-#: ../app/views/course/grouping/create_children.php:20
-msgid "Name der Veranstaltung"
-msgstr "Course name"
-
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:23
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:271
-#: ../app/controllers/course/basicdata.php:45
-msgid "Untertitel der Veranstaltung"
-msgstr "Course sub-title"
-
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:43
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:291
-msgid "Testveranstaltung"
-msgstr "Trial course"
-
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:46
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:294
-msgid "A 123, 1. Stock"
-msgstr "A 123, 1st floor"
-
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:48
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:38
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:40
-#: ../lib/extern/modules/views/lectures_preview.inc.php:35
-#: ../lib/extern/modules/views/lectures_preview.inc.php:37
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:296
-msgid "Di. 8:30 - 13:30, Mi. 8:30 - 13:30, Do. 8:30 - 13:30"
-msgstr "Tue. 8.30 - 13.30, Wed. 8.30 - 13.30, Thu. 8.30 - 13.30"
-
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:54
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:302
-msgid "Fakultät &gt; Studiengang &gt; Bereich"
-msgstr "Faculty > course of study > area"
-
-#: ../lib/extern/modules/views/lecturedetails_preview.inc.php:236
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:488
-msgid "Beteiligte Institute"
-msgstr "Participating institute"
-
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:32
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:34
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:36
-#, php-format
-msgid "Name der Veranstaltung %s"
-msgstr "Course name %s"
-
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:33
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:35
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:37
-#, php-format
-msgid "Untertitel der Veranstaltung %s"
-msgstr "Subtitle of course %s"
-
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:39
-#: ../lib/extern/modules/views/lectures_preview.inc.php:36
-msgid ""
-"Termine am 31.7. 14:00 - 16:00, 17.8. 11:00 - 14:30, 6.9. 14:00 - 16:00,..."
-msgstr ""
-"Dates on 31.7. 14.00 - 16.00, 17.8. 11.00 - 14.30, 6.9. 14.00 - 16.00,..."
-
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:44
-#: ../lib/classes/SemType.class.php:243 ../config/mvv_config.php:142
-#: ../config/mvv_config.php:143 ../config/config.inc.php:173
-#: ../config/config_develop.inc.php:198
-msgid "Seminar"
-msgstr "Seminar"
-
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:45
-#: ../lib/classes/SemType.class.php:242 ../config/mvv_config.php:138
-#: ../config/mvv_config.php:139 ../config/config.inc.php:207
-#: ../config/config.inc.php:226 ../config/config_develop.inc.php:243
-#: ../config/config_develop.inc.php:262
-msgid "Vorlesung"
-msgstr "Lecture"
-
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:46
-#: ../lib/classes/SemType.class.php:245 ../config/mvv_config.php:165
-msgid "Praktikum"
-msgstr "Practical training"
-
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:47
-msgid "Vorlesung im Hauptstudium"
-msgstr "Lecture course for advanced studies"
-
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:48
-msgid "Vorlesung im Grundstudium"
-msgstr "Lecture course for basic studies"
-
-#: ../lib/extern/modules/views/lecturestable_preview.inc.php:49
-msgid "Praktikum im Haupstudium"
-msgstr "Practical training for advanced studies"
-
-#: ../lib/extern/modules/views/lectures_preview.inc.php:32
-#: ../lib/extern/modules/views/lectures_preview.inc.php:33
-#: ../lib/extern/modules/views/lectures_preview.inc.php:34
-#, php-format
-msgid "Name der Veranstaltung %u"
-msgstr "Course name %u"
-
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:96
-msgid "Überschriften"
-msgstr "Headings"
-
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:97
-msgid "Absätze"
-msgstr "Paragraphs"
-
-#: ../lib/extern/modules/ExternModuleLecturedetails.class.php:99
-msgid "Link zum Modul Mitarbeiterdetails"
-msgstr "Link to the staff details module "
-
-#: ../lib/extern/modules/ExternModuleNews.class.php:60
-msgid "Datum/Autor"
-msgstr "Date/author"
-
-#: ../lib/extern/modules/ExternModuleNews.class.php:69
-msgid "Datenzeilen, Schrift von Name und Datum"
-msgstr "Data records, font for name and date"
-
-#: ../lib/extern/modules/ExternModulePersons.class.php:75
-msgid "E-Mail-Link"
-msgstr "E-Mail link"
-
-#: ../lib/extern/modules/ExternModuleTemplateLectures.class.php:110
-msgid "Name des Startsemesters"
-msgstr "Name of start semester"
-
-#: ../lib/extern/modules/ExternModuleGlobal.class.php:71
-msgid "Tabellenkopf Gesamttabelle"
-msgstr "Table header of complete table"
-
-#: ../lib/extern/modules/ExternModuleGlobal.class.php:72
-msgid "Tabellenkopf innere Tabelle"
-msgstr "Table header of central table"
-
-#: ../lib/extern/modules/ExternModuleGlobal.class.php:74
-msgid "Gruppenzeile"
-msgstr "Grouping row"
-
-#: ../lib/extern/modules/ExternModuleGlobal.class.php:76
-msgid "Text in Tabellenkopf"
-msgstr "Text in table header"
-
-#: ../lib/extern/modules/ExternModuleGlobal.class.php:77
-msgid "Überschriften erster Ordnung"
-msgstr "Headings at first level"
-
-#: ../lib/extern/modules/ExternModuleGlobal.class.php:78
-msgid "Überschriften zweiter Ordnung"
-msgstr "Headings at second level"
-
-#: ../lib/extern/modules/ExternModuleGlobal.class.php:79
-msgid "Schrift"
-msgstr "Font"
-
-#: ../lib/extern/admin_extern.inc.php:94
-msgid "Die Konfigurationsdatei hat den falschen Modultyp!"
-msgstr "The configuration file has an invalid module type!"
-
-#: ../lib/extern/admin_extern.inc.php:96
-msgid "Die Konfigurationsdatei konnte nicht hochgeladen werden!"
-msgstr "The configuration file cannot be uploaded!"
-
-#: ../lib/extern/admin_extern.inc.php:98
-msgid "Die Datei wurde erfolgreich übertragen!"
-msgstr "The file has successfully been transferred!"
-
-#: ../lib/extern/admin_extern.inc.php:111
-#, php-format
-msgid "Die Konfiguration wurde als \"%s\" nach Modul \"%s\" kopiert."
-msgstr "The configuration has been copied as \"%s\" to module \"%s\"."
-
-#: ../lib/extern/admin_extern.inc.php:122
-#, php-format
-msgid ""
-"Konfiguration <strong>\"%s\"</strong> für Modul <strong>\"%s\"</strong> "
-"gelöscht!"
-msgstr ""
-"Configuration <strong>\"%s\"</strong> for module <strong>\"%s\"</strong> "
-"deleted!"
-
-#: ../lib/extern/admin_extern.inc.php:126
-msgid "Konfiguration konnte nicht gelöscht werden"
-msgstr "The configuration cannot be deleted"
-
-#: ../lib/extern/admin_extern.inc.php:135
-#, php-format
-msgid ""
-"Wollen Sie die Konfiguration <b>&quot;%s&quot;</b> des Moduls <b>%s</b> "
-"wirklich löschen?"
-msgstr ""
-"Are you sure to delete the configuration <b>\"%s\"</b> of module <b>%s</b>?"
-
-#: ../lib/extern/admin_extern.inc.php:189
-msgid "SRI-Schnittstelle freigeben"
-msgstr "Enable SRI interface"
-
-#: ../lib/extern/admin_extern.inc.php:222
-msgid "Neue globale Konfiguration"
-msgstr "New global configuration"
-
-#: ../lib/extern/admin_extern.inc.php:236
-msgid "Neue Konfiguration für Modul"
-msgstr "New configuration for module"
-
-#: ../lib/extern/admin_extern.inc.php:244
-#: ../templates/elearning/elearning_interface_edit.php:89
-#: ../app/views/fachabschluss/faecher/fach.php:101
-#: ../app/views/fachabschluss/kategorien/kategorie.php:46
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:38
-#: ../app/views/module/module/modulteil.php:463
-#: ../app/views/module/module/modul.php:681
-#: ../app/views/module/module/lvgruppe.php:21
-#: ../app/views/course/statusgroups/create_groups.php:136
-#: ../app/views/course/elearning/edit.php:85 ../app/views/admin/role/add.php:17
-#: ../app/views/admin/autoinsert/index.php:63
-#: ../app/views/admin/banner/new.php:88
-#: ../app/views/admin/datafields/new.php:169
-#: ../app/views/contact/editGroup.php:20 ../app/views/wiki/create.php:16
-#: ../app/views/institute/basicdata/index.php:128
-#: ../app/views/lvgruppen/lvgruppen/lvgruppe.php:20
-#: ../app/views/studiengaenge/versionen/abschnitt.php:26
-#: ../app/views/studiengaenge/versionen/version.php:137
-#: ../app/views/studiengaenge/stgteilbezeichnungen/stgteilbezeichnung.php:27
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:96
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:337
-msgid "Anlegen"
-msgstr "Create"
-
-#: ../lib/extern/admin_extern.inc.php:252
-#: ../lib/extern/admin_extern.inc.php:290
-msgid "Konfiguration kopieren"
-msgstr "Copy configuration"
-
-#: ../lib/extern/admin_extern.inc.php:266 ../lib/wiki.inc.php:1069
-#: ../lib/export/export_choose_xslt.inc.php:148
-#: ../lib/export/export_choose_xslt.inc.php:192
-#: ../lib/export/export_choose_xslt.inc.php:232
-#: ../lib/export/export_start.inc.php:137 ../templates/tour/tour.php:28
-#: ../templates/elearning/_new_account_form.php:159
-#: ../app/controllers/course/ilias_interface.php:277
-#: ../app/controllers/course/ilias_interface.php:418
-#: ../app/views/shared/contacts/new_ansprechpartner.php:13
-#: ../app/views/shared/contacts/select_range.php:15
-#: ../app/views/shared/contacts/select_range_type.php:13
-#: ../app/views/shared/log_event/show.php:61
-#: ../app/views/materialien/files/select_range.php:17
-#: ../app/views/materialien/files/select_range_type.php:13
-#: ../app/views/materialien/files/new_dokument.php:13
-#: ../app/views/course/wizard/step.php:17
-#: ../app/views/admin/ilias_interface/edit_server.php:81
-#: ../app/views/admin/ilias_interface/soap_methods.php:35
-#: ../app/views/admin/install/layout.php:50
-msgid "Weiter"
-msgstr "Continue"
-
-#: ../lib/extern/admin_extern.inc.php:303
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:525
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:139
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:251
-#: ../app/controllers/admin/courses.php:1004
-#: ../app/views/profile/public_files.php:34
-#: ../app/views/resources/booking/copy.php:41
-#: ../app/views/resources/booking/copy_to_semester.php:39
-#: ../app/views/resources/booking/edit.php:12
-#: ../app/views/resources/resource/files.php:56
-#: ../app/views/module/module/copy_form.php:90 ../app/views/files/flat.php:31
-#: ../app/views/files/index.php:54 ../app/views/files/_flat_tfoot.php:34
-#: ../app/views/course/topics/copy.php:37
-#: ../app/views/course/members/select_course.php:18
-#: ../app/views/course/statusgroups/_copy_members.php:21
-#: ../app/views/course/dates/details.php:86
-#: ../app/views/room_management/planning/copy_bookings.php:235
-#: ../app/views/questionnaire/evaluate.php:49
-#: ../app/views/questionnaire/answer.php:53
-msgid "Kopieren"
-msgstr "Copy"
-
-#: ../lib/extern/admin_extern.inc.php:313
-msgid ""
-"Sie haben bereits für alle Module die maximale Anzahl von Konfigurationen "
-"angelegt. Um eine neue Konfiguration anzulegen, müssen Sie erst eine "
-"bestehende im gewünschten Modul löschen."
-msgstr ""
-"You have already created the maximum number of configurations for all the "
-"modules. To create a new configuration, you must firstly delete an existing "
-"one in the selected module."
-
-#: ../lib/extern/admin_extern.inc.php:320
-msgid "Es wurden noch keine Konfigurationen angelegt."
-msgstr "No configurations created."
-
-#: ../lib/extern/admin_extern.inc.php:325
-msgid "Angelegte Konfigurationen"
-msgstr "Created configurations"
-
-#: ../lib/extern/admin_extern.inc.php:348 ../app/controllers/my_courses.php:818
-#: ../app/controllers/institute/members.php:508
-#: ../app/views/admin/configuration/edit_configuration.php:21
-#: ../app/views/admin/content_terms_of_use/index.php:9
-msgid "Standard"
-msgstr "Standard"
-
-#: ../lib/extern/admin_extern.inc.php:354
-#: ../lib/extern/admin_extern.inc.php:355
-msgid "Konfigurationsdatei herunterladen"
-msgstr "Download configuration file"
-
-#: ../lib/extern/admin_extern.inc.php:359
-#: ../lib/extern/admin_extern.inc.php:360
-msgid "Konfigurationsdatei hochladen"
-msgstr "Upload configuration file"
-
-#: ../lib/extern/admin_extern.inc.php:363
-#: ../lib/extern/admin_extern.inc.php:364
-msgid "weitere Informationen anzeigen"
-msgstr "display further information"
-
-#: ../lib/extern/admin_extern.inc.php:371
-#: ../lib/extern/admin_extern.inc.php:372
-msgid "Standard entziehen"
-msgstr "Remove default"
-
-#: ../lib/extern/admin_extern.inc.php:376
-#: ../lib/extern/admin_extern.inc.php:377
-msgid "Standard zuweisen"
-msgstr "Assign default"
-
-#: ../lib/extern/admin_extern.inc.php:382
-#: ../lib/extern/admin_extern.inc.php:383
-#: ../app/views/admin/ilias_interface/index.php:70
-#: ../app/views/admin/ilias_interface/index.php:72
-msgid "Konfiguration löschen"
-msgstr "Delete configuration"
-
-#: ../lib/extern/admin_extern.inc.php:386
-#: ../lib/extern/admin_extern.inc.php:387
-msgid "Konfiguration bearbeiten"
-msgstr "Edit configuration"
-
-#: ../lib/extern/admin_extern.inc.php:410
-#: ../lib/extern/admin_extern.inc.php:413
-#, php-format
-msgid "Sie können pro Modul maximal %s Konfigurationen anlegen."
-msgstr "You can create a maximum of %s configurations per module."
-
-#: ../lib/extern/admin_extern.inc.php:418
-msgid "Standard-Konfiguration"
-msgstr "Standard configuration"
-
-#: ../lib/extern/admin_extern.inc.php:419
-msgid ""
-"Dieses Symbol kennzeichnet die Standard-Konfiguration, die zur Formatierung "
-"herangezogen wird, wenn Sie beim Aufruf dieses Moduls keine Konfiguration "
-"angeben."
-msgstr ""
-"If no configuration is specified upon calling the module, then this symbol "
-"marks the default configuration to be used for formatting."
-
-#: ../lib/extern/admin_extern.inc.php:421
-msgid "Keine Standard-Konfiguration"
-msgstr "No standard configuration"
-
-#: ../lib/extern/admin_extern.inc.php:422
-msgid ""
-"Wenn Sie keine Konfiguration als Standard ausgewählt haben, wird die Stud.IP-"
-"Konfiguration verwendet."
-msgstr ""
-"If you do not select a configuration as default, then the Stud.IP "
-"configuration will be used."
-
-#: ../lib/extern/admin_extern.inc.php:424
-msgid "Standard-Konfiguration zuweisen"
-msgstr "Assign standard configuration"
-
-#: ../lib/extern/admin_extern.inc.php:425
-msgid ""
-"Klicken Sie auf diesen Button, um eine Konfiguration zur Standard-"
-"Konfiguration zu erklären."
-msgstr "Click this button to set a configuration as default configuration."
-
-#: ../lib/extern/admin_extern.inc.php:428
-msgid ""
-"Klicken Sie auf diesen Button um weitere Informationen über diese "
-"Konfiguration zu erhalten. Hier finden Sie auch die Links, über die Sie die "
-"Module in Ihrer Website einbinden können."
-msgstr ""
-"Click on this button to receive further information about this "
-"configuration. You  also find links you can use for integrating the modules "
-"in your website."
-
-#: ../lib/extern/extern_config.inc.php:49
-msgid "globale Konfiguration"
-msgstr "global configuration"
-
-#: ../lib/extern/extern_config.inc.php:50
-msgid ""
-"Das Modul &quot;globale Konfiguration&quot; enthält Einstellungen, die für "
-"alle Module gelten, solange sie nicht in den jeweiligen Modulen "
-"überschrieben werden."
-msgstr ""
-"The module \"global configuration\" contains settings valid for all modules, "
-"as long as they are not overwritten in the various modules."
-
-#: ../lib/extern/extern_config.inc.php:52
-#: ../lib/navigation/AdminNavigation.php:75
-#: ../app/views/admin/statusgroups/editGroup.php:27
-msgid "Mitarbeiter"
-msgstr "Staff member"
-
-#: ../lib/extern/extern_config.inc.php:53
-#: ../lib/extern/extern_config.inc.php:83
-msgid ""
-"Das Modul &quot;Mitarbeiter&quot; gibt ein Mitarbeiterverzeichnis einer "
-"Einrichtung aus."
-msgstr ""
-"The module &quot;staff member&quot; provides a staff directory of an "
-"institute."
-
-#: ../lib/extern/extern_config.inc.php:55
-msgid "Mitarbeiterdetails"
-msgstr "Staff details"
-
-#: ../lib/extern/extern_config.inc.php:56
-#: ../lib/extern/extern_config.inc.php:98
-msgid ""
-"Das Modul &quot;Mitarbeiterdetails&quot; gibt die Daten eines Mitarbeiters "
-"einer Einrichtung aus."
-msgstr ""
-"The module &quot;staff details&quot; provides the details of a staff member "
-"of an institute."
-
-#: ../lib/extern/extern_config.inc.php:59
-#: ../lib/extern/extern_config.inc.php:92
-msgid ""
-"Das Modul &quot;Veranstaltungen&quot; gibt alle Veranstaltungen einer "
-"Einrichtung aus."
-msgstr ""
-"The module &quot;Courses&quot; provides all the courses offered by an "
-"institute."
-
-#: ../lib/extern/extern_config.inc.php:61
-#: ../app/views/resources/_common/_request_tr.php:144
-#: ../app/views/admin/overlapping/conflicts.php:64
-#: ../app/views/admin/overlapping/courses.php:17
-#: ../app/views/my_courses/_course.php:82
-#: ../app/views/calendar/single/seminar_events.php:72
-msgid "Veranstaltungsdetails"
-msgstr "Course details"
-
-#: ../lib/extern/extern_config.inc.php:62
-#: ../lib/extern/extern_config.inc.php:95
-msgid ""
-"Das Modul &quot;Veranstaltungsdetails&quot; gibt alle allgemeinen Daten "
-"einer Veranstaltung aus."
-msgstr ""
-"The module &quot;Course details&quot; provides all general details of a "
-"course."
-
-#: ../lib/extern/extern_config.inc.php:65
-#: ../lib/extern/extern_config.inc.php:89
-msgid "Das Modul &quot;News&quot; gibt alle News einer Einrichtung aus."
-msgstr ""
-"The module &quot;Announcements&quot; provides all announcements in an "
-"institute."
-
-#: ../lib/extern/extern_config.inc.php:68
-#: ../lib/extern/extern_config.inc.php:86
-msgid ""
-"Das Modul &quot;Download&quot; stellt alle Dateien aus dem Dateibereich "
-"einer Einrichtung zum Download zur Verfügung."
-msgstr ""
-"In the module \"Download\" all the files in some institute's file area are "
-"made available to download."
-
-#: ../lib/extern/extern_config.inc.php:76
-msgid "Newsticker"
-msgstr "News ticker"
-
-#: ../lib/extern/extern_config.inc.php:77
-msgid ""
-"Das Modul &quot;Newsticker&quot; gibt alle News einer Einrichtung in einem "
-"Ticker aus."
-msgstr ""
-"The module &quot;News ticker&quot; sends some institute's announcements to a "
-"ticker."
-
-#: ../lib/extern/extern_config.inc.php:79
-msgid "Veranstaltungen (Tabelle)"
-msgstr "Courses (table)"
-
-#: ../lib/extern/extern_config.inc.php:80
-msgid ""
-"Das Modul &quot;Veranstaltungen&quot; gibt alle Veranstaltungen einer "
-"Einrichtung als Tabelle aus."
-msgstr ""
-"The module \"Courses\" displays an institute's courses in table format."
-
-#: ../lib/extern/extern_config.inc.php:82
-msgid "Mitarbeiter (templatebasiert)"
-msgstr "Staff (template based)"
-
-#: ../lib/extern/extern_config.inc.php:85
-msgid "Download (templatebasiert)"
-msgstr "Download (template based)"
-
-#: ../lib/extern/extern_config.inc.php:88
-msgid "News (templatebasiert)"
-msgstr "Announcement (template based)"
-
-#: ../lib/extern/extern_config.inc.php:91
-msgid "Veranstaltungen (templatebasiert)"
-msgstr "Courses (template based)"
-
-#: ../lib/extern/extern_config.inc.php:94
-msgid "Veranstaltungsdetails (templatebasiert)"
-msgstr "Course details (template based)"
-
-#: ../lib/extern/extern_config.inc.php:97
-msgid "Mitarbeiterdetails (templatebasiert)"
-msgstr "Staff details (template based)"
-
-#: ../lib/extern/extern_config.inc.php:100
-msgid "Veranstaltungsbrowser (templatebasiert)"
-msgstr "Course browser (template based)"
-
-#: ../lib/extern/extern_config.inc.php:101
-msgid ""
-"Das Modul &quot;Veranstaltungsbrowser&quot; ermöglicht das Suchen nach "
-"Veranstaltungen im Einrichtungs- und Vorlesungsverzeichnis."
-msgstr ""
-"The module &quot;Course browser&quot; facilitates the search for courses in "
-"the institute directory and in the course directory."
-
-#: ../lib/extern/extern_config.inc.php:103
-msgid "Personenbrowser (templatebasiert)"
-msgstr "Person browser (template based)"
-
-#: ../lib/extern/extern_config.inc.php:103
-msgid ""
-"Das Modul &quot;Personenbrowser&quot; ermöglicht die Anzeige eines "
-"systemweiten Personalverzeichnisses."
-msgstr ""
-"The module &quot;Person browser&quot; displays a system wide staff list."
-
-#: ../lib/classes/SemBrowse.class.php:339
-#: ../templates/sembrowse/quick-search.php:14 ../app/controllers/tour.php:257
-#: ../app/controllers/admin/configuration.php:469
-#: ../app/controllers/help_content.php:317
-#: ../app/controllers/studygroup.php:107 ../app/views/news/edit_news.php:175
-#: ../app/views/news/admin_news.php:35 ../app/views/news/admin_news.php:36
-#: ../app/views/multipersonsearch/no_js_form.php:16
-msgid "Suchbegriff"
-msgstr "Search string"
-
-#: ../lib/classes/SemBrowse.class.php:375
-msgid "Gefundene Bereiche"
-msgstr "Areas found"
-
-#: ../lib/classes/SemBrowse.class.php:378
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:449
-#: ../lib/classes/LockRules.class.php:184 ../lib/modules/CoreAdmin.class.php:48
-#: ../lib/archiv.inc.php:217 ../app/controllers/course/study_areas.php:58
-#: ../app/controllers/admin/courses.php:966
-#: ../app/controllers/admin/courses.php:967
-#: ../app/views/course/wizard/steps/studyareas/index.php:2
-#: ../app/views/course/details/index.php:349
-#: ../app/views/course/details/index.php:369
-msgid "Studienbereiche"
-msgstr "Fields of study"
-
-#: ../lib/classes/SemBrowse.class.php:472
-msgid "Der Suchbegriff fehlt oder ist zu kurz"
-msgstr "Search string missing or too short"
-
-#: ../lib/classes/SemBrowse.class.php:475
-#: ../lib/classes/SemBrowse.class.php:477
-#: ../app/views/admin/courses/index.php:13
-msgid "Ihre Suche ergab keine Treffer"
-msgstr "No results found for your search"
-
-#: ../lib/classes/SemBrowse.class.php:916
-#, php-format
-msgid "%u Unterveranstaltungen anzeigen"
-msgstr "Show %u sub-courses"
-
-#: ../lib/classes/SemBrowse.class.php:922
-#, php-format
-msgid "%u Unterveranstaltungen ausblenden"
-msgstr "Hide %u sub-courses"
-
-#: ../lib/classes/SemBrowse.class.php:958
-#, php-format
-msgid "%u Unterveranstaltungen"
-msgstr "%u sub-courses"
-
-#: ../lib/classes/SemBrowse.class.php:1007
-#: ../lib/classes/globalsearch/GlobalSearchCourses.php:176
-#: ../app/views/shared/modul/overview.php:140
-#: ../app/views/shared/modul/overview.php:141
-msgid "Eingeschränkter Zugang"
-msgstr "Limited access"
-
-#: ../lib/classes/SemBrowse.class.php:1014
-#: ../lib/classes/globalsearch/GlobalSearchCourses.php:183
-#: ../app/views/shared/modul/overview.php:147
-#: ../app/views/shared/modul/overview.php:148
-msgid "Kein Zugang"
-msgstr "No access"
-
-#: ../lib/classes/SemBrowse.class.php:1021
-#: ../lib/classes/globalsearch/GlobalSearchCourses.php:190
-#: ../app/views/shared/modul/overview.php:154
-#: ../app/views/shared/modul/overview.php:155
-msgid "Uneingeschränkter Zugang"
-msgstr "Unlimited access"
-
-#: ../lib/classes/SemBrowse.class.php:1188
-msgid "Einrichtungsverzeichnis"
-msgstr "Institute directory"
-
-#: ../lib/classes/SemBrowse.class.php:1197
-msgid "Modulverzeichnis"
-msgstr "Module index"
-
-#: ../lib/classes/SemBrowse.class.php:1339
-#: ../lib/classes/SemBrowse.class.php:1360
-#: ../lib/classes/sidebar/InstituteSelectWidget.class.php:77
-#: ../app/controllers/search/module.php:193
-#: ../app/controllers/resources/room_request.php:423
-#: ../app/controllers/resources/room_request.php:466
-#: ../app/controllers/resources/room_request.php:558
-#: ../app/controllers/resources/room_request.php:2342
-#: ../app/controllers/admin/courseplanning.php:636
-#: ../app/controllers/admin/courseplanning.php:671
-#: ../app/controllers/admin/smileys.php:299
-#: ../app/controllers/admin/courses.php:1344
-#: ../app/controllers/admin/courses.php:1388
-#: ../app/controllers/admin/courses.php:1408
-#: ../app/controllers/admin/courses.php:1458
-#: ../app/controllers/lvgruppen/lvgruppen.php:348
-#: ../app/controllers/lvgruppen/lvgruppen.php:375
-#: ../app/views/shared/filter.php:32 ../app/views/shared/filter.php:44
-#: ../app/views/shared/filter.php:61 ../app/views/shared/filter.php:75
-#: ../app/views/shared/filter.php:88 ../app/views/shared/filter.php:113
-#: ../app/views/course/grouping/_perm_level.php:33
-#: ../app/views/course/grouping/_perm_level.php:111
-#: ../app/views/smileys/index.php:39 ../app/views/settings/notification.php:23
-#: ../app/views/admin/api/permissions.php:44
-#: ../app/views/admin/user/index.php:76 ../app/views/admin/user/index.php:89
-#: ../app/views/admin/user/index.php:104 ../app/views/admin/user/index.php:117
-#: ../app/views/admin/user/index.php:130 ../app/views/admin/user/index.php:142
-#: ../app/views/admin/user/index.php:190
-msgid "Alle"
-msgstr "All"
-
-#: ../lib/classes/admission/RandomAlgorithm.class.php:318
-#, php-format
-msgid ""
-"Sie haben leider bei der Platzverteilung der Veranstaltung **%s** __keinen__ "
-"Platz erhalten."
-msgstr ""
-"Unfortunately you __didn't__ get a seat in the seat allocation for the "
-"course **%s**."
-
-#: ../lib/classes/admission/RandomAlgorithm.class.php:321
-#: ../lib/classes/admission/RandomAlgorithm.class.php:361
-#: ../lib/classes/admission/RandomAlgorithm.class.php:395
-#, php-format
-msgid "Sie hatten für diese Veranstaltung die Priorität %s gewählt."
-msgstr "Priority %s set for this course."
-
-#: ../lib/classes/admission/RandomAlgorithm.class.php:357
-#, php-format
-msgid ""
-"Sie haben leider bei der Platzverteilung der Veranstaltung **%s** __keinen__ "
-"Platz erhalten. Sie wurden jedoch auf Position %s auf die Warteliste "
-"gesetzt. Das System wird Sie automatisch eintragen und benachrichtigen, "
-"sobald ein Platz für Sie frei wird."
-msgstr ""
-"Unfortunately, you were _not_ accepted for the course **%s** . You have been "
-"added to the waiting list. The current position is %s. You will be noticed "
-"if you are accepted to the course."
-
-#: ../lib/classes/admission/RandomAlgorithm.class.php:385
-#, php-format
-msgid ""
-"Sie haben bei der Platzvergabe der Veranstaltung **%s** einen vorläufigen "
-"Platz erhalten. Die endgültige Zulassung zu der Veranstaltung ist noch von "
-"weiteren Bedingungen abhängig, die Sie bitte der Veranstaltungsbeschreibung "
-"entnehmen."
-msgstr ""
-"You have been accepted as participant of the course **%s**. This is "
-"preliminary. Final admittance to the course depends on further pre-"
-"requisites specified in the course description."
-
-#: ../lib/classes/admission/RandomAlgorithm.class.php:390
-#, php-format
-msgid ""
-"Sie haben bei der Platzvergabe der Veranstaltung **%s** einen Platz "
-"erhalten. Ab sofort finden Sie die Veranstaltung in der Übersicht Ihrer "
-"Veranstaltungen. Damit sind Sie auch für die Präsenzveranstaltung zugelassen."
-msgstr ""
-"You have been accepted for the course **%s**. It has been added to \"My "
-"Courses\" on your start page."
-
-#: ../lib/classes/admission/UserFilterField.class.php:85
-#: ../lib/classes/admission/userfilter/SemesterOfStudyCondition.class.php:47
-#: ../lib/classes/admission/userfilter/StgteilVersionCondition.class.php:44
-#: ../lib/classes/admission/userfilter/DatafieldCondition.class.php:39
-msgid "ist"
-msgstr "is"
-
-#: ../lib/classes/admission/UserFilterField.class.php:86
-#: ../lib/classes/admission/userfilter/SemesterOfStudyCondition.class.php:48
-#: ../lib/classes/admission/userfilter/StgteilVersionCondition.class.php:45
-#: ../lib/classes/admission/userfilter/DatafieldCondition.class.php:40
-msgid "ist nicht"
-msgstr "is not"
-
-#: ../lib/classes/admission/UserFilterField.class.php:241
-msgid "Nutzerfilterfeld"
-msgstr "User filter field"
-
-#: ../lib/classes/admission/AdmissionRule.class.php:208
-msgid ""
-"Legt eine Regel fest, die erfüllt sein muss, um sich erfolgreich zu einer "
-"Menge von Veranstaltungen anmelden zu können."
-msgstr "Define conditions to enrol to courses."
-
-#: ../lib/classes/admission/AdmissionRule.class.php:242
-#: ../app/views/admin/datafields/index.php:77
-msgid "Anmelderegel"
-msgstr "Admission setting"
-
-#: ../lib/classes/admission/AdmissionRule.class.php:382
-#: ../lib/admissionrules/timedadmission/TimedAdmission.class.php:236
-msgid "Das Enddatum darf nicht vor dem Startdatum liegen."
-msgstr "The end date must not lie before the start date."
-
-#: ../lib/classes/admission/CourseSet.class.php:82
-#: ../app/controllers/admission/restricted_courses.php:73
-#: ../app/views/admission/restricted_courses/index.php:7
-msgid "Anmeldeset"
-msgstr "Admission"
-
-#: ../lib/classes/admission/userfilter/SemesterOfStudyCondition.class.php:45
-#: ../lib/classes/admission/userfilter/DatafieldCondition.class.php:37
-msgid "mindestens"
-msgstr "at least"
-
-#: ../lib/classes/admission/userfilter/SemesterOfStudyCondition.class.php:46
-#: ../lib/classes/admission/userfilter/DatafieldCondition.class.php:38
-msgid "höchstens"
-msgstr "at most"
-
-#: ../lib/classes/admission/userfilter/SemesterOfStudyCondition.class.php:73
-#: ../templates/privacy.php:79 ../app/views/settings/studies/studiengang.php:21
-#: ../app/views/settings/studies/studiengang.php:77
-#: ../app/views/admin/overlapping/selection.php:30
-#: ../app/views/admin/overlapping/selection.php:34
-#: ../app/views/admin/user/index.php:128 ../app/views/admin/user/edit.php:396
-msgid "Fachsemester"
-msgstr "Semester of study"
-
-#: ../lib/classes/admission/userfilter/PermissionCondition.class.php:29
-msgid "Student/in"
-msgstr "Student"
-
-#: ../lib/classes/admission/userfilter/PermissionCondition.class.php:30
-msgid "Tutor/in"
-msgstr "Tutor"
-
-#: ../lib/classes/admission/userfilter/PermissionCondition.class.php:31
-msgid "Lehrende/r"
-msgstr "Lecturer"
-
-#: ../lib/classes/admission/userfilter/PermissionCondition.class.php:42
-#: ../app/views/admin/user/new.php:29 ../app/views/admin/user/edit.php:47
-msgid "Globaler Status"
-msgstr "Global status"
-
-#: ../lib/classes/admission/userfilter/SubjectConditionAny.class.php:49
-msgid "Alle Studienfächer"
-msgstr "All fields of study"
-
-#: ../lib/classes/admission/userfilter/SubjectCondition.class.php:48
-#: ../app/controllers/admin/autoinsert.php:223
-msgid "Studienfach"
-msgstr "Subject"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:186
-msgid "Element wurde um eine Position nach oben verschoben."
-msgstr "Element has been moved up one position."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:186
-msgid "Element wurde um eine Position nach unten verschoben."
-msgstr "Element has been moved down one position."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:194
-msgid "Neues Element"
-msgstr "New element"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:200
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:247
-msgid ""
-"Wählen Sie einen Namen für dieses Element, oder verlinken Sie es mit einer "
-"Einrichtung in Stud.IP"
-msgstr "Give this element a name or link it with an institute in Stud.IP"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:228
-msgid "Sie haben keinen Suchbegriff eingegeben."
-msgstr "You have not entered any search string."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:272
-msgid "Dieses Element wurde neu eingefügt."
-msgstr "This element has been re-inserted."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:280
-msgid "Element wurde geändert."
-msgstr "Element has been changed."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:282
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:465
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:215
-#: ../app/controllers/course/members.php:1366
-msgid "Keine Veränderungen vorgenommen."
-msgstr "No changes made."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:306
-#, php-format
-msgid "%s Elemente wurden eingefügt."
-msgstr "%s elements have been inserted."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:320
-msgid ""
-"Sie beabsichtigen dieses Element, inklusive aller Unterelemente, zu löschen. "
-msgstr "You are about to delete this element including all sub-elements."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:321
-#, php-format
-msgid "Es werden insgesamt %s Elemente gelöscht!"
-msgstr "A total of %s elements have been deleted!"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:322
-msgid "Wollen Sie diese Elemente wirklich löschen?"
-msgstr "Are you sure to delete these elements?"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:324
-msgid "JA"
-msgstr "YES"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:325
-msgid "NEIN"
-msgstr "NO"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:341
-#, php-format
-msgid ""
-"Das Element <b>%s</b> und alle Unterelemente (insgesamt %s) wurden gelöscht. "
-msgstr ""
-"Element <b>%s</b> and all sub-elements (a total of %s) have been deleted."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:343
-msgid "Fehler, es konnten keine Elemente gelöscht werden!"
-msgstr "Error, no element deleted!"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:346
-#, php-format
-msgid "<br>Es wurden %s Datenfelder gelöscht. "
-msgstr "<br>%s data fields deleted."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:372
-msgid "Element wurde verschoben."
-msgstr "Element moved."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:374
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:292
-msgid "Keine Verschiebung durchgeführt."
-msgstr "Nothing moved."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:411
-msgid "Datenfelder wurden neu geordnet"
-msgstr "Data fields rearranged"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:458
-#, php-format
-msgid "Es wurden %s Datenfelder aktualisiert."
-msgstr "%s data fields updated."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:460
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:463
-msgid "Ein neues Datenfeld wurde eingefügt."
-msgstr "New data field inserted."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:481
-msgid "Ein Datenfeld wurde gelöscht."
-msgstr "Data field deleted."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:524
-#, php-format
-msgid ""
-"Dieses Element wurde zum Verschieben markiert. Bitte wählen Sie ein "
-"Einfügesymbol %s aus, um das Element zu verschieben."
-msgstr ""
-"This element has been selected for moving. To move it please select an "
-"insertion icon %s."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:531
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:501
-msgid "Neues Objekt"
-msgstr "New object"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:533
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:503
-msgid "Innerhalb dieser Ebene ein neues Element einfügen"
-msgstr "Insert a new element at this level"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:537
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:509
-#: ../lib/classes/Interactable.class.php:175
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:177
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:282
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:272
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:284
-#: ../lib/evaluation/evaluation_show.lib.php:368
-#: ../lib/evaluation/evaluation_show.lib.php:375
-#: ../lib/filesystem/StandardFile.php:327
-#: ../lib/filesystem/LibraryFile.class.php:239
-#: ../lib/filesystem/LibraryFile.class.php:274 ../lib/filesystem/URLFile.php:98
-#: ../lib/elearning/Ilias3ConnectedLink.class.php:72
-#: ../templates/wiki/show.php:19 ../templates/elearning/_my_account_form.php:18
-#: ../app/controllers/course/feedback.php:209
-#: ../app/views/oer/market/details.php:197
-#: ../app/views/oer/market/details.php:336
-#: ../app/views/resources/room/index.php:100
-#: ../app/views/resources/building/index.php:44
-#: ../app/views/resources/admin/categories.php:57
-#: ../app/views/resources/admin/properties.php:42
-#: ../app/views/resources/booking/index.php:155
-#: ../app/views/resources/location/index.php:23
-#: ../app/views/resources/_common/_resource_tr.php:196
-#: ../app/views/course/ilias_interface/view_object.php:17
-#: ../app/views/course/timesrooms/_stack_actions.php:1
-#: ../app/views/course/topics/index.php:86 ../app/views/course/scm/index.php:16
-#: ../app/views/course/statusgroups/_group.php:102
-#: ../app/views/course/feedback/_entry.php:12
-#: ../app/views/course/feedback/_feedback_stream.php:21
-#: ../app/views/admin/datafields/preview.php:14
-#: ../app/views/my_ilias_accounts/view_object.php:7
-#: ../app/views/file/folder_details.php:26
-#: ../app/views/questionnaire/evaluate.php:43
-#: ../app/views/questionnaire/answer.php:47
-msgid "Bearbeiten"
-msgstr "Edit"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:540
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:513
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1367
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2142
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2404
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2670
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2940
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:178
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:283
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:319
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:354
-#: ../lib/evaluation/evaluation_admin_template.lib.php:756
-#: ../lib/evaluation/evaluation_admin_template.lib.php:900
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:274
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:286
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:299
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:313
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1506
-#: ../lib/evaluation/evaluation_show.lib.php:382
-#: ../lib/elearning/ELearningUtils.class.php:603 ../templates/wiki/show.php:32
-#: ../app/controllers/course/feedback.php:214
-#: ../app/controllers/admin/courses.php:1015
-#: ../app/controllers/admin/courses.php:1016
-#: ../app/views/admission/courseset/index.php:85
-#: ../app/views/consultation/admin/ungrouped.php:119
-#: ../app/views/consultation/admin/ungrouped.php:265
-#: ../app/views/consultation/admin/index.php:186
-#: ../app/views/search/archive/index.php:113
-#: ../app/views/oer/market/details.php:199
-#: ../app/views/resources/global_locks/delete.php:19
-#: ../app/views/resources/room/delete.php:11
-#: ../app/views/resources/category/delete.php:49
-#: ../app/views/resources/category/_add_edit_form.php:50
-#: ../app/views/resources/category/_add_edit_form.php:78
-#: ../app/views/resources/category/_add_edit_form.php:105
-#: ../app/views/resources/category/_add_edit_form.php:129
-#: ../app/views/resources/building/delete.php:10
-#: ../app/views/resources/admin/categories.php:65
-#: ../app/views/resources/admin/properties.php:49
-#: ../app/views/resources/room_request/delete.php:12
-#: ../app/views/resources/room_request/_add_edit_form.php:48
-#: ../app/views/resources/room_request/decline.php:46
-#: ../app/views/resources/booking/index.php:162
-#: ../app/views/resources/booking/delete.php:26
-#: ../app/views/resources/booking/edit.php:26
-#: ../app/views/resources/location/delete.php:10
-#: ../app/views/resources/resource/temporary_permissions.php:40
-#: ../app/views/resources/resource/delete.php:8
-#: ../app/views/resources/resource/files.php:66
-#: ../app/views/resources/_common/_resource_tr.php:250
-#: ../app/views/resources/_common/_permission_table.php:86
-#: ../app/views/module/module/modulteil.php:468
-#: ../app/views/module/module/modul.php:688 ../app/views/files/flat.php:37
-#: ../app/views/files/index.php:61 ../app/views/files/_flat_tfoot.php:39
-#: ../app/views/siteinfo/delete.php:20 ../app/views/course/topics/index.php:92
-#: ../app/views/course/topics/edit.php:85
-#: ../app/views/course/gradebook/lecturers/edit_custom_definitions.php:37
-#: ../app/views/course/archive/confirm.php:68
-#: ../app/views/course/statusgroups/_group.php:113
-#: ../app/views/course/statusgroups/_askdelete_groups.php:18
-#: ../app/views/course/statusgroups/index.php:36
-#: ../app/views/course/feedback/_entry.php:19
-#: ../app/views/course/feedback/_feedback_stream.php:25
-#: ../app/views/settings/statusgruppen/index.php:81
-#: ../app/views/messages/read.php:98 ../app/views/admin/role/show_role.php:127
-#: ../app/views/admin/role/show_role.php:208
-#: ../app/views/admin/cronjobs/schedules/index.php:150
-#: ../app/views/admin/cronjobs/logs/index.php:129
-#: ../app/views/admin/cronjobs/tasks/index.php:78
-#: ../app/views/admin/content_terms_of_use/delete.php:37
-#: ../app/views/admin/user/_results.php:230
-#: ../app/views/admin/holidays/index.php:70
-#: ../app/views/admin/statusgroups/deleteGroup.php:14
-#: ../app/views/admin/sem_classes/details.php:290
-#: ../app/views/admin/sem_classes/details.php:299
-#: ../app/views/tour/admin_conflicts.php:55
-#: ../app/views/institute/basicdata/index.php:121
-#: ../app/views/calendar/single/_event_data.php:62
-#: ../app/views/calendar/single/edit.php:434
-#: ../app/views/calendar/single/_edit_status.php:42
-#: ../app/views/calendar/schedule/_entry_schedule.php:58
-#: ../app/views/calendar/schedule/_entry_course.php:80
-#: ../app/views/questionnaire/overview.php:31
-#: ../app/views/help_content/delete.php:16
-#: ../app/views/help_content/delete.php:18
-msgid "Löschen"
-msgstr "Delete"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:547
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:522
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1507
-#: ../app/views/resources/booking/move.php:41
-#: ../app/views/resources/booking/edit.php:19
-#: ../app/views/resources/resource/files.php:46 ../app/views/files/flat.php:25
-#: ../app/views/files/index.php:47 ../app/views/files/_flat_tfoot.php:28
-#: ../app/views/course/members/select_course.php:17
-#: ../app/views/course/statusgroups/_move_members.php:21
-msgid "Verschieben"
-msgstr "Move"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:562
-msgid "Stud.IP Fakultät einfügen:"
-msgstr "Insert Stud.IP faculty:"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:569
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:542
-msgid "Fakultät einfügen"
-msgstr "Insert faculty"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:593
-#: ../lib/classes/StudipRangeTreeView.class.php:77
-msgid ""
-"Dieses Element ist keine Stud.IP-Einrichtung, es hat daher keine Grunddaten."
-msgstr ""
-"This element is not a Stud.IP institute and therefore has no basic details."
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:595
-#: ../lib/classes/StudipRangeTreeView.class.php:79
-msgid "Keine Grunddaten vorhanden!"
-msgstr "No basic details available!"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:597
-msgid "Mitarbeiter:"
-msgstr "Staff member:"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:601
-msgid "Grunddaten in Stud.IP bearbeiten"
-msgstr "Edit basic details in Stud.IP"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:619
-#: ../lib/classes/StudipRangeTreeView.class.php:89
-msgid "Keine weiteren Daten vorhanden!"
-msgstr "No further details available!"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:641
-msgid "Element nach oben verschieben"
-msgstr "Move this element up"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:646
-msgid "Element nach unten verschieben"
-msgstr "Move this element down"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:670
-msgid "Element bearbeiten"
-msgstr "Edit element"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:674
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:687
-msgid "Name des Elements"
-msgstr "Element name"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:682
-msgid "Element mit einer Stud.IP-Einrichtung verlinken"
-msgstr "Link element with a Stud.IP institute"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:686
-msgid "Stud.IP-Einrichtung:"
-msgstr "Stud.IP institute:"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:692
-msgid "Kein Link"
-msgstr "No link"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:713
-msgid "Stud.IP-Einrichtung suchen:"
-msgstr "Search for Stud.IP institute:"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:719
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:721
-#: ../app/views/oer/market/review.php:15 ../app/views/news/_comments.php:28
-#: ../app/views/course/feedback/_add_edit_entry_form.php:26
-#: ../app/views/avatar/update.php:56
-msgid "Absenden"
-msgstr "Submit"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:720
-#: ../lib/classes/StudipSemSearch.class.php:90
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:694
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:730
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2041
-#: ../lib/navigation/StartNavigation.php:269
-#: ../templates/sidebar/room-search-widget.php:101
-#: ../templates/sidebar/search-widget.php:25
-#: ../templates/elearning/_searchfield.php:18
-#: ../app/controllers/course/ilias_interface.php:308
-#: ../app/views/search/archive/index.php:50 ../app/views/shared/filter.php:14
-#: ../app/views/news/edit_news.php:174
-#: ../app/views/course/studygroup/_choose_founders.php:22
-#: ../app/views/multipersonsearch/no_js_form.php:15
-#: ../app/views/multipersonsearch/js_form.php:11
-#: ../app/views/admin/role/assign_role.php:21
-#: ../app/views/admin/autoinsert/_search.php:19
-#: ../app/views/admin/user/index.php:207 ../app/views/event_log/show.php:69
-#: ../app/views/file/add_from_library.php:59
-#: ../app/views/questionnaire/assign.php:60
-msgid "Suchen"
-msgstr "Search"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:748
-msgid "Datenfeld nach oben"
-msgstr "Data field to top"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:754
-msgid "Datenfeld nach unten"
-msgstr "Data field to bottom"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:758
-msgid "Datenfeld bearbeiten"
-msgstr "Edit data field"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:761
-msgid "Datenfeld löschen"
-msgstr "Delete data field"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:782
-msgid "Datenfelder speichern"
-msgstr "Save data field"
-
-#: ../lib/classes/StudipRangeTreeViewAdmin.class.php:784
-#: ../app/controllers/admin/datafields.php:144
-#: ../app/controllers/admin/datafields.php:266
-#: ../app/views/admin/datafields/new.php:169
-msgid "Neues Datenfeld anlegen"
-msgstr "Create new data field"
-
-#: ../lib/classes/globalsearch/GlobalSearchFiles.php:229
-msgid "In diesem Dateibereich suchen"
-msgstr "Search inside this file area"
-
-#: ../lib/classes/globalsearch/GlobalSearchMyCourses.php:19
-#: ../lib/navigation/BrowseNavigation.php:65
-#: ../lib/navigation/StartNavigation.php:118
-#: ../app/controllers/my_courses.php:79 ../app/controllers/my_courses.php:80
-#: ../app/controllers/my_courses.php:271 ../app/views/settings/general.php:4
-#: ../app/views/my_courses/courseexport.php:21
-#: ../app/views/file/add_files_window.php:50
-#: ../app/views/file/choose_destination.php:45
-msgid "Meine Veranstaltungen"
-msgstr "My courses"
-
-#: ../lib/classes/globalsearch/GlobalSearchForum.php:126
-#, php-format
-msgid "Beitrag von %1$s in %2$s"
-msgstr "Postings from %1$s in %2$s"
-
-#: ../lib/classes/globalsearch/GlobalSearchForum.php:156
-msgid "Im Forum dieser Veranstaltung suchen"
-msgstr "Search inside the forum of this course"
-
-#: ../lib/classes/globalsearch/GlobalSearchUsers.php:20
-#: ../app/views/admission/user_list/configure.php:44
-#: ../app/views/resources/booking/_add_edit_form.php:411
-#: ../app/views/module/module/modul.php:451
-msgid "Personen"
-msgstr "Persons"
-
-#: ../lib/classes/globalsearch/GlobalSearchBuzzwords.php:41
-msgid "Stichwörter"
-msgstr "Keywords"
-
-#: ../lib/classes/globalsearch/GlobalSearchModules.php:18
-#: ../lib/navigation/MVVNavigation.php:25
-#: ../lib/navigation/MVVNavigation.php:27
-#: ../lib/navigation/MVVNavigation.php:58
-#: ../lib/navigation/MVVNavigation.php:60
-#: ../app/controllers/module/mvv_controller.php:74
-#: ../app/views/module/module/index.php:4
-#: ../app/views/module/institute/index.php:6
-#: ../app/views/admin/ilias_interface/edit_content.php:85
-#: ../app/views/my_courses/_exportcourse.php:62
-msgid "Module"
-msgstr "Modules"
-
-#: ../lib/classes/globalsearch/GlobalSearchModules.php:120
-#, php-format
-msgid "bis %s"
-msgstr "until %s"
-
-#: ../lib/classes/globalsearch/GlobalSearchModules.php:130
-#: ../app/views/search/studiengaenge/verlauf.php:59
-#: ../app/views/search/studiengaenge/verlauf.php:101
-#: ../app/views/studiengaenge/studiengangteile/index.php:13
-msgid "CP"
-msgstr "CP"
-
-#: ../lib/classes/globalsearch/GlobalSearchModules.php:132
-#: ../app/views/search/module/show.php:90
-#: ../app/views/shared/modul/overview.php:100
-#: ../app/views/module/module/index.php:12
-#: ../app/views/module/institute/details.php:8
-#: ../app/views/lvgruppen/lvgruppen/index.php:13
-msgid "Modulteile"
-msgstr "Module components"
-
-#: ../lib/classes/globalsearch/GlobalSearchResources.php:19
-msgid "Ressourcen"
-msgstr "Resources"
-
-#: ../lib/classes/globalsearch/GlobalSearchRoomBookings.php:20
-msgid "Raumbuchungen"
-msgstr "Room bookings"
-
-#: ../lib/classes/globalsearch/GlobalSearchMessages.php:73
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1761
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2081
-#: ../lib/navigation/AdminNavigation.php:149 ../app/controllers/news.php:603
-#: ../app/views/admin/datafields/index.php:73
-#: ../app/views/my_ilias_accounts/index.php:96
-msgid "System"
-msgstr "System"
-
-#: ../lib/classes/globalsearch/GlobalSearchMessages.php:74
-#: ../app/views/messages/_message_row.php:13
-#: ../app/views/messages/_message_row.php:28
-msgid "Systemnachricht"
-msgstr "System message"
-
-#: ../lib/classes/globalsearch/GlobalSearchBlubber.php:119
-#, php-format
-msgid "Kommentar von %s"
-msgstr "Comment by %s"
-
-#: ../lib/classes/globalsearch/GlobalSearchBlubber.php:119
-#, php-format
-msgid "Nachricht von %s"
-msgstr "Message from %s"
-
-#: ../lib/classes/Siteinfo.php:34
-msgid ""
-"Benutzen Sie den Link »neue Rubrik anlegen« in der Infobox, um eine Rubrik "
-"anzulegen."
-msgstr ""
-"The link »Create new category« in the information box takes you to the set "
-"up of new categories."
-
-#: ../lib/classes/Siteinfo.php:36
-msgid ""
-"Benutzen Sie den Link »neue Seite anlegen« in der Infobox, um eine Seite in "
-"dieser Rubrik anzulegen."
-msgstr ""
-"To create a new page in this category, follow the link »create new page« in "
-"the information box."
-
-#: ../lib/classes/Siteinfo.php:40
-msgid ""
-"Der für diese Stud.IP-Installation verantwortliche Administrator muss hier "
-"noch Inhalte einfügen.\n"
-"(:rootlist:)"
-msgstr ""
-"The administrator in charge for the Stud.IP installation has to insert "
-"further contents here.\n"
-"(:rootlist:)"
-
-#: ../lib/classes/Siteinfo.php:370
-msgid "die meisten Teilnehmenden"
-msgstr "the most participants"
-
-#: ../lib/classes/Siteinfo.php:383
-msgid "zuletzt angelegt"
-msgstr "lastly created"
-
-#: ../lib/classes/Siteinfo.php:394
-msgid "die meisten Materialien (Dokumente)"
-msgstr "the most documents"
-
-#: ../lib/classes/Siteinfo.php:408
-msgid "die aktivsten Veranstaltungen (Postings der letzten zwei Wochen)"
-msgstr ""
-"the most active courses (number of posting within in the last two weeks)"
-
-#: ../lib/classes/Siteinfo.php:439
-msgid "die beliebtesten Profile (Besucher)"
-msgstr "the most favoured profiles (visitors)"
-
-#: ../lib/classes/Siteinfo.php:471 ../templates/index_nobody.php:67
-msgid "Aktive Veranstaltungen"
-msgstr "Active courses"
-
-#: ../lib/classes/Siteinfo.php:472
-msgid "alle Veranstaltungen, die nicht archiviert wurden"
-msgstr "all courses not moved to the archive"
-
-#: ../lib/classes/Siteinfo.php:474 ../lib/navigation/BrowseNavigation.php:74
-msgid "Archivierte Veranstaltungen"
-msgstr "Archived courses"
-
-#: ../lib/classes/Siteinfo.php:475
-msgid "alle Veranstaltungen, die archiviert wurden"
-msgstr "all courses that have been archived"
-
-#: ../lib/classes/Siteinfo.php:477 ../lib/classes/LockRules.class.php:172
-#: ../app/controllers/course/basicdata.php:137
-#: ../app/views/course/details/index.php:93
-msgid "beteiligte Einrichtungen"
-msgstr "participating institutes"
-
-#: ../lib/classes/Siteinfo.php:478
-msgid "alle Einrichtungen außer den Fakultäten"
-msgstr "all institutes except faculties"
-
-#: ../lib/classes/Siteinfo.php:480
-msgid "beteiligte Fakultäten"
-msgstr "participating faculties"
-
-#: ../lib/classes/Siteinfo.php:481
-msgid "alle Fakultäten"
-msgstr "all faculties"
-
-#: ../lib/classes/Siteinfo.php:483
-msgid "registrierte Administratoren"
-msgstr "registered administrators"
-
-#: ../lib/classes/Siteinfo.php:486
-msgid "registrierte Dozenten"
-msgstr "registered lecturers"
-
-#: ../lib/classes/Siteinfo.php:489
-msgid "registrierte Tutoren"
-msgstr "registered tutors"
-
-#: ../lib/classes/Siteinfo.php:492
-msgid "registrierte Autoren"
-msgstr "registered authors"
-
-#: ../lib/classes/Siteinfo.php:498
-msgid "verlinkte Dateien"
-msgstr "linked files"
-
-#: ../lib/classes/Siteinfo.php:511
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:649
-#: ../lib/modules/CoreAdmin.class.php:92
-#: ../lib/modules/CoreStudygroupAdmin.class.php:45
-#: ../lib/navigation/AdminNavigation.php:79
-#: ../lib/navigation/ToolsNavigation.php:69
-#: ../lib/navigation/StartNavigation.php:282
-#: ../app/views/evaluation/display.php:6
-msgid "Evaluationen"
-msgstr "Evaluations"
-
-#: ../lib/classes/Siteinfo.php:515
-msgid "Wiki-Seiten"
-msgstr "Wiki pages"
-
-#: ../lib/classes/Siteinfo.php:519
-msgid "Ressourcen-Objekte"
-msgstr "Resource objects"
-
-#: ../lib/classes/Siteinfo.php:520
-msgid "von Stud.IP verwaltete Ressourcen wie Räume oder Geräte"
-msgstr "resources managed by Stud.IP like rooms or equipment"
-
-#: ../lib/classes/Siteinfo.php:532
-msgid "Anzahl Beiträge aller verwendeten Foren"
-msgstr "Number of postings of all used forums"
-
-#: ../lib/classes/ModulesNotification.class.php:52
-#: ../lib/navigation/StartNavigation.php:281
-msgid "Umfragen und Tests"
-msgstr "Surveys and tests"
-
-#: ../lib/classes/ModulesNotification.class.php:55
-msgid "Grunddaten der Veranstaltung"
-msgstr "Basic course details"
-
-#: ../lib/classes/ModulesNotification.class.php:58
-msgid "Plugins der Veranstaltung"
-msgstr "Plug-ins of the course"
-
-#: ../lib/classes/ModulesNotification.class.php:59
-msgid "Stud.IP Benachrichtigung"
-msgstr "Stud.IP notification"
-
-#: ../lib/classes/ModulesNotification.class.php:65
-#: ../lib/navigation/CourseNavigation.php:95
-#: ../app/views/course/basicdata/view.php:82
-msgid "Personal"
-msgstr "Staff"
-
-#: ../lib/classes/ModulesNotification.class.php:66
-#: ../lib/modules/CoreWiki.class.php:135
-msgid "Wiki-Web"
-msgstr "Wiki web"
-
-#: ../lib/classes/ModulesNotification.class.php:67
-msgid "Freie Informationsseite"
-msgstr "Free information page"
-
-#: ../lib/classes/ModulesNotification.class.php:68
-#: ../lib/modules/CoreElearningInterface.class.php:41
-#: ../lib/modules/CoreElearningInterface.class.php:81
-#: ../lib/navigation/AdminNavigation.php:172
-#: ../lib/navigation/ToolsNavigation.php:75
-#: ../lib/navigation/StartNavigation.php:287
-#: ../app/controllers/course/elearning.php:35
-#: ../app/views/oer/market/_searchform.php:87
-#: ../app/views/oer/mymaterial/edit.php:118
-#: ../app/views/admin/sem_classes/details.php:219
-msgid "Lernmodule"
-msgstr "Learning modules"
-
-#: ../lib/classes/ModulesNotification.class.php:291
-msgid "Ein neuer Beitrag:"
-msgstr "A new posting:"
-
-#: ../lib/classes/ModulesNotification.class.php:293
-#, php-format
-msgid "%s neue Beiträge:"
-msgstr "%s new postings:"
-
-#: ../lib/classes/ModulesNotification.class.php:322
-#, php-format
-msgid "%s neue vorläufige Teilnehmende, "
-msgstr "%s new preliminary participants"
-
-#: ../lib/classes/ModulesNotification.class.php:324
-msgid "1 neue Person, "
-msgstr "1 new person"
-
-#: ../lib/classes/ModulesNotification.class.php:327
-#, php-format
-msgid "%s neue Personen:"
-msgstr "%s new persons: "
-
-#: ../lib/classes/ModulesNotification.class.php:329
-msgid "1 neue Person:"
-msgstr "1 new person:"
-
-#: ../lib/classes/ModulesNotification.class.php:341
-#, php-format
-msgid "%s neue Dokumente hochgeladen:"
-msgstr "%s new document(s):"
-
-#: ../lib/classes/ModulesNotification.class.php:343
-msgid "1 neues Dokument hochgeladen:"
-msgstr "1 new document:"
-
-#: ../lib/classes/ModulesNotification.class.php:350
-#, php-format
-msgid "%s neue Termine angelegt:"
-msgstr "Created %s new dates:"
-
-#: ../lib/classes/ModulesNotification.class.php:352
-msgid "1 neuer Termin angelegt:"
-msgstr "Created 1 new date:"
-
-#: ../lib/classes/ModulesNotification.class.php:360
-#, php-format
-msgid "%s neue Content-Module angelegt"
-msgstr "%s new content module"
-
-#: ../lib/classes/ModulesNotification.class.php:362
-msgid "1 neues Content-Modul angelegt"
-msgstr "1 new content module"
-
-#: ../lib/classes/ModulesNotification.class.php:370
-#, php-format
-msgid "%s Wikiseiten wurden angelegt oder bearbeitet:"
-msgstr "%s wiki pages have been created or edited:"
-
-#: ../lib/classes/ModulesNotification.class.php:372
-msgid "1 Wikiseite wurde angelegt oder bearbeitet:"
-msgstr "1 wiki page has been created or edited:"
-
-#: ../lib/classes/ModulesNotification.class.php:379
-#, php-format
-msgid "Die Seite \"%s\" wurde neu angelegt oder bearbeitet:"
-msgstr "Page \"%s\" created or edited:"
-
-#: ../lib/classes/ModulesNotification.class.php:387
-#, php-format
-msgid "%s neue Umfragen oder Evaluationen wurden angelegt:"
-msgstr "%s surveys or evaluations created:"
-
-#: ../lib/classes/ModulesNotification.class.php:389
-msgid "1 neue Umfrage oder Evaluation wurde angelegt:"
-msgstr "1 survey or evaluation created:"
-
-#: ../lib/classes/ModulesNotification.class.php:397
-#, php-format
-msgid "%s neue Ankündigungen wurden angelegt:"
-msgstr "%s new announcements have been created:"
-
-#: ../lib/classes/ModulesNotification.class.php:399
-msgid "Eine neue Ankündigung wurde angelegt:"
-msgstr "One announcement created:"
-
-#: ../lib/classes/ModulesNotification.class.php:406
-msgid "Die Grunddaten wurden geändert:"
-msgstr "Basic details changed:"
-
-#: ../lib/classes/StudipSemTreeSearch.class.php:193
-msgid "Suche nach Studienbereichen starten"
-msgstr "Start search for fields of study"
-
-#: ../lib/classes/MultiPersonSearch.class.php:527
-#: ../lib/classes/MultiPersonSearch.class.php:529
-#: ../app/controllers/admin/role.php:488
-#: ../app/views/course/statusgroups/_group.php:86
-#: ../app/views/course/grouping/find_members_to_add.php:17
-#: ../app/views/admin/statusgroups/_group.php:19
-msgid "Personen hinzufügen"
-msgstr "Add users"
-
-#: ../lib/classes/MultiPersonSearch.class.php:528
-msgid "Bitte wählen Sie aus, wen Sie hinzufügen möchten."
-msgstr "Please select the user(s) you want to add."
-
-#: ../lib/classes/coursewizardsteps/StudyAreasLVGroupsCombinedWizardStep.php:48
-#: ../lib/classes/coursewizardsteps/LVGroupsWizardStep.php:404
-#: ../app/controllers/course/lvgselector.php:289
-msgid ""
-"Die Veranstaltung muss mindestens einem Studienbereich oder einer LV-Gruppe "
-"zugeordnet sein."
-msgstr ""
-"The course needs to be assigned to at least one field of study or course "
-"group."
-
-#: ../lib/classes/coursewizardsteps/StudyAreasLVGroupsCombinedWizardStep.php:53
-#: ../lib/classes/coursewizardsteps/StudyAreasWizardStep.php:149
-msgid "Die Veranstaltung muss mindestens einem Studienbereich zugeordnet sein."
-msgstr "The course needs to be assigned to at least one field of study."
-
-#: ../lib/classes/coursewizardsteps/StudyAreasLVGroupsCombinedWizardStep.php:58
-#: ../lib/classes/coursewizardsteps/StudyAreasWizardStep.php:153
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:372
-#: ../lib/classes/coursewizardsteps/LVGroupsWizardStep.php:415
-msgid "Bitte beheben Sie erst folgende Fehler, bevor Sie fortfahren:"
-msgstr "Please fill in these required fields with valid values:"
-
-#: ../lib/classes/coursewizardsteps/AdvancedBasicDataWizardStep.php:93
-#, php-format
-msgid ""
-"Es ist ein Fehler beim Speichern der erweiterten Einstellungen für %s "
-"aufgetreten. Kontrollieren Sie bitte:"
-msgstr ""
-"An error occurred while saving the additional settings for %s. Please check:"
-
-#: ../lib/classes/coursewizardsteps/AdvancedBasicDataWizardStep.php:95
-msgid "Untertitel der Veranstalung"
-msgstr "Course subtitle"
-
-#: ../lib/classes/coursewizardsteps/AdvancedBasicDataWizardStep.php:96
-#: ../lib/archiv.inc.php:184 ../app/controllers/course/basicdata.php:65
-msgid "Art der Veranstaltung"
-msgstr "Type of course"
-
-#: ../lib/classes/coursewizardsteps/AdvancedBasicDataWizardStep.php:97
-msgid "ECTS-Punkte der Veranstaltung"
-msgstr "Course's ECTS points"
-
-#: ../lib/classes/coursewizardsteps/AdvancedBasicDataWizardStep.php:98
-msgid "Max. Teilnehmendenzahl der Veranstaltung"
-msgstr "Max. number of participants in the course"
-
-#: ../lib/classes/coursewizardsteps/StudyAreasWizardStep.php:48
-msgid ""
-"Das Anlegen einer Veranstaltung ist nicht möglich, da keine Studienbereiche "
-"existieren. Bitte wenden Sie sich an [die Stud.IP-Administration]"
-msgstr ""
-"Creation of a course isn't possible since no fields of study exist. Please "
-"contact [the Stud.IP administration]"
-
-#: ../lib/classes/coursewizardsteps/StudyAreasWizardStep.php:78
-#: ../app/views/course/wizard/steps/studyareas/index.php:31
-#: ../app/views/course/wizard/steps/lvgroups/index.php:29
-#: ../app/views/course/lvgselector/index.php:33
-msgid "Es wurde kein Suchergebnis gefunden."
-msgstr "No results."
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:97
-#, php-format
-msgid ""
-"Die Konfiguration der Studiengruppen ist unvollständig. Bitte wenden Sie "
-"sich an [die Stud.IP-Administration]%s ."
-msgstr ""
-"The configuration for study groups is incomplete. Please contact one of the "
-"[admins]%s ."
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:111
-#, php-format
-msgid ""
-"Veranstaltungen können nur im aktuellen oder in zukünftigen Semestern "
-"angelegt werden. Leider wurde kein passendes Semester gefunden. Bitte wenden "
-"Sie sich an [die Stud.IP-Administration]%s ."
-msgstr ""
-"Courses can only be created in the current or in future semesters. "
-"Unfortunately, no matching semester could be found. Please contact [the Stud."
-"IP administration]%s ."
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:141
-#, php-format
-msgid ""
-"Um Veranstaltungen anlegen zu können, muss Ihr Account der Einrichtung, für "
-"die Sie eine Veranstaltung anlegen möchten, zugeordnet werden. Bitte wenden "
-"Sie sich an [die Stud.IP-Administration]%s ."
-msgstr ""
-"To set up a course your account must be assigned to the institute you wish "
-"to set up the course for. Please contact [the admins]%s ."
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:161
-msgid "Beteiligte Einrichtung hinzufügen"
-msgstr "Add an institution"
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:228
-msgid "Vertretung hinzufügen"
-msgstr "Add substitute"
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:336
-msgid "Bitte geben Sie den Namen der Veranstaltung an."
-msgstr "Please enter a name for the course. "
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:341
-#: ../app/controllers/course/basicdata.php:452
-msgid "Die Veranstaltungsnummer hat ein ungültiges Format."
-msgstr "The format of the course number is invalid."
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:346
-#, php-format
-msgid "Bitte tragen Sie mindestens eine Person als %s ein."
-msgstr "Please add a person to the role %s."
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:354
-#, php-format
-msgid "Sie selbst müssen entweder als %s oder als Vertretung eingetragen sein."
-msgstr "You need to be %s or substitute."
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:360
-#, php-format
-msgid "Sie müssen selbst als %s eingetragen sein."
-msgstr "You need to be enlisted as %s."
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:367
-msgid "Sie müssen die Nutzungsbedingungen akzeptieren."
-msgstr "You need to accept the terms of use. "
-
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:539
-#: ../lib/classes/coursewizardsteps/BasicDataWizardStep.php:549
-#: ../app/controllers/course/grouping.php:419
-#: ../app/views/course/members/add_dozent.php:1
-#: ../app/views/course/members/add_member.php:1
-#: ../app/views/course/members/add_tutor.php:1
-#: ../app/views/course/members/import_autorlist.php:6
-#, php-format
-msgid "%s hinzufügen"
-msgstr "add %s"
-
-#: ../lib/classes/coursewizardsteps/LVGroupsWizardStep.php:410
-msgid ""
-"Der Veranstaltung muss mindestens eine Lehrveranstaltungsgruppe zugeordnet "
-"sein."
-msgstr "At least one course group must be assigned to the course."
-
-#: ../lib/classes/helpbar/Helpbar.php:256
-msgid "Weiterführende Hilfe"
-msgstr "Further help"
-
-#: ../lib/classes/StudipFileCache.class.php:50
-msgid "Dateisystem"
-msgstr ""
-
-#: ../lib/classes/StudipFileCache.class.php:247
-#: ../lib/classes/StudipDbCache.class.php:102
-msgid "Anzahl Einträge"
-msgstr ""
-
-#: ../lib/classes/StudipSemSearch.class.php:90
-#: ../app/views/admission/courseset/institutes.php:3
-#: ../app/views/admission/courseset/configure.php:82
-#: ../app/views/search/globalsearch/index.php:9
-#: ../app/views/oer/market/_searchform.php:51
-#: ../app/views/news/edit_news.php:178
-#: ../app/views/multipersonsearch/no_js_form.php:17
-#: ../app/views/multipersonsearch/js_form.php:13
-#: ../app/views/files_dashboard/_input-group-search.php:13
-#: ../app/views/wiki/import.php:19 ../app/views/file/choose_file.php:172
-msgid "Suche starten"
-msgstr "Start search"
-
-#: ../lib/classes/StudipSemSearch.class.php:91
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:661
-#: ../templates/admin/adminList.php:7
-#: ../templates/elearning/_cms_selectbox.php:25
-#: ../templates/elearning/elearning_interface_edit.php:119
-#: ../templates/elearning/_new_module_form.php:16
-#: ../app/views/admission/courseset/_institute_choose.php:65
-#: ../app/views/admission/restricted_courses/_institute_choose.php:37
-#: ../app/views/oer/market/add_to_course.php:7
-#: ../app/views/resources/room/select_category.php:16
-#: ../app/views/resources/building/select_category.php:16
-#: ../app/views/resources/room_request/resolve.php:180
-#: ../app/views/resources/location/select_category.php:16
-#: ../app/views/course/timesrooms/_select_semester_range.php:12
-#: ../app/views/course/elearning/edit.php:115
-#: ../app/views/admin/role/assign_role.php:37
-#: ../app/views/admin/role/assign_plugin_role.php:25
-#: ../app/views/admin/role/show_role.php:30
-#: ../app/views/admin/datafields/type_select.php:27
-#: ../app/views/contact/index.php:52
-#: ../app/views/room_management/planning/copy_bookings.php:65
-#: ../app/views/calendar/single/_semester_filter.php:28
-#: ../app/views/library_file/select_type.php:18
-#: ../app/views/file/choose_folder.php:186 ../app/views/avatar/update.php:29
-#: ../app/views/questionnaire/assign_step1.php:53
-msgid "Auswählen"
-msgstr "Select"
-
-#: ../lib/classes/StudipSemSearch.class.php:91
-msgid "anderes Semester auswählen"
-msgstr "select a different semester"
-
-#: ../lib/classes/StudipSemSearch.class.php:92 ../app/views/wiki/import.php:42
-#: ../app/views/wiki/import.php:101
-#: ../app/views/questionnaire/assign_step1.php:66
-msgid "Neue Suche"
-msgstr "New search"
-
-#: ../lib/classes/StudipSemSearch.class.php:92
-msgid "Neue Suche starten"
-msgstr "Start new search"
-
-#: ../lib/classes/StudipObject.class.php:125
-#: ../lib/classes/DatabaseObject.class.php:89
-msgid "Die ObjectID darf nicht leer sein."
-msgstr "Object-ID may not be empty."
-
-#: ../lib/classes/StudipObject.class.php:164
-#: ../lib/classes/DatabaseObject.class.php:115
-msgid "Die AuthorID darf nicht leer sein."
-msgstr "Author-ID may not be empty."
-
-#: ../lib/classes/QuickSearch.class.php:445
-msgid "Kein korrektes Suchobjekt angegeben."
-msgstr "Incorrect search object entered."
-
-#: ../lib/classes/EventLog.php:27
-msgid "Nutzer/-in"
-msgstr "User"
-
-#: ../lib/classes/EventLog.php:29
-msgid "Sonstige (von Aktion abhängig)"
-msgstr "Other (depending on action)"
-
-#: ../lib/classes/StudipSemTreeViewSimple.class.php:103
-#: ../lib/classes/StudipSemRangeTreeViewSimple.class.php:99
-msgid "eine Ebene zurück"
-msgstr "one level back"
-
-#: ../lib/classes/StudipSemTreeViewSimple.class.php:150
-#: ../lib/classes/StudipSemRangeTreeViewSimple.class.php:132
-#, php-format
-msgid "%s Einträge in allen Unterebenen vorhanden"
-msgstr "%s entries included in any sub-level"
-
-#: ../lib/classes/StudipSemTreeViewSimple.class.php:164
-#: ../lib/classes/StudipSemRangeTreeViewSimple.class.php:146
-msgid "Auf dieser Ebene existieren keine weiteren Unterebenen."
-msgstr "No further sub-levels exist below this level."
-
-#: ../lib/classes/StudipSemTreeViewSimple.class.php:188
-#: ../lib/classes/StudipSemRangeTreeViewSimple.class.php:186
-msgid "alle Einträge auf dieser Ebene anzeigen"
-msgstr "display all entries at this level"
-
-#: ../lib/classes/StudipSemTreeViewSimple.class.php:190
-#: ../lib/classes/StudipSemRangeTreeViewSimple.class.php:188
-#, php-format
-msgid "<b>%s</b> Einträge auf dieser Ebene.&nbsp;"
-msgstr "<b>%s</b> entries at this level &nbsp;"
-
-#: ../lib/classes/StudipSemTreeViewSimple.class.php:195
-#: ../lib/classes/StudipSemRangeTreeViewSimple.class.php:193
-#: ../lib/classes/StudipSemTreeView.class.php:155
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:564
-msgid "Keine Einträge auf dieser Ebene vorhanden!"
-msgstr "No entries at this level available!"
-
-#: ../lib/classes/StudipSemTreeViewSimple.class.php:200
-#: ../lib/classes/StudipSemRangeTreeViewSimple.class.php:198
-msgid "alle Einträge in allen Unterebenen anzeigen"
-msgstr "display all entries in any sub-level"
-
-#: ../lib/classes/StudipSemTreeViewSimple.class.php:202
-#: ../lib/classes/StudipSemRangeTreeViewSimple.class.php:200
-#, php-format
-msgid "<b>%s</b> Einträge in allen Unterebenen vorhanden"
-msgstr "<b>%s</b> entries included in any sub-level "
-
-#: ../lib/classes/MembersModel.php:100
-#, php-format
-msgid ""
-"Ihre Anmeldung zur Veranstaltung **%1$s** wurde von Lehrenden  (%2$s) oder "
-"Admin aufgehoben."
-msgstr ""
-"Your enrolment to the course **%1$s** has been revoked by lecturers (%2$s) "
-"or an administrator."
-
-#: ../lib/classes/MembersModel.php:103 ../lib/classes/MembersModel.php:133
-#: ../lib/classes/MembersModel.php:175 ../lib/classes/MembersModel.php:220
-#: ../lib/classes/MembersModel.php:267 ../lib/classes/MembersModel.php:498
-#: ../lib/showNews.inc.php:118 ../app/controllers/news.php:434
-#: ../app/controllers/course/members.php:680
-#: ../app/controllers/course/members.php:703
-msgid "Systemnachricht:"
-msgstr "System message:"
-
-#: ../lib/classes/MembersModel.php:104
-msgid "Anmeldung aufgehoben"
-msgstr "Enrolment cancelled"
-
-#: ../lib/classes/MembersModel.php:127
-#, php-format
-msgid ""
-"Sie wurden von %1$s oder Admin von der Warteliste der Veranstaltung **%2$s** "
-"gestrichen und sind damit __nicht__ zugelassen worden."
-msgstr ""
-"You have been removed from the waiting list of the course **%2$s** by %1$s "
-"or an administrator and therefore you are __not__ enroled."
-
-#: ../lib/classes/MembersModel.php:129
-#, php-format
-msgid ""
-"Sie wurden von %1$s oder Admin aus der Veranstaltung **%2$s** gestrichen und "
-"sind damit __nicht__ zugelassen worden."
-msgstr ""
-"You have been signed out of the course **%2$s** by %1$s or an administrator "
-"and therefore you are __not__ enroled."
-
-#: ../lib/classes/MembersModel.php:134
-msgid "nicht zugelassen in Veranstaltung"
-msgstr "not admitted to course"
-
-#: ../lib/classes/MembersModel.php:160
-#, php-format
-msgid ""
-"Sie wurden von %1$s oder Admin\n"
-"                                in die Veranstaltung **%2$s** eingetragen."
-msgstr ""
-"You have been entered in the course **%2$s**\n"
-"                                by %1$s or an admin."
-
-#: ../lib/classes/MembersModel.php:164
-#, php-format
-msgid ""
-"Sie wurden von %1$s oder Admin\n"
-"                                    aus der Warteliste in die Veranstaltung "
-"**%2$s** aufgenommen und sind damit zugelassen."
-msgstr ""
-"You have been enroled from the waiting list in the course **%2$s**\n"
-"                                by %1$s or an admin and you are therefore "
-"approved."
-
-#: ../lib/classes/MembersModel.php:168
-#, php-format
-msgid ""
-"Sie wurden von einem/einer %1$s oder Admin\n"
-"                                    vom Status **vorläufig akzeptiert** auf "
-"**teilnehmend** in der Veranstaltung **%2$s**\n"
-"                                    hochgestuft und sind damit zugelassen."
-msgstr ""
-"You have been promoted in the course **%2$s**\n"
-"                                    by a %1$s or an admin from the state "
-"**preliminary accepted**\n"
-"                                    to **participating** and therefore you "
-"are admitted."
-
-#: ../lib/classes/MembersModel.php:176 ../lib/classes/MembersModel.php:221
-#: ../app/controllers/course/members.php:680
-#: ../app/controllers/course/members.php:703
-msgid "Eintragung in Veranstaltung"
-msgstr "Enrolment in course"
-
-#: ../lib/classes/MembersModel.php:205
-#, php-format
-msgid ""
-"Sie wurden vom einem/einer %1$s oder Admin\n"
-"                    in die Veranstaltung **%2$s** eingetragen."
-msgstr ""
-"You have been entered in the course **%2$s**\n"
-"                    by a %1$s or an admin."
-
-#: ../lib/classes/MembersModel.php:209
-#, php-format
-msgid ""
-"Sie wurden vom einem/einer %1$s oder Admin\n"
-"                        aus der Warteliste in die Veranstaltung **%2$s** "
-"aufgenommen und sind damit zugelassen."
-msgstr ""
-"You have been entered in the course **%2$s** from the waiting list\n"
-"                        by %1$s or an admin and therefore you are admitted."
-
-#: ../lib/classes/MembersModel.php:213
-#, php-format
-msgid ""
-"Sie wurden von einem/einer %1$s oder Admin vom Status\n"
-"                        **vorläufig akzeptiert** auf \"**teilnehmend** in "
-"der Veranstaltung **%2$s**\n"
-"                        hochgestuft und sind damit zugelassen."
-msgstr ""
-"You have been promoted in the course **%2$s**\n"
-"                        by %1$s or an admin from the state **preliminary "
-"accepted** to \"**participating**\n"
-"                        and therefore you are admitted."
-
-#: ../lib/classes/MembersModel.php:229
-#, php-format
-msgid ""
-"%1$s wurde in die Veranstaltung mit dem Status\n"
-"                    <b>%2$s</b> eingetragen."
-msgstr ""
-"%1$s has been enroled in the course with the state\n"
-"                    <b>%2$s</b>."
-
-#: ../lib/classes/MembersModel.php:233
-#, php-format
-msgid ""
-"%1$s wurde aus der Anmelde bzw. Warteliste\n"
-"                        mit dem Status <b>%2$s</b> in die Veranstaltung "
-"eingetragen."
-msgstr ""
-"%1$s has been enroled with the state <b>%2$s</b> in the course\n"
-"                         from the enrolment/waiting list."
-
-#: ../lib/classes/MembersModel.php:236
-#, php-format
-msgid ""
-"%1$s wurde mit dem Status <b>%2$s</b>\n"
-"                        endgültig akzeptiert und damit in die Veranstaltung "
-"aufgenommen."
-msgstr ""
-"%1$s has been finally accepted with the state <b>%2$s</b>\n"
-"                        and thereby enroled in the course."
-
-#: ../lib/classes/MembersModel.php:241
-#: ../app/controllers/course/members.php:1042
-msgid ""
-"Es stehen keine weiteren Plätze mehr im Teilnehmendenkontingent zur "
-"Verfügung."
-msgstr "There are no more seats available in the participant contingent."
-
-#: ../lib/classes/MembersModel.php:243
-msgid ""
-"Beim Eintragen ist ein Fehler aufgetreten.\n"
-"                Bitte versuchen Sie es erneut oder wenden Sie sich an einen "
-"Systemadministrator"
-msgstr ""
-"An error occurred during entry. Please try again or contact a system "
-"administrator"
-
-#: ../lib/classes/MembersModel.php:263
-#, php-format
-msgid ""
-"Sie wurden von einem/einer Veranstaltungsleiter/-in (%1$s) oder einem/einer "
-"Administrator/-in auf die Warteliste der Veranstaltung **%2$s** gesetzt."
-msgstr ""
-"You have been set to the wait list for the course **%2$s** by a lecturer "
-"(%1$s) or an administrator."
-
-#: ../lib/classes/MembersModel.php:268
-msgid "Auf Warteliste gesetzt"
-msgstr "Added to wait list"
-
-#: ../lib/classes/MembersModel.php:493
-#, php-format
-msgid ""
-"Sie wurden von der Veranstaltung **%s** von %s oder der Administration "
-"abgemeldet, Sie wurden auf die Warteliste dieser Veranstaltung gesetzt."
-msgstr ""
-"You have been removed from the course **%s** by %s or an admin. You are now "
-"on the waiting list for that course."
-
-#: ../lib/classes/MembersModel.php:499
-msgid "Anmeldung aufgehoben, auf Warteliste gesetzt"
-msgstr "Enrolment cancelled, added to wait list"
-
-#: ../lib/classes/UserConfig.class.php:37
-msgid "Benutzer Konfigurationen"
-msgstr "User configurations"
-
-#: ../lib/classes/JsonApi/Routes/Files/RoutesHelperTrait.php:138
-#, php-format
-msgid "Ordner %s ist ein Hauptordner, der nicht bearbeitet werden kann!"
-msgstr "Folder %s is a main folder which cannot be modified!"
-
-#: ../lib/classes/JsonApi/Routes/Files/RoutesHelperTrait.php:145
-#, php-format
-msgid "Unzureichende Berechtigungen zum Bearbeiten des Ordners %s"
-msgstr "Insufficient permissions to edit folder %s"
-
-#: ../lib/classes/JsonApi/Routes/Files/RoutesHelperTrait.php:176
-#, php-format
-msgid "Fehler beim Speichern des Ordners %s"
-msgstr "Error while saving folder %s"
-
-#: ../lib/classes/JsonApi/Routes/Blubber/CommentsUpdate.php:59
-#: ../app/routes/Blubber.php:140
-#, php-format
-msgid ""
-"%s hat als Moderator gerade Ihren Beitrag in Blubber editiert.\n"
-"\n"
-"Die alte Version des Beitrags lautete:\n"
-"\n"
-"%s\n"
-"\n"
-"Die neue lautet:\n"
-"\n"
-"%s\n"
-msgstr ""
-"%s has edited your post in Blubber as a moderator.\n"
-"\n"
-"The old version of the post was:\n"
-"\n"
-"%s\n"
-"\n"
-"The new one is:\n"
-"\n"
-"%s\n"
-
-#: ../lib/classes/JsonApi/Routes/Blubber/CommentsUpdate.php:78
-#: ../app/routes/Blubber.php:158
-msgid "Änderungen an Ihrem Blubber."
-msgstr "Modifications to your Blubber."
-
-#: ../lib/classes/JsonApi/Routes/Blubber/CommentsDelete.php:43
-#, php-format
-msgid ""
-"%s hat als Moderator gerade Ihren Beitrag im Blubberforum GELÖSCHT.\n"
-"\n"
-"Der alte Beitrag lautete:\n"
-"\n"
-"%s\n"
-msgstr ""
-"%s has DELETED your entry in the Blubber forum.\n"
-"\n"
-"The former blubber was:\n"
-"\n"
-"%s\n"
-
-#: ../lib/classes/JsonApi/Routes/Blubber/CommentsDelete.php:53
-msgid "Ihr Posting wurde gelöscht."
-msgstr "Your posting has been deleted."
-
-#: ../lib/classes/exportdocument/ExportPDF.class.php:83
-#: ../app/views/news/_comments.php:6
-msgid "Kommentare"
-msgstr "Comments"
-
-#: ../lib/classes/UserLookup.class.php:425
-#: ../lib/navigation/AdminNavigation.php:24
-#: ../app/controllers/institute/members.php:185
-msgid "Admin"
-msgstr "Admin"
-
-#: ../lib/classes/UserLookup.class.php:454
-msgid "Ohne Domain"
-msgstr "Without domain"
-
-#: ../lib/classes/librarysearch/LibraryDocument.class.php:201
-#, php-format
-msgid "ISBN: %s"
-msgstr "ISBN: %s"
-
-#: ../lib/classes/librarysearch/LibraryDocument.class.php:204
-#, php-format
-msgid "ISSN: %s"
-msgstr "ISSN: %s"
-
-#: ../lib/classes/librarysearch/LibraryDocument.class.php:415
-#, php-format
-msgid "Autor: „%s“"
-msgstr "Author: \"%s\""
-
-#: ../lib/classes/librarysearch/LibraryDocument.class.php:418
-#, php-format
-msgid "Jahr: „%s“"
-msgstr "Year: \"%s\""
-
-#: ../lib/classes/librarysearch/LibraryDocument.class.php:421
-#, php-format
-msgid "Titel: „%s“"
-msgstr "Title: \"%s\""
-
-#: ../lib/classes/librarysearch/LibraryDocument.class.php:424
-#, php-format
-msgid "Nummer: „%s“"
-msgstr "Number: \"%s\""
-
-#: ../lib/classes/librarysearch/LibraryDocument.class.php:427
-#, php-format
-msgid "Zeitschrift: „%s“"
-msgstr "Journal: \"%s\""
-
-#: ../lib/classes/librarysearch/LibraryDocument.class.php:430
-#, php-format
-msgid "Signatur: „%s“"
-msgstr "Signature: \"%s\""
-
-#: ../lib/classes/librarysearch/LibrarySearchManager.class.php:72
-#: ../app/controllers/file.php:907
-msgid ""
-"In dieser Stud.IP-Installation sind keine Bibliothekskataloge aktiviert!"
-msgstr "No library catalogues activated in this Stud.IP installation!"
-
-#: ../lib/classes/TreeView.class.php:345
-msgid "Alle Unterelemente schließen"
-msgstr "Close all sub-elements"
-
-#: ../lib/classes/TreeView.class.php:345
-#: ../lib/classes/StudipSemTreeView.class.php:127
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:480
-msgid "Alle Unterelemente öffnen"
-msgstr "Open all sub-elements"
-
-#: ../lib/classes/TreeView.class.php:348
-#: ../lib/classes/StudipSemTreeView.class.php:129
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:482
-msgid "Dieses Element hat keine Unterelemente"
-msgstr "This element has no sub-elements"
-
-#: ../lib/classes/TreeView.class.php:363 ../lib/classes/TreeView.class.php:382
-#: ../lib/classes/StudipSemTreeView.class.php:121
-msgid "Dieses Element schließen"
-msgstr "Close this element"
-
-#: ../lib/classes/TreeView.class.php:364 ../lib/classes/TreeView.class.php:383
-#: ../lib/classes/StudipSemTreeView.class.php:122
-msgid "Dieses Element öffnen"
-msgstr "Open this element"
-
-#: ../lib/classes/RangeTreeObjectInst.class.php:48
-#: ../lib/classes/RangeTreeObjectFak.class.php:49
-#: ../lib/classes/LockRules.class.php:216
-#: ../app/views/institute/overview/index.php:8
-#: ../app/views/institute/basicdata/index.php:61
-msgid "Straße"
-msgstr "Street"
-
-#: ../lib/classes/RangeTreeObjectInst.class.php:48
-#: ../lib/classes/RangeTreeObjectFak.class.php:49
-msgid "Tel."
-msgstr "Phone"
-
-#: ../lib/classes/WikiFormat.php:119 ../lib/classes/WikiFormat.php:130
-msgid "Kommentar von"
-msgstr "Comment by"
-
-#: ../lib/classes/SemClass.class.php:670
-msgid "Lehre"
-msgstr "Teaching"
-
-#: ../lib/classes/SemClass.class.php:671
-msgid "Forschung"
-msgstr "Research"
-
-#: ../lib/classes/SemClass.class.php:672
-msgid "Organisation"
-msgstr "Organisation"
-
-#: ../lib/classes/SemClass.class.php:673
-#: ../lib/navigation/CommunityNavigation.php:24
-#: ../lib/navigation/StartNavigation.php:232
-msgid "Community"
-msgstr "Community"
-
-#: ../lib/classes/SemClass.class.php:674
-msgid "Arbeitsgruppen"
-msgstr "Working group"
-
-#: ../lib/classes/SemClass.class.php:675
-msgid "importierte Kurse"
-msgstr "imported courses"
-
-#: ../lib/classes/SemClass.class.php:676
-msgid "Hauptveranstaltungen"
-msgstr "Main courses"
-
-#: ../lib/classes/SemClass.class.php:678
-msgid "Hier finden Sie alle in Stud.IP registrierten Lehrveranstaltungen"
-msgstr "Here you will find all the courses registered in Stud.IP"
-
-#: ../lib/classes/SemClass.class.php:679
-msgid "Verwenden Sie diese Kategorie, um normale Lehrveranstaltungen anzulegen"
-msgstr "Use this category for setting up regular courses"
-
-#: ../lib/classes/SemClass.class.php:680
-msgid ""
-"Hier finden Sie virtuelle Veranstaltungen zum Thema Forschung an der "
-"Universität"
-msgstr ""
-"Here you will find virtual courses for the topic research at the university"
-
-#: ../lib/classes/SemClass.class.php:681
-msgid ""
-"In dieser Kategorie können Sie virtuelle Veranstaltungen für "
-"Forschungsprojekte anlegen."
-msgstr "In this category you can create virtual courses on research projects."
-
-#: ../lib/classes/SemClass.class.php:682
-msgid ""
-"Hier finden Sie virtuelle Veranstaltungen zu verschiedenen Gremien an der "
-"Universität"
-msgstr "Here you will find virtual courses for various university boards"
-
-#: ../lib/classes/SemClass.class.php:683
-msgid ""
-"Um virtuelle Veranstaltungen für Uni-Gremien anzulegen, verwenden Sie diese "
-"Kategorie"
-msgstr "Use this category for setting up virtual courses for university boards"
-
-#: ../lib/classes/SemClass.class.php:684
-msgid "Hier finden Sie virtuelle Veranstaltungen zu unterschiedlichen Themen"
-msgstr "Here you will find virtual courses on various topics"
-
-#: ../lib/classes/SemClass.class.php:685
-msgid ""
-"Wenn Sie Veranstaltungen als Diskussiongruppen zu unterschiedlichen Themen "
-"anlegen möchten, verwenden Sie diese Kategorie."
-msgstr "Use this category for setting up discussion groups on various topics."
-
-#: ../lib/classes/SemClass.class.php:686
-#, php-format
-msgid "Hier finden Sie verschiedene Arbeitsgruppen an der %s"
-msgstr "Here you will find the various working groups at %s"
-
-#: ../lib/classes/SemClass.class.php:687
-msgid ""
-"Verwenden Sie diese Kategorie, um unterschiedliche Arbeitsgruppen anzulegen."
-msgstr "Use this category for setting up various working groups."
-
-#: ../lib/classes/SemClass.class.php:688
-msgid ""
-"Veranstaltungen dieser Kategorie dienen als Gruppierungselement, um die "
-"Zusammengehörigkeit von Veranstaltungen anderer Kategorien abzubilden."
-msgstr ""
-"Courses of this category serve as grouping element to portray the "
-"affiliation of courses from other categories."
-
-#: ../lib/classes/Avatar.class.php:290
-#, php-format
-msgid ""
-"Die hochgeladene Bilddatei ist %s KB groß. Die maximale Dateigröße beträgt "
-"%s KB!"
-msgstr ""
-"The uploaded image file is size of %s KB. The maximum file size allowed is "
-"%s KB!"
-
-#: ../lib/classes/Avatar.class.php:297 ../app/controllers/admin/smileys.php:189
-msgid "Sie haben keine Datei zum Hochladen ausgewählt!"
-msgstr "You have not selected any file to be uploaded!"
-
-#: ../lib/classes/Avatar.class.php:306
-#, php-format
-msgid ""
-"Der Dateityp der Bilddatei ist falsch (%s). Es sind nur die Dateiendungen ."
-"gif, .png, .jpeg und .jpg erlaubt!"
-msgstr ""
-"Invalid file format of the image file (%s). The file formats .gif, png, ."
-"jpeg and .jpg are permitted, only!"
-
-#: ../lib/classes/Avatar.class.php:315 ../app/controllers/admin/banner.php:379
-#: ../app/controllers/admin/smileys.php:229
-msgid ""
-"Es ist ein Fehler beim Kopieren der Datei aufgetreten. Das Bild wurde nicht "
-"hochgeladen!"
-msgstr ""
-"An error has occurred while copying the file. The image file has not been "
-"uploaded!"
-
-#: ../lib/classes/Avatar.class.php:343
-msgid "Es ist ein Fehler beim Bearbeiten des Bildes aufgetreten."
-msgstr "An error has occurred while editing the picture."
-
-#: ../lib/classes/Avatar.class.php:343
-msgid "Fehlende GD-Lib"
-msgstr "Missing GD library"
-
-#: ../lib/classes/Avatar.class.php:419
-msgid "Der Typ des Bilds wird nicht unterstützt."
-msgstr "The file format of the image file is not supported."
-
-#: ../lib/classes/StudipSemTreeView.class.php:127
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:480
-msgid "Alle Unterelemente schliessen"
-msgstr "Close all sub-elements"
-
-#: ../lib/classes/StudipSemTreeView.class.php:146
-#, php-format
-msgid "Alle Veranstaltungen innerhalb dieses Bereiches in der %sÜbersicht%s"
-msgstr "%sOverview%s on all courses within this area"
-
-#: ../lib/classes/StudipSemTreeView.class.php:150
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:559
-msgid "Einträge auf dieser Ebene:"
-msgstr "Entries at this level:"
-
-#: ../lib/classes/StudipSemTreeView.class.php:158
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:567
-msgid "Nicht zugeordnete Veranstaltungen auf dieser Ebene:"
-msgstr "Non-allocated courses at this level:"
-
-#: ../lib/classes/StudipMemcachedCache.php:35
-msgid "Memcached"
-msgstr ""
-
-#: ../lib/classes/StudipKing.class.php:161
-#, php-format
-msgid "%d hochgeladene Dateien"
-msgstr "%d uploaded files"
-
-#: ../lib/classes/StudipKing.class.php:162
-#, php-format
-msgid "%d Forums-Beiträge"
-msgstr "%d forum postings"
-
-#: ../lib/classes/StudipKing.class.php:163
-#, php-format
-msgid "%d Wiki-Beiträge"
-msgstr "%d wiki pages"
-
-#: ../lib/classes/StudipKing.class.php:164
-#, php-format
-msgid "%d abgegebene Stimmen"
-msgstr "%d votes cast"
-
-#: ../lib/classes/StudipKing.class.php:165
-#, php-format
-msgid "%d bekommene Stimmen"
-msgstr "%d pulled in votes"
-
-#: ../lib/classes/StudipKing.class.php:166
-#, php-format
-msgid "%d eingestellte Ankündigungen"
-msgstr "%d announcements"
-
-#: ../lib/classes/Seminar.class.php:107
-#, php-format
-msgid "Fehler: Konnte das Seminar mit der ID %s nicht finden!"
-msgstr "Error: No seminar with ID %s found!"
-
-#: ../lib/classes/Seminar.class.php:507
-msgid "Das Startsemester wurde geändert."
-msgstr "Start semester changed."
-
-#: ../lib/classes/Seminar.class.php:508
-msgid ""
-"Beachten Sie, dass Termine, die nicht mit den Einstellungen der regelmäßigen "
-"Zeit übereinstimmen (z.B. auf Grund einer Verschiebung der regelmäßigen "
-"Zeit), teilweise gelöscht sein könnten!"
-msgstr ""
-"Note that dates which do not match the settings of the periodic course dates "
-"(e.g. due to change of the periodic course dates) may possibly be deleted!"
-
-#: ../lib/classes/Seminar.class.php:573
-msgid "Die Dauer wurde geändert."
-msgstr "Duration changed."
-
-#: ../lib/classes/Seminar.class.php:842
-msgid "Es sind Fehler/Probleme aufgetreten!"
-msgstr "Errors/problems occurred!"
-
-#: ../lib/classes/Seminar.class.php:856
-msgid "Ihre Änderungen wurden gespeichert!"
-msgstr "Your changes have been saved!"
-
-#: ../lib/classes/Seminar.class.php:998
-#, php-format
-msgid ""
-"Wenn Sie die regelmäßige Zeit auf %s ändern, verlieren Sie die Raumbuchungen "
-"für alle in der Zukunft liegenden Termine!"
-msgstr ""
-"If you change the time of the periodic course date to %s you will loose all "
-"room bookings for all dates which lie in the future!"
-
-#: ../lib/classes/Seminar.class.php:999
-msgid "Sind Sie sicher, dass Sie die regelmäßige Zeit ändern möchten?"
-msgstr "Are you sure to change the periodic course dates?"
-
-#: ../lib/classes/Seminar.class.php:1022
-msgid "Die Beschreibung des regelmäßigen Eintrags wurde geändert."
-msgstr "The description of the periodic course date has been changed."
-
-#: ../lib/classes/Seminar.class.php:1047
-msgid ""
-"Die Semesterwochenstunden für Lehrende des regelmäßigen Eintrags wurden "
-"geändert."
-msgstr ""
-"The semester periods per week for lecturers have been changed for the "
-"regular entry."
-
-#: ../lib/classes/Seminar.class.php:1059
-#, php-format
-msgid ""
-"Die regelmäßige Veranstaltungszeit wurde auf \"%s\" für alle in der Zukunft "
-"liegenden Termine geändert!"
-msgstr ""
-"The time of the periodic course date has been changed to \"%s\" for all "
-"future course dates!"
-
-#: ../lib/classes/Seminar.class.php:1066
-#, php-format
-msgid ""
-"Die regelmäßige Veranstaltungszeit wurde auf \"%s\" geändert, jedoch gab es "
-"keine Termine die davon betroffen waren."
-msgstr ""
-"The time of the periodic course date has been changed to \"%s\", however no "
-"course dates have been affected by this."
-
-#: ../lib/classes/Seminar.class.php:1095
-#, php-format
-msgid "Der Turnus für den Termin %s wurde geändert."
-msgstr "The cycle of course date %s has been changed."
-
-#: ../lib/classes/Seminar.class.php:1138
-msgid "Folgende Termine haben keine Raumbuchung:"
-msgstr "The following dates have no room allocation:"
-
-#: ../lib/classes/Seminar.class.php:1150
-msgid "Folgende Termine haben eine abgelehnte Raumanfrage"
-msgstr "The following dates have a rejected room booking"
-
-#: ../lib/classes/Seminar.class.php:1347
-#, php-format
-msgid "Die Startwoche für den Termin %s wurde geändert."
-msgstr "Start week for course date %s changed."
-
-#: ../lib/classes/Seminar.class.php:1531
-#, php-format
-msgid "%s Teilnehmende und Lehrende archiviert."
-msgstr "%s participants and lecturers added to archive."
-
-#: ../lib/classes/Seminar.class.php:1544
-#, php-format
-msgid "%s Zuordnungen zu Einrichtungen archiviert."
-msgstr "%s allocation to institutes archived."
-
-#: ../lib/classes/Seminar.class.php:1550
-#: ../app/controllers/institute/basicdata.php:406
-#, php-format
-msgid "%s Funktionen/Gruppen gelöscht."
-msgstr "%s functions / groups deleted."
-
-#: ../lib/classes/Seminar.class.php:1557
-#, php-format
-msgid "%s Zuordnungen zu Bereichen archiviert."
-msgstr "%s allocations to areas archived."
-
-#: ../lib/classes/Seminar.class.php:1562
-#, php-format
-msgid "%s Veranstaltungstermine archiviert."
-msgstr "%s course dates archived."
-
-#: ../lib/classes/Seminar.class.php:1576
-#, php-format
-msgid "Einträge in %s archiviert."
-msgstr "Entries in %s archived."
-
-#: ../lib/classes/Seminar.class.php:1587
-msgid "Dokumente und Ordner archiviert."
-msgstr "Documents and folders archived."
-
-#: ../lib/classes/Seminar.class.php:1597
-msgid "Freie Seite der Veranstaltung archiviert."
-msgstr "The free information page of this course has been archived."
-
-#: ../lib/classes/Seminar.class.php:1602
-#, php-format
-msgid "%s Ankündigungen gelöscht."
-msgstr "%s announcements deleted."
-
-#: ../lib/classes/Seminar.class.php:1615
-#, php-format
-msgid "%s Wiki-Seiten archiviert."
-msgstr "%s wiki pages archived."
-
-#: ../lib/classes/Seminar.class.php:1659
-#, php-format
-msgid "%s Verknüpfungen zu externen Systemen gelöscht."
-msgstr "%s links to external systems removed."
-
-#: ../lib/classes/Seminar.class.php:1851
-msgid ""
-"Ungültige Eingabe der Institute. Es muss mindestens ein Institut angegeben "
-"werden."
-msgstr "Invalid institute entries. At least one institute must be entered."
-
-#: ../lib/classes/Seminar.class.php:1867
-msgid "Admin und Root dürfen nicht Mitglied einer Veranstaltung sein."
-msgstr "Roots and administrators may not be entered in any course."
-
-#: ../lib/classes/Seminar.class.php:1884
-msgid "Einzutragender Nutzer stammt nicht einem beteiligten Institut an."
-msgstr "The user to be entered is not member of a participating institution."
-
-#: ../lib/classes/Seminar.class.php:1979 ../lib/classes/Seminar.class.php:2068
-#, php-format
-msgid ""
-"Die Veranstaltung muss wenigstens <b>einen/eine</b> VeranstaltungsleiterIn "
-"(%s) eingetragen haben!"
-msgstr ""
-"At least <b>one</b> course supervisor (%s) must be entered in the course!"
-
-#: ../lib/classes/Seminar.class.php:1981
-msgid "Tragen Sie zunächst einen anderen ein, um diesen herabzustufen."
-msgstr "You must enter a different one before demoting the present one."
-
-#: ../lib/classes/Seminar.class.php:2057
-#, php-format
-msgid "Nutzer %s wurde aus der Veranstaltung entfernt."
-msgstr "User %s removed from the course."
-
-#: ../lib/classes/Seminar.class.php:2071
-msgid "Tragen Sie zunächst einen anderen ein, um diesen zu löschen."
-msgstr "You must enter a different one before deleting the present one."
-
-#: ../lib/classes/Seminar.class.php:2129
-msgid ""
-"Dies ist eine Veranstaltungsgruppe. Sie können sich nur in deren "
-"Unterveranstaltungen eintragen."
-msgstr ""
-"This is a course group. You may only enrol yourself in one of its sub-"
-"courses."
-
-#: ../lib/classes/Seminar.class.php:2135
-msgid "Für die Veranstaltung ist keine Anmeldung erforderlich."
-msgstr "There is no enrolment necessary for the course."
-
-#: ../lib/classes/Seminar.class.php:2141
-msgid "Sie sind nicht in Stud.IP angemeldet."
-msgstr "You are not logged into Stud.IP."
-
-#: ../lib/classes/Seminar.class.php:2147
-msgid "Sie dürfen ALLES."
-msgstr "You may do EVERYTHING."
-
-#: ../lib/classes/Seminar.class.php:2153
-msgid "Sie sind Administrator_in der Veranstaltung."
-msgstr "You are admin."
-
-#: ../lib/classes/Seminar.class.php:2159
-msgid ""
-"Als Administrator_in können Sie sich nicht für eine Veranstaltung anmelden."
-msgstr "As an administrator you cannot enrol yourself into a course."
-
-#: ../lib/classes/Seminar.class.php:2166
-msgid "Sie sind für die Veranstaltung angemeldet."
-msgstr "You have been enroled in the course."
-
-#: ../lib/classes/Seminar.class.php:2173
-msgid "Sie wurden für diese Veranstaltung vorläufig akzeptiert."
-msgstr "You have been admitted preliminary access  to this course."
-
-#: ../lib/classes/Seminar.class.php:2179
-msgid "Sie stehen auf der Warteliste für diese Veranstaltung."
-msgstr "You have been added to the wait list of this course."
-
-#: ../lib/classes/Seminar.class.php:2185
-msgid ""
-"Sie haben nicht die erforderliche Berechtigung sich für eine Veranstaltung "
-"anzumelden."
-msgstr ""
-"You don't have the required permissions to enrol yourself into a course."
-
-#: ../lib/classes/Seminar.class.php:2198
-msgid ""
-"Sie sind nicht in einer zugelassenenen Nutzerdomäne, Sie können sich nicht "
-"eintragen!"
-msgstr ""
-"You cannot participate. Your account is associated with a user domain not "
-"suitable for this course!"
-
-#: ../lib/classes/Seminar.class.php:2206
-msgid "In diese Veranstaltung können Sie sich nicht eintragen!"
-msgstr "You cannot enrol to this course!"
-
-#: ../lib/classes/Seminar.class.php:2213
-msgid "Die Veranstaltung ist gesperrt, Sie können sich nicht eintragen!"
-msgstr "The course is locked, you cannot enrol yourself!"
-
-#: ../lib/classes/Seminar.class.php:2219
-msgid ""
-"Die Anmeldung zu dieser Veranstaltung folgt speziellen Regeln. Lesen Sie den "
-"Hinweistext."
-msgstr "Course under special admission. Please read the note.  "
-
-#: ../lib/classes/Seminar.class.php:2223
-#, php-format
-msgid ""
-"(Sie stehen auf der Anmeldeliste für die automatische Platzverteilung mit "
-"der Priorität %s.)"
-msgstr ""
-"(You are subscribed to the waiting list for automated assignment with "
-"priority %s.)"
-
-#: ../lib/classes/Seminar.class.php:2225
-msgid "(Sie stehen auf der Anmeldeliste für die automatische Platzverteilung.)"
-msgstr "(You are on a waiting list)"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:133
-msgid "Die Einträge im Bereich wurden alphabetisch sortiert."
-msgstr "The entries in this area have been sorted alphabetically."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:161
-msgid "Element wurde eine Position nach oben verschoben."
-msgstr "Element has been moved up one position. "
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:161
-msgid "Element wurde eine Position nach unten verschoben."
-msgstr "Element has been moved down one position. "
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:169
-#: ../templates/calendar/entries/empty_entry.php:10
-#: ../app/views/calendar/schedule/index.php:18
-msgid "Neuer Eintrag"
-msgstr "New entry"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:172
-msgid ""
-"Hier können Sie die Bezeichnung und die Kurzinformation zu diesem Bereich "
-"eingeben."
-msgstr ""
-"Here you can give the area a name and enter some brief information about it."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:185
-msgid ""
-"Hier können Sie die Kurzinformation zu diesem Bereich eingeben. Der Name "
-"kann nicht geändert werden, da es sich um eine Stud.IP-Einrichtung handelt."
-msgstr ""
-"Here you can enter a brief information about this area. The name cannot be "
-"changed because it is a Stud.IP institute."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:187
-msgid ""
-"Hier können Sie die Bezeichnung und die Kurzinformation zu diesem Bereich "
-"eingeben"
-msgstr ""
-"Here you can give the area a name and enter some brief information about it"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:206
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:362
-msgid "Dieser Bereich wurde neu eingefügt."
-msgstr "This area is new."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:213
-msgid "Bereich wurde geändert."
-msgstr "Area has been edited."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:230
-msgid ""
-"Sie beabsichtigen diesen Bereich inklusive aller Unterbereiche zu löschen. "
-msgstr "You are about to delete this area including all sub-areas."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:231
-#, php-format
-msgid "Es werden insgesamt %s Bereiche gelöscht!"
-msgstr "A total of %s areas will be deleted!"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:232
-msgid "Wollen Sie diese Bereiche wirklich löschen?"
-msgstr "Are you sure to delete these areas?"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:233
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1465
-#: ../app/views/admin/user/_delete.php:67
-msgid "Ja!"
-msgstr "Yes!"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:235
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:667
-#: ../app/views/resources/booking/_add_edit_form.php:558
-#: ../app/views/admin/domain/index.php:38
-#: ../app/views/admin/webservice_access/index.php:67
-#: ../app/views/admin/user/edit.php:274 ../app/views/admin/user/edit.php:290
-msgid "löschen"
-msgstr "delete"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:237
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1466
-#: ../app/views/admin/user/_delete.php:68
-msgid "Nein!"
-msgstr "No!"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:252
-#, php-format
-msgid ""
-"Der Bereich <b>%s</b> und alle Unterbereiche (insgesamt %s) wurden gelöscht. "
-msgstr "Area <b>%s</b> and all sub-areas (a total of %s) have been deleted."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:254
-msgid "Fehler, es konnten keine Bereiche gelöscht werden !"
-msgstr "Error, no area deleted !"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:257
-#, php-format
-msgid "<br>Es wurden %s Veranstaltungszuordnungen gelöscht. "
-msgstr "<br>%s course allocations have been removed."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:290
-msgid "Bereich wurde verschoben."
-msgstr "Area has been moved."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:341
-#, php-format
-msgid "%s Bereich(e) wurde(n) kopiert."
-msgstr "%s area(s) copied."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:342
-#, php-format
-msgid "%s Veranstaltungszuordnungen wurden kopiert"
-msgstr "%s course allocations copied"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:344
-msgid "Keine Kopie durchgeführt."
-msgstr "No copy made."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:383
-#, php-format
-msgid "Es wurde(n) %s Veranstaltung(en) der Merkliste hinzugefügt."
-msgstr "%s course(s) added to clipboard."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:403
-#, php-format
-msgid "%s Veranstaltungszuordnung(en) wurde(n) aufgehoben."
-msgstr "%s course allocation(s) removed."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:407
-#, php-format
-msgid ""
-"Für folgende Veranstaltungen wurde die Zuordnung nicht aufgehoben, da es die "
-"einzige Zuordnung ist: %s"
-msgstr ""
-"The assignment for the following courses has not been deleted since it is "
-"the only assignment: %s"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:491
-#, php-format
-msgid "Der Typ dieses Elementes verbietet eine Bearbeitung."
-msgstr "Type of this element does not allow editing."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:494
-#, php-format
-msgid ""
-"Dieses Element wurde zum Verschieben / Kopieren markiert. Bitte wählen Sie "
-"ein Einfügesymbol %s aus, um das Element zu verschieben / kopieren."
-msgstr ""
-"This element has been selected for moving / copying. Please select an "
-"insertion icon %s in order to move / copy the element."
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:504
-#: ../app/views/evaluation/_buttons.php:10
-#: ../app/views/admin/statusgroups/sortAlphabetic.php:14
-msgid "Sortieren"
-msgstr "Sort"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:506
-msgid "Sortiert die untergeordneten Elemente alphabetisch"
-msgstr "Sorts the subsidiary elements alphabetically"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:515
-msgid "Dieses Element löschen"
-msgstr "Delete this element"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:524
-msgid "Dieses Element in eine andere Ebene verschieben"
-msgstr "Move this element to a different level"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:527
-msgid "Dieses Element in eine andere Ebene kopieren"
-msgstr "Copy this element to another level"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:537
-msgid "Stud.IP-Fakultät einfügen"
-msgstr "Insert Stud.IP faculty"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:542
-#: ../app/views/course/studygroup/members.php:75
-#: ../app/views/course/members/add_dozent.php:28
-#: ../app/views/course/members/add_member.php:29
-#: ../app/views/course/members/add_member.php:85
-#: ../app/views/course/members/add_tutor.php:25
-#: ../app/views/course/members/import_autorlist.php:42
-#: ../app/views/course/members/csv_manual_assignment.php:38
-#: ../app/views/admin/autoinsert/manual.php:126
-msgid "Eintragen"
-msgstr "Enrol"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:663
-#: ../app/views/course/timesrooms/editStack.php:80
-#: ../app/views/course/timesrooms/editStack.php:98
-#: ../app/views/course/members/tutor_list.php:174
-#: ../app/views/course/members/user_list.php:165
-#: ../app/views/admin/cronjobs/schedules/index.php:146
-#: ../app/views/admin/cronjobs/schedules/index.php:147
-#: ../app/views/admin/cronjobs/logs/index.php:128
-#: ../app/views/admin/cronjobs/tasks/index.php:75
-#: ../app/views/contact/index.php:110
-msgid "Aktion auswählen"
-msgstr "Select action"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:664
-msgid "in Merkliste übernehmen"
-msgstr "add to clipboard"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:666
-msgid "löschen und in Merkliste übernehmen"
-msgstr "remove and add to clipboard"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:684
-msgid "Bereich editieren"
-msgstr "Edit area"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:695
-msgid "Typ des Elements"
-msgstr "Element type"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:715
-msgid "Infotext:"
-msgstr "Information text:"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:721
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:91
-#: ../app/views/admin/lockrules/_form.php:45
-#: ../app/views/admin/lockrules/_form.php:93
-msgid "Einstellungen übernehmen"
-msgstr "Accept settings"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:724
-msgid "Aktion abbrechen"
-msgstr "Cancel action"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:766
-msgid "An dieser Stelle einfügen"
-msgstr "Insert at this position"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:776
-msgid "Element nach oben"
-msgstr "Element to top"
-
-#: ../lib/classes/StudipSemTreeViewAdmin.class.php:781
-msgid "Element nach unten"
-msgstr "Element to bottom"
-
-#: ../lib/classes/Score.class.php:89 ../lib/classes/Score.class.php:90
-#: ../lib/classes/Score.class.php:91
-msgid "Unbeschriebenes Blatt"
-msgstr "Dark horse"
-
-#: ../lib/classes/Score.class.php:92
-msgid "Neuling"
-msgstr "Fledgling"
-
-#: ../lib/classes/Score.class.php:93
-msgid "Greenhorn"
-msgstr "Greenhorn"
-
-#: ../lib/classes/Score.class.php:94
-msgid "Anfänger"
-msgstr "Rookie"
-
-#: ../lib/classes/Score.class.php:94
-msgid "Anfängerin"
-msgstr "Rookie"
-
-#: ../lib/classes/Score.class.php:95
-msgid "Einsteiger"
-msgstr "Newcomer"
-
-#: ../lib/classes/Score.class.php:95
-msgid "Einsteigerin"
-msgstr "Newcomer"
-
-#: ../lib/classes/Score.class.php:96
-msgid "Beginner"
-msgstr "Beginner"
-
-#: ../lib/classes/Score.class.php:96
-msgid "Beginnerin"
-msgstr "Beginner "
-
-#: ../lib/classes/Score.class.php:97
-msgid "Novize"
-msgstr "Novice"
-
-#: ../lib/classes/Score.class.php:97
-msgid "Novizin"
-msgstr "Novice "
-
-#: ../lib/classes/Score.class.php:98
-msgid "Fortgeschrittener"
-msgstr "Advanced user"
-
-#: ../lib/classes/Score.class.php:98
-msgid "Fortgeschrittene"
-msgstr "Advanced user"
-
-#: ../lib/classes/Score.class.php:99
-msgid "Kenner"
-msgstr "Aficionado"
-
-#: ../lib/classes/Score.class.php:99
-msgid "Kennerin"
-msgstr "Aficionada"
-
-#: ../lib/classes/Score.class.php:100
-msgid "Könner"
-msgstr "Artist"
-
-#: ../lib/classes/Score.class.php:100
-msgid "Könnerin"
-msgstr "Artist"
-
-#: ../lib/classes/Score.class.php:101
-msgid "Profi"
-msgstr "Professional"
-
-#: ../lib/classes/Score.class.php:102
-msgid "Experte"
-msgstr "Expert"
-
-#: ../lib/classes/Score.class.php:102
-msgid "Expertin"
-msgstr "Expert"
-
-#: ../lib/classes/Score.class.php:103
-msgid "Meister"
-msgstr "Master"
-
-#: ../lib/classes/Score.class.php:103
-msgid "Meisterin"
-msgstr "Master"
-
-#: ../lib/classes/Score.class.php:104
-msgid "Großmeister"
-msgstr "Grand master"
-
-#: ../lib/classes/Score.class.php:104
-msgid "Großmeisterin"
-msgstr "Grand master"
-
-#: ../lib/classes/Score.class.php:105
-msgid "Idol"
-msgstr "Idol"
-
-#: ../lib/classes/Score.class.php:106
-msgid "Guru"
-msgstr "Guru"
-
-#: ../lib/classes/Score.class.php:106
-msgid "Hohepriesterin"
-msgstr "High priestess"
-
-#: ../lib/classes/Score.class.php:107
-msgid "Lichtgestalt"
-msgstr "Light bearer"
-
-#: ../lib/classes/Score.class.php:108
-msgid "Halbgott"
-msgstr "Demigod"
-
-#: ../lib/classes/Score.class.php:108
-msgid "Halbgöttin"
-msgstr "Demigod"
-
-#: ../lib/classes/Score.class.php:109
-msgid "Gott"
-msgstr "God"
-
-#: ../lib/classes/Score.class.php:109
-msgid "Göttin"
-msgstr "Goddess"
-
-#: ../lib/classes/Markup.class.php:504
-msgid "Ungültige interne Medienverknüpfung entfernt: "
-msgstr "Invalid medialink deleted."
-
-#: ../lib/classes/Markup.class.php:508
-msgid "Verbotene externe Medienverknüpfung entfernt: "
-msgstr "Forbidden medialink deleted."
-
-#: ../lib/classes/CronjobScheduler.class.php:284
-msgid "Eskalierte Ausführung"
-msgstr "Execution escalated"
-
-#: ../lib/classes/CronjobScheduler.class.php:287
-#, php-format
-msgid ""
-"Der Cronjob \"%s\" wurde deaktiviert, da seine Ausführungsdauer die maximale "
-"Ausführungszeit von %u Sekunden überschritten hat."
-msgstr ""
-"Cronjob \"%s\" has been deactivated since the maximum execution time of %u "
-"seconds has been exceeded."
-
-#: ../lib/classes/CronjobScheduler.class.php:315
-msgid "Die Klase für den Cronjob-Task konnte nicht gefunden werden"
-msgstr "The class for the cronjob task could not be found"
-
-#: ../lib/classes/CronjobScheduler.class.php:357
-msgid "Fehlerhafte Ausführung"
-msgstr "Processing error"
-
-#: ../lib/classes/CronjobScheduler.class.php:360
-#, php-format
-msgid ""
-"Der Cronjob \"%s\" wurde deaktiviert, da bei der Ausführung ein Fehler "
-"aufgetreten ist."
-msgstr ""
-"The cronjob \"%s\" was deactivated because an error occurred during "
-"execution it."
-
-#: ../lib/classes/CronjobScheduler.class.php:364
-msgid "Für weiterführende Informationen klicken Sie bitten den folgenden Link:"
-msgstr "For further information, please click on the following link:"
-
-#: ../lib/classes/auth_plugins/StudipAuthLdapReadAndBind.class.php:61
-#, php-format
-msgid "Anmeldung von %s fehlgeschlagen."
-msgstr "Registration of %s failed."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdapReadAndBind.class.php:65
-msgid "Durchsuchen des LDAP Baumes fehlgeschlagen."
-msgstr "Searching LDAP tree failed."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdapReadAndBind.class.php:69
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:109
-#, php-format
-msgid "%s wurde nicht unterhalb von %s gefunden."
-msgstr "%s was not found below %s."
-
-#: ../lib/classes/auth_plugins/StudipAuthAbstract.class.php:160
-msgid ""
-"Dieses Benutzerkonto ist abgelaufen.<br> Wenden Sie sich bitte an die "
-"Administration."
-msgstr "This user account has expired.<br>Please contact an administrator."
-
-#: ../lib/classes/auth_plugins/StudipAuthAbstract.class.php:163
-#: ../lib/phplib/Seminar_Auth.class.php:305
-msgid ""
-"Dieser Benutzer ist gesperrt! Wenden Sie sich bitte an die Administration."
-msgstr "This user is locked! Please contact the administration."
-
-#: ../lib/classes/auth_plugins/StudipAuthAbstract.class.php:168
-msgid "Der Login in Ihren Account ist aus diesem Netzwerk nicht erlaubt."
-msgstr "Login into your account is not allowed from this network."
-
-#: ../lib/classes/auth_plugins/StudipAuthAbstract.class.php:349
-msgid "Dies ist ein vorläufiger Benutzer."
-msgstr "This is a preliminary account."
-
-#: ../lib/classes/auth_plugins/StudipAuthAbstract.class.php:353
-#: ../lib/classes/auth_plugins/StudipAuthStandard.class.php:70
-#, php-format
-msgid "Dieser Benutzername wird bereits über %s authentifiziert!"
-msgstr "This username is already authenticated via %s!"
-
-#: ../lib/classes/auth_plugins/StudipAuthAbstract.class.php:503
-#: ../lib/classes/auth_plugins/StudipAuthAbstract.class.php:518
-#, php-format
-msgid "Methode %s nicht implementiert!"
-msgstr "Method %s not implemented!"
-
-#: ../lib/classes/auth_plugins/StudipAuthStandard.class.php:64
-msgid "Ungültige Benutzername/Passwort-Kombination!"
-msgstr "Invalid username/password combination!"
-
-#: ../lib/classes/auth_plugins/StudipAuthStandard.class.php:67
-msgid "Bitte achten Sie auf korrekte Gro&szlig;-Kleinschreibung beim Username!"
-msgstr "Please use correct upper and lower cases for the username!"
-
-#: ../lib/classes/auth_plugins/StudipAuthStandard.class.php:88
-msgid "Das Passwort ist falsch!"
-msgstr "Incorrect password! "
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:79
-msgid "Keine Verbindung zum LDAP Server möglich."
-msgstr "No connection to the LDAP server available."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:83
-msgid "Setzen der LDAP Protokolversion fehlgeschlagen."
-msgstr "Setting the LDAP protocol version failed."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:88
-msgid "\"Start TLS\" fehlgeschlagen."
-msgstr "\"Start TLS\" failed."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:101
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:213
-msgid "Anonymer Bind fehlgeschlagen."
-msgstr "Anonymous bind failed."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:105
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:217
-msgid "Anonymes Durchsuchen des LDAP Baumes fehlgeschlagen."
-msgstr "Anonymous search of LDAP tree failed."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:135
-msgid "Kein Passwort eingegeben."
-msgstr "No password entered."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:140
-msgid "Bitte überprüfen Sie ihre Zugangsdaten."
-msgstr "Please check your login credentials."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:142
-msgid "Anmeldung fehlgeschlagen."
-msgstr "Login failed."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:146
-msgid "Abholen der Benutzer Attribute fehlgeschlagen."
-msgstr "Transfer of user attributes was failed."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:206
-msgid ""
-"Kann den Benutzernamen nicht überprüfen, anonymous_bind ist ausgeschaltet!"
-msgstr "Cannot check username, anonymous bind is disabled!"
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:221
-msgid "Der Benutzername wurde nicht gefunden."
-msgstr "Username not found."
-
-#: ../lib/classes/auth_plugins/StudipAuthLdap.class.php:229
-msgid "<br>LDAP Fehler: "
-msgstr "<br>LDAP error: "
-
-#: ../lib/classes/ContentGroupMenu.php:47 ../templates/shared/action-menu.php:3
-msgid "Aktionsmenü"
-msgstr "Action menu"
-
-#: ../lib/classes/StudipLog.class.php:207
-#: ../lib/classes/StudipLog.class.php:239
-#: ../lib/classes/StudipLog.class.php:291
-msgid "gelöscht"
-msgstr "deleted"
-
-#: ../lib/classes/StudygroupModel.php:562
-#: ../app/controllers/course/studygroup.php:985
-#, php-format
-msgid "[Studiengruppe: %s...]"
-msgstr "[Study group: %s...]"
-
-#: ../lib/classes/StudygroupModel.php:564
-#: ../app/controllers/course/studygroup.php:987
-#, php-format
-msgid "[Studiengruppe: %s]"
-msgstr "[Study group: %s]"
-
-#: ../lib/classes/StudygroupModel.php:567
-msgid "Einladung akzeptiert"
-msgstr "Invitation accepted"
-
-#: ../lib/classes/StudygroupModel.php:569
-#, php-format
-msgid ""
-"%s hat die Einladung zur Studiengruppe %s akzeptiert. Klicken Sie auf den "
-"untenstehenden Link, um direkt zur Studiengruppe zu gelangen.\n"
-"\n"
-" [Direkt zur Studiengruppe]%s"
-msgstr ""
-"%s has accepted the invitation to the study group %s. The link below "
-"directly takes you to the study group.\n"
-"\n"
-" [Directly to the study group]%s"
-
-#: ../lib/classes/StudygroupModel.php:578
-msgid "Neuer Mitgliedsantrag"
-msgstr "New membership application"
-
-#: ../lib/classes/StudygroupModel.php:580
-#, php-format
-msgid ""
-"%s möchte der Studiengruppe %s beitreten. Klicken Sie auf den untenstehenden "
-"Link, um direkt zur Studiengruppe zu gelangen.\n"
-"\n"
-" [Direkt zur Studiengruppe]%s"
-msgstr ""
-"%s would like to join study group %s. The link below directly takes you to "
-"the study group.\n"
-"\n"
-" [Directly to the study group]%s"
-
-#: ../lib/classes/StudipSemSearchHelper.class.php:30
-msgid "alles"
-msgstr "all"
-
-#: ../lib/classes/AdminModules.class.php:45
-msgid "Wollen Sie wirklich das Forum deaktivieren?"
-msgstr "Are you sure to deactivate the forum?"
-
-#: ../lib/classes/AdminModules.class.php:47
-msgid "Das Forum kann jederzeit aktiviert werden."
-msgstr "The forum can be activated at any time."
-
-#: ../lib/classes/AdminModules.class.php:48
-msgid "Das Forum kann jederzeit deaktiviert werden."
-msgstr "The forum can be deactivated at any time."
-
-#: ../lib/classes/AdminModules.class.php:51
-msgid "Wollen Sie wirklich den Dateiordner deaktivieren?"
-msgstr "Are you sure to deactivate the file folder?"
-
-#: ../lib/classes/AdminModules.class.php:53
-msgid "Der Dateiordner kann jederzeit aktiviert werden."
-msgstr "The document folder can be activated at any time."
-
-#: ../lib/classes/AdminModules.class.php:54
-msgid "Der Dateiordner kann jederzeit deaktiviert werden."
-msgstr "The document folder can be deactivated at any time."
-
-#: ../lib/classes/AdminModules.class.php:56
-msgid "Die Ablaufplanverwaltung kann jederzeit aktiviert werden."
-msgstr "The schedule management can be activated at any time."
-
-#: ../lib/classes/AdminModules.class.php:57
-msgid "Die Ablaufplanverwaltung kann jederzeit deaktiviert werden."
-msgstr "The schedule management can be deactivated at any time."
-
-#: ../lib/classes/AdminModules.class.php:59
-msgid "Die Teilnehmendenverwaltung kann jederzeit aktiviert werden."
-msgstr "The participant management can be activated at any time."
-
-#: ../lib/classes/AdminModules.class.php:60
-msgid ""
-"Die Teilnehmendenverwaltung kann jederzeit deaktiviert werden. Beachten Sie, "
-"dass Sie dann keine normalen Teilnehmenden verwalten können!"
-msgstr ""
-"The participants management can be deactivated at any time. Please note that "
-"you cannot manage normal participants in that case!"
-
-#: ../lib/classes/AdminModules.class.php:62
-msgid "Die Personalliste kann jederzeit aktiviert werden."
-msgstr "The staff list can be activated at any time."
-
-#: ../lib/classes/AdminModules.class.php:63
-msgid "Die Personalliste kann jederzeit deaktiviert werden."
-msgstr "The staff list can be deactivated at any time."
-
-#: ../lib/classes/AdminModules.class.php:65
-msgid "Wollen Sie wirklich das Wiki deaktivieren?"
-msgstr "Are you sure to deactivate the wiki?"
-
-#: ../lib/classes/AdminModules.class.php:67
-msgid "Das Wiki-Web kann jederzeit aktiviert werden."
-msgstr "The Wiki web can be activated at any time."
-
-#: ../lib/classes/AdminModules.class.php:68
-msgid "Das Wiki-Web kann jederzeit deaktiviert werden."
-msgstr "The Wiki web can be deactivated at any time."
-
-#: ../lib/classes/AdminModules.class.php:70
-msgid "Die freie Informationsseite kann jederzeit aktiviert werden."
-msgstr "The free information page can be activated at any time."
-
-#: ../lib/classes/AdminModules.class.php:71
-msgid "Wollen Sie wirklich die freie Informationsseite deaktivieren?"
-msgstr "Are you sure to deactivate the free information page?"
-
-#: ../lib/classes/AdminModules.class.php:73
-msgid "Die freie Informationsseite kann jederzeit deaktiviert werden."
-msgstr "The free information page can be deactivated at any time."
-
-#: ../lib/classes/AdminModules.class.php:75
-msgid "Lernmodul-Schnittstelle"
-msgstr "Learning module interface"
-
-#: ../lib/classes/AdminModules.class.php:76
-msgid ""
-"Wollen Sie wirklich die Schnittstelle für die Integration von Content-"
-"Modulen deaktivieren?"
-msgstr ""
-"Do you really want to disable the interface for the integration of content "
-"modules?"
-
-#: ../lib/classes/AdminModules.class.php:77
-#, php-format
-msgid ""
-"Achtung: Beim Deaktivieren der Schnittstelle für die Integration von Content-"
-"Modulen werden <b>%s</b> Verknüpfungen mit Lernmodulen nicht mehr in Stud.IP "
-"verfügbar sein!"
-msgstr ""
-"Warning: When deactivating the interface for the integration of content "
-"modules, <b>%s</b> links with learning modules will no longer be available "
-"in Stud.IP!"
-
-#: ../lib/classes/AdminModules.class.php:78
-msgid ""
-"Die Schnittstelle für die Integration von Content-Modulen kann jederzeit "
-"aktiviert werden."
-msgstr ""
-"The interface to the integration of content modules can be activated at any "
-"time."
-
-#: ../lib/classes/AdminModules.class.php:79
-msgid ""
-"Die Schnittstelle für die Integration von Content-Modulen kann jederzeit "
-"deaktiviert werden."
-msgstr ""
-"The interface to the integration of content modules can be deactivated at "
-"any time."
-
-#: ../lib/classes/AdminModules.class.php:83
-msgid "Der Kalender kann jederzeit aktiviert werden."
-msgstr "The calendar can be deactivated at any time."
-
-#: ../lib/classes/AdminModules.class.php:84
-msgid "Wollen Sie wirklich den Kalender deaktivieren?"
-msgstr "Are you sure to deactivate the calendar?"
-
-#: ../lib/classes/AdminModules.class.php:86
-msgid "Der Kalender kann jederzeit deaktiviert werden."
-msgstr "The calendar can be activated at any time."
-
-#: ../lib/classes/AdminModules.class.php:89
-msgid "Die Veranstaltungsübersicht kann jederzeit aktiviert werden."
-msgstr "The course overview can be activated at any time."
-
-#: ../lib/classes/AdminModules.class.php:90
-msgid "Die Veranstaltungsübersicht kann jederzeit deaktiviert werden."
-msgstr "The course overview can be deactivated at any time."
-
-#: ../lib/classes/AdminModules.class.php:92
-#: ../lib/modules/CoreAdmin.class.php:17 ../lib/modules/CoreAdmin.class.php:18
-#: ../lib/modules/CoreAdmin.class.php:30 ../lib/modules/CoreAdmin.class.php:34
-#: ../lib/modules/CoursewareModule.class.php:54
-#: ../lib/modules/CoursewareModule.class.php:63
-#: ../lib/modules/CoreStudygroupAdmin.class.php:19
-#: ../lib/modules/CoreStudygroupAdmin.class.php:20
-#: ../lib/modules/CoreStudygroupAdmin.class.php:33
-#: ../lib/modules/CoreStudygroupAdmin.class.php:37
-#: ../lib/navigation/ConsultationNavigation.php:50
-#: ../lib/navigation/ContentsNavigation.php:40
-#: ../app/controllers/my_courses.php:996 ../app/controllers/admin/cache.php:37
-#: ../app/views/admin/sem_classes/details.php:211
-msgid "Verwaltung"
-msgstr "Administration"
-
-#: ../lib/classes/AdminModules.class.php:93
-msgid ""
-"Wenn die Verwaltungsseite aktiviert wird, kann die Veranstaltung wieder von "
-"Admin und Lehrenden bearbeitet werden."
-msgstr ""
-"If the management page is activated, the course can be modified by admins "
-"and lecturers."
-
-#: ../lib/classes/AdminModules.class.php:94
-msgid ""
-"Wenn Sie die Verwaltungsseite deaktivieren, können Sie sie eventuell nicht "
-"mehr aktivieren."
-msgstr ""
-"If you deactivate the administration page you may not be able to reactivate "
-"it."
-
-#: ../lib/classes/AdminModules.class.php:95
-msgid ""
-"Wenn die Verwaltungsseite deaktiviert wird, können Lehrende und Admin (Sie "
-"eventuell eingeschlossen) die Veranstaltung nicht mehr administrieren."
-msgstr ""
-"If the management page is deactivated, lecturers and admins (and eventually "
-"you yourself) are not able to manage the course anymore."
-
-#: ../lib/classes/PageLayout.php:119
-msgid "Hilfe zur Textformatierung"
-msgstr "Help about text formatting"
-
-#: ../lib/classes/FilesSearch/Cronjob.php:19
-msgid "Index der Dokumentensuche erneuern"
-msgstr "Renew the index of the document search"
-
-#: ../lib/classes/FilesSearch/Cronjob.php:27
-msgid "Aktualisiert den Index der Dokumentensuche."
-msgstr "Updates the index of the document search."
-
-#: ../lib/classes/FilesSearch/Cronjob.php:40
-msgid "Sollen Ausgaben erzeugt werden"
-msgstr "Should any output be displayed"
-
-#: ../lib/classes/FilesSearch/Query.php:146
-msgid "Ungültige Filter."
-msgstr "Invalid filter."
-
-#: ../lib/classes/FilesSearch/Query.php:164
-msgid "Die Seitennummer muss positiv sein."
-msgstr "The page number must be positive."
-
-#: ../lib/classes/FilesSearch/Query.php:183
-msgid "Der eingegebene Suchbegriff ist zu kurz"
-msgstr "The given search string is too short"
-
-#: ../lib/classes/FilesSearch/Query.php:201
-msgid "Es kann nicht weniger als 1 Ergebnis pro Seite angezeigt werden."
-msgstr "At least 1 result must be displayed per page."
-
-#: ../lib/classes/FilesSearch/Query.php:220
-msgid "Ungültige Sortierung."
-msgstr "Invalid ordering."
-
-#: ../lib/classes/FilesSearch/Filter.php:28
-#: ../app/controllers/admin/lockrules.php:76
-#: ../app/views/settings/deputies.php:14
-msgid "Nutzer"
-msgstr "User"
-
-#: ../lib/classes/StudipRedisCache.class.php:22
-msgid "Redis"
-msgstr ""
-
-#: ../lib/classes/UserManagement.class.php:222
-msgid "E-Mail-Adresse syntaktisch falsch!"
-msgstr "The syntax of this e-mail address is not correct!"
-
-#: ../lib/classes/UserManagement.class.php:229
-msgid "Mailserver ist nicht erreichbar!"
-msgstr "Mail server not accessible!"
-
-#: ../lib/classes/UserManagement.class.php:235
-#, php-format
-msgid "E-Mail an <em>%s</em> ist nicht zustellbar!"
-msgstr "E-mail to <em>%s</em> undeliverable!"
-
-#: ../lib/classes/UserManagement.class.php:254
-#: ../lib/classes/UserManagement.class.php:350
-msgid "Sie haben keine Berechtigung Accounts anzulegen."
-msgstr "You do not have the permission to create accounts."
-
-#: ../lib/classes/UserManagement.class.php:259
-msgid "Sie haben keine Berechtigung <em>>Admin-Accounts</em> anzulegen."
-msgstr ""
-"You do not have the permission to create an <em>administrator account</em>."
-
-#: ../lib/classes/UserManagement.class.php:264
-msgid "Sie haben keine Berechtigung <em>Root-Accounts</em> anzulegen."
-msgstr "You do not have the permission to create a <em>root account</em>."
-
-#: ../lib/classes/UserManagement.class.php:270
-msgid ""
-"Bitte geben Sie <em>Username</em>, <em>Status</em> und <em>E-Mail</em> an!"
-msgstr ""
-"Please enter <em>username</em>, <em>status</em> and <em>e-mail address</em>!"
-
-#: ../lib/classes/UserManagement.class.php:276
-#: ../lib/classes/UserManagement.class.php:374
-#: ../lib/classes/UserManagement.class.php:491
-msgid "Der gewählte Benutzername ist zu kurz oder enthält unzulässige Zeichen!"
-msgstr "The selected username is too short or contains invalid characters!"
-
-#: ../lib/classes/UserManagement.class.php:302
-#: ../lib/classes/UserManagement.class.php:382
-#, php-format
-msgid "BenutzerIn <em>%s</em> ist schon vorhanden!"
-msgstr "User <em>%s</em> already exists!"
-
-#: ../lib/classes/UserManagement.class.php:307
-#: ../lib/classes/UserManagement.class.php:387
-#, php-format
-msgid "BenutzerIn \"%s\" konnte nicht angelegt werden."
-msgstr "The user \"%s\" could not be created."
-
-#: ../lib/classes/UserManagement.class.php:311
-#, php-format
-msgid "BenutzerIn \"%s\" angelegt."
-msgstr "User \"%s\" created."
-
-#: ../lib/classes/UserManagement.class.php:317
-#: ../lib/classes/UserManagement.class.php:534
-#: ../app/controllers/admin/user.php:542 ../app/controllers/admin/user.php:843
-#: ../app/controllers/admin/user.php:1185
-#, php-format
-msgid ""
-"Das automatische Eintragen in die Veranstaltung <em>%s</em> wurde "
-"durchgeführt."
-msgstr "The automatic enrolment into the course <em>%s</em> has been executed."
-
-#: ../lib/classes/UserManagement.class.php:320
-#: ../lib/classes/UserManagement.class.php:537
-#: ../app/controllers/admin/user.php:545 ../app/controllers/admin/user.php:846
-#: ../app/controllers/admin/user.php:1188
-#, php-format
-msgid ""
-"Das automatische Austragen aus der Veranstaltung <em>%s</em> wurde "
-"durchgeführt."
-msgstr "Auto cleanup in course <em>%s</em> done."
-
-#: ../lib/classes/UserManagement.class.php:328
-msgid ""
-"Es wurde eine Mail mit Anweisungen zum Setzen des Passworts durch die/den "
-"Nutzer/in verschickt."
-msgstr ""
-
-#: ../lib/classes/UserManagement.class.php:354
-msgid "Es können keine vorläufigen Administrationsaccounts angelegt werden."
-msgstr "Preliminary accounts with status admin cannot be created."
-
-#: ../lib/classes/UserManagement.class.php:368
-msgid ""
-"Bitte geben Sie <em>Status</em>, <em>Vorname</em> und <em>Nachname</em> an!"
-msgstr "Please enter <em>status</em>, <em>name</em> and <em>family name</em>!"
-
-#: ../lib/classes/UserManagement.class.php:391
-#, php-format
-msgid "BenutzerIn \"%s\" (vorläufig) angelegt."
-msgstr "Preliminary account %s created. "
-
-#: ../lib/classes/UserManagement.class.php:411
-#: ../lib/classes/UserManagement.class.php:639
-msgid "Sie haben keine Berechtigung Accounts zu verändern."
-msgstr "You do not have the permission to edit accounts."
-
-#: ../lib/classes/UserManagement.class.php:416
-msgid "Sie haben keine Berechtigung, <em>Admin-Accounts</em> anzulegen."
-msgstr ""
-"You do not have the permission to create an <em>administrator account</em>."
-
-#: ../lib/classes/UserManagement.class.php:421
-msgid "Sie haben keine Berechtigung, <em>Root-Accounts</em> anzulegen."
-msgstr "You do not have the permission to create a <em>root account</em>."
-
-#: ../lib/classes/UserManagement.class.php:427
-msgid "Sie haben keine Berechtigung <em>Admin-Accounts</em> zu verändern."
-msgstr ""
-"You do not have the permission to edit an <em>administrator account</em>."
-
-#: ../lib/classes/UserManagement.class.php:432
-#: ../lib/classes/UserManagement.class.php:645
-msgid "Sie haben keine Berechtigung <em>Root-Accounts</em> zu verändern."
-msgstr "You do not have the permission to edit a <em>root account</em>."
-
-#: ../lib/classes/UserManagement.class.php:438
-#: ../lib/classes/UserManagement.class.php:650
-msgid "Sie haben keine Berechtigung diesen Admin-Account zu verändern."
-msgstr "You do not have the permission to edit this administrator account."
-
-#: ../lib/classes/UserManagement.class.php:466
-#, php-format
-msgid ""
-"Der Benutzer <em>%s</em> ist alleiniger Lehrperson in %s aktiven "
-"Veranstaltungen und kann daher nicht in einen anderen Status versetzt werden!"
-msgstr ""
-"The user <em>%s</em> is the sole lecturer in %s active courser and can "
-"therefore not get another status!"
-
-#: ../lib/classes/UserManagement.class.php:482
-#, php-format
-msgid ""
-"Der Benutzer <em>%s</em> ist Admin in %s Einrichtungen und kann daher nicht "
-"in einen anderen Status versetzt werden!"
-msgstr ""
-"User <em>%s</em> is administrator in %s institutes and therefore cannot be "
-"given a different status!"
-
-#: ../lib/classes/UserManagement.class.php:496
-#: ../app/controllers/settings/account.php:118
-msgid ""
-"Der Benutzername wird bereits von einem anderen Benutzer verwendet. Bitte "
-"wählen Sie einen anderen Benutzernamen!"
-msgstr ""
-"The username is already used by a different user. Please select a different "
-"username!"
-
-#: ../lib/classes/UserManagement.class.php:519
-#, php-format
-msgid "Das Feld <em>%s</em> können Sie nicht ändern!"
-msgstr "You cannot edit field <em>%s</em>!"
-
-#: ../lib/classes/UserManagement.class.php:525
-msgid "Es wurden keine Veränderungen der Grunddaten vorgenommen."
-msgstr "The basic date have not been changed."
-
-#: ../lib/classes/UserManagement.class.php:529
-#, php-format
-msgid "Benutzer \"%s\" verändert."
-msgstr "User \"%s\" changed."
-
-#: ../lib/classes/UserManagement.class.php:561
-#: ../lib/classes/UserManagement.class.php:921
-#, php-format
-msgid "%s Einträge aus Veranstaltungen gelöscht."
-msgstr "%s entries removed from courses."
-
-#: ../lib/classes/UserManagement.class.php:574
-#: ../lib/classes/UserManagement.class.php:1089
-#, php-format
-msgid "%s Einträge aus Wartelisten gelöscht."
-msgstr "%s entries removed from the waiting list."
-
-#: ../lib/classes/UserManagement.class.php:582
-#: ../lib/classes/UserManagement.class.php:911
-#, php-format
-msgid "%s Zuordnungen zu Studiengängen gelöscht."
-msgstr "%s allocations to courses of study removed."
-
-#: ../lib/classes/UserManagement.class.php:586
-#: ../lib/classes/UserManagement.class.php:1108
-#, php-format
-msgid "%s Einträge aus den Terminen gelöscht."
-msgstr "%s entries deleted from course dates."
-
-#: ../lib/classes/UserManagement.class.php:597
-#: ../lib/classes/UserManagement.class.php:607
-#: ../lib/classes/UserManagement.class.php:890
-#, php-format
-msgid "%s Einträge aus MitarbeiterInnenlisten gelöscht."
-msgstr "%s entries removed from staff list."
-
-#: ../lib/classes/UserManagement.class.php:685
-#, php-format
-msgid ""
-"[Stud.IP - %s] Es wurde ein Zugang für sie erstellt - Setzen sie ein Passwort"
-msgstr ""
-
-#: ../lib/classes/UserManagement.class.php:690
-#, php-format
-msgid ""
-"Dies ist eine Bestätigungsmail des Stud.IP-Systems\n"
-"(Studienbegleitender Internetsupport von Präsenzlehre)\n"
-"- %s -\n"
-"\n"
-"Es wurde für sie ein Zugang zum System erstellt, Ihr Nutzername lautet:\n"
-"\n"
-"%s\n"
-"\n"
-"Um den Zugang nutzen zu können, müssen sie ein Passwort setzen.\n"
-"Öffnen Sie dafür bitte folgenden Link\n"
-"\n"
-"%s\n"
-"\n"
-"in Ihrem Browser.\n"
-"\n"
-"Wahrscheinlich unterstützt Ihr E-Mail-Programm ein einfaches Anklicken des "
-"Links.\n"
-"Ansonsten müssen Sie Ihren Browser öffnen und den Link komplett in die "
-"Zeile\n"
-"\"Location\" oder \"URL\" kopieren.\n"
-"\n"
-msgstr ""
-
-#: ../lib/classes/UserManagement.class.php:714
-#: ../app/controllers/new_password.php:53
-#, php-format
-msgid "[Stud.IP - %s] Passwortänderung angefordert"
-msgstr ""
-
-#: ../lib/classes/UserManagement.class.php:719
-#, php-format
-msgid ""
-"Dies ist eine Informationsmail des Stud.IP-Systems\n"
-"(Studienbegleitender Internetsupport von Präsenzlehre)\n"
-"- %s -\n"
-"\n"
-"Sie haben einen Link angefordert\n"
-"um das Passwort zurückzusetzen.\n"
-"Dies ist aber für den mit dieser Mail \n"
-"verknüpften Account so nicht möglich.\n"
-"\n"
-"Wenden sie sich bitte stattdessen an\n"
-"%s"
-msgstr ""
-
-#: ../lib/classes/UserManagement.class.php:735
-#, php-format
-msgid "[Stud.IP - %s] Neues Passwort setzen"
-msgstr ""
-
-#: ../lib/classes/UserManagement.class.php:740
-#, php-format
-msgid ""
-"Dies ist eine Bestätigungsmail des Stud.IP-Systems\n"
-"(Studienbegleitender Internetsupport von Präsenzlehre)\n"
-"- %s -\n"
-"\n"
-"Sie haben um die Zurücksetzung Ihres Passwortes gebeten.\n"
-"\n"
-"Diese E-Mail wurde Ihnen zugesandt um sicherzustellen,\n"
-"dass die angegebene E-Mail-Adresse tatsächlich Ihnen gehört.\n"
-"\n"
-"Wenn Sie um die Zurücksetzung Ihres Passwortes gebeten haben,\n"
-"dann öffnen Sie bitte folgenden Link\n"
-"\n"
-"%s\n"
-"\n"
-"in Ihrem Browser. Auf der Seite können Sie ein neues Passwort setzen.\n"
-"\n"
-"Wahrscheinlich unterstützt Ihr E-Mail-Programm ein einfaches Anklicken des "
-"Links.\n"
-"Ansonsten müssen Sie Ihren Browser öffnen und den Link komplett in die "
-"Zeile\n"
-"\"Location\" oder \"URL\" kopieren.\n"
-"\n"
-"Falls Sie nicht diese Mail nicht angefordert haben\n"
-"oder überhaupt nicht wissen, wovon hier die Rede ist,\n"
-"dann hat jemand Ihre E-Mail-Adresse fälschlicherweise verwendet!\n"
-"Ignorieren Sie in diesem Fall diese E-Mail. Es werden dann keine\n"
-"Änderungen an Ihren Zugangsdaten vorgenommen.\n"
-"\n"
-msgstr ""
-
-#: ../lib/classes/UserManagement.class.php:785
-msgid "Sie haben keine Berechtigung Accounts zu löschen."
-msgstr "You do not have the permission to delete accounts."
-
-#: ../lib/classes/UserManagement.class.php:791
-msgid "Sie haben keine Berechtigung <em>Root-Accounts</em> zu löschen."
-msgstr "You do not have the permission to delete <em>root accounts</em>."
-
-#: ../lib/classes/UserManagement.class.php:795
-msgid "Sie haben keine Berechtigung diesen Admin-Account zu löschen."
-msgstr "You do not have the permission to delete this administrator account."
-
-#: ../lib/classes/UserManagement.class.php:829
-#, php-format
-msgid ""
-"<em>%s</em> ist Lehrkraft in %s aktiven Veranstaltungen und kann daher nicht "
-"gelöscht werden."
-msgstr ""
-"<em>%s</em> is lecturer in %s active courses and therefore cannot be deleted."
-
-#: ../lib/classes/UserManagement.class.php:895
-#, php-format
-msgid "%s Einträge aus Funktionen / Gruppen gelöscht."
-msgstr "%s entries from functions / groups removed."
-
-#: ../lib/classes/UserManagement.class.php:903
-#, php-format
-msgid "%s Einträge aus den Zugriffsberechtigungen für das Archiv gelöscht."
-msgstr "%s entries deleted from the access permissions of the archive."
-
-#: ../lib/classes/UserManagement.class.php:928
-#, php-format
-msgid "%u Terminzuordnungen gelöscht."
-msgstr "%u date assignments deleted."
-
-#: ../lib/classes/UserManagement.class.php:940
-#, php-format
-msgid "%s Einträge in den Vertretungseinstellungen gelöscht."
-msgstr "%s entries deleted from substitution settings."
-
-#: ../lib/classes/UserManagement.class.php:957
-#, php-format
-msgid "%s Dateien aus Veranstaltungen und Einrichtungen gelöscht."
-msgstr "%s files deleted from courses and institutes."
-
-#: ../lib/classes/UserManagement.class.php:983
-msgid "Persönlicher Dateibereich gelöscht."
-msgstr "Personal file area deleted."
-
-#: ../lib/classes/UserManagement.class.php:1004
-msgid "Benutzername anonymisiert."
-msgstr "Username anonymised."
-
-#: ../lib/classes/UserManagement.class.php:1019
-#: ../app/views/admission/rule/validate.php:3
-msgid "Fehler:"
-msgstr "Error:"
-
-#: ../lib/classes/UserManagement.class.php:1022
-#, php-format
-msgid "Benutzer \"%s\" gelöscht."
-msgstr "User \"%s\" deleted."
-
-#: ../lib/classes/UserManagement.class.php:1076
-#, php-format
-msgid "%s Blubber gelöscht."
-msgstr "%s Blubbers deleted."
-
-#: ../lib/classes/UserManagement.class.php:1095
-#, php-format
-msgid "%s Einträge aus den Ankündigungen gelöscht."
-msgstr "%s entries deleted from announcements."
-
-#: ../lib/classes/UserManagement.class.php:1098
-#, php-format
-msgid "%s Verweise auf Ankündigungen gelöscht."
-msgstr "%s links to announcements removed."
-
-#: ../lib/classes/UserManagement.class.php:1117
-#, php-format
-msgid "%s Verknüpfungen mit Gruppenterminkalendern gelöscht."
-msgstr "%s links with group calendars deleted."
-
-#: ../lib/classes/UserManagement.class.php:1129
-#, php-format
-msgid "%s Einträge aus Adressbüchern gelöscht."
-msgstr "%s entries removed from address books."
-
-#: ../lib/classes/UserManagement.class.php:1133
-#, php-format
-msgid "Adressbuch mit %d Einträgen gelöscht."
-msgstr "Address book with %d entries removed."
-
-#: ../lib/classes/UserManagement.class.php:1199
-#: ../app/controllers/avatar.php:122
-msgid "Bild gelöscht."
-msgstr "Picture deleted."
-
-#: ../lib/classes/UserManagement.class.php:1212
-#, php-format
-msgid "Der verknüpfte Nutzer %s wurde im System %s gelöscht."
-msgstr "The associated user %s has been deleted in system %s."
-
-#: ../lib/classes/UserManagement.class.php:1274
-msgid "Das Passwort wurde neu gesetzt."
-msgstr "The password has been reset."
-
-#: ../lib/classes/UserManagement.class.php:1279
-#, php-format
-msgid "[Stud.IP - %s] Passwortänderung"
-msgstr ""
-
-#: ../lib/classes/UserManagement.class.php:1282
-#, php-format
-msgid ""
-"Dies ist eine Informationsmail des Stud.IP-Systems\n"
-"(Studienbegleitender Internetsupport von Präsenzlehre)\n"
-"- %s -\n"
-"\n"
-"Ihr Passwort wurde soben von einem/einer Administrator/in geändert.\n"
-msgstr ""
-
-#: ../lib/classes/PluginAdministration.php:35
-msgid "Fehler beim Entpacken des Plugins (fehlende Schreibrechte?)."
-msgstr "Error while unpacking the plugin (missing write permissions?)."
-
-#: ../lib/classes/PluginAdministration.php:40
-msgid "Fehler beim Entpacken des Plugins."
-msgstr "Error while unpacking the plugin."
-
-#: ../lib/classes/PluginAdministration.php:66
-#: ../lib/classes/PluginAdministration.php:454
-msgid "Das Manifest des Plugins fehlt."
-msgstr "The plug-in manifest is missing."
-
-#: ../lib/classes/PluginAdministration.php:79
-#: ../lib/classes/PluginAdministration.php:466
-msgid "Das Plugin ist mit dieser Stud.IP-Version nicht kompatibel."
-msgstr "The plug-in is not compatible with this Stud.IP version."
-
-#: ../lib/classes/PluginAdministration.php:108
-#, php-format
-msgid "Der Ordner \"%s\" konnte nicht erstellt werden."
-msgstr "Unable to create folder \"%s\"."
-
-#: ../lib/classes/PluginAdministration.php:115
-#, php-format
-msgid "Der Ordner \"%s\" ist nicht schreibbar."
-msgstr "No write access to folder \"%s\"."
-
-#: ../lib/classes/PluginAdministration.php:130
-msgid "Das Plugin enthält keine gültige Plugin-Klasse."
-msgstr "This plug-in does not include a valid plug-in class."
-
-#: ../lib/classes/PluginAdministration.php:155
-msgid "Das Herunterladen des Plugins ist fehlgeschlagen."
-msgstr "Download of plug-in failed."
-
-#: ../lib/classes/PluginAdministration.php:175
-msgid "Das Plugin konnte nicht gefunden werden."
-msgstr "Plug-in not found."
-
-#: ../lib/classes/PluginAdministration.php:476
-msgid "Das Plugin ist bereits registriert."
-msgstr "The Plug-in is already registered."
-
-#: ../lib/classes/SemType.class.php:246
-msgid "Colloquium"
-msgstr "Colloquium"
-
-#: ../lib/classes/SemType.class.php:247 ../config/mvv_config.php:156
-#: ../config/mvv_config.php:157
-msgid "Kolloquium"
-msgstr "Colloquium"
-
-#: ../lib/classes/SemType.class.php:248
-msgid "Forschungsgruppe"
-msgstr "Research group"
-
-#: ../lib/classes/SemType.class.php:249
-msgid "sonstige"
-msgstr "miscellaneous"
-
-#: ../lib/classes/SemType.class.php:250
-msgid "Gremium"
-msgstr "Committee"
-
-#: ../lib/classes/SemType.class.php:251
-msgid "Projektgruppe"
-msgstr "Project group"
-
-#: ../lib/classes/SemType.class.php:252
-msgid "Kulturforum"
-msgstr "Culture forum"
-
-#: ../lib/classes/SemType.class.php:253
-msgid "Veranstaltungsboard"
-msgstr "Course board"
-
-#: ../lib/classes/DatabaseObject.class.php:141
-msgid "Die RangeID darf nicht leer sein."
-msgstr "The Range-ID may not be empty."
-
-#: ../lib/classes/StudipDbCache.class.php:18
-#: ../app/views/admin/install/install.php:4
-#: ../app/views/admin/install/install-basic.php:3
-msgid "Datenbank"
-msgstr "Database"
-
-#: ../lib/classes/calendar/CalendarScheduleModel.php:227
-msgid "Dies ist eine vorgemerkte Veranstaltung"
-msgstr "This is a marked course"
-
-#: ../lib/classes/calendar/CalendarScheduleModel.php:245
-msgid "Diesen Eintrag wieder einblenden"
-msgstr "Show again this entry"
-
-#: ../lib/classes/calendar/CalendarScheduleModel.php:257
-msgid "Diesen Eintrag ausblenden"
-msgstr "Hide this entry"
-
-#: ../lib/classes/calendar/CalendarScheduleModel.php:564
-msgid "zurück zur Wochenansicht"
-msgstr "back to week view"
-
-#: ../lib/classes/calendar/SingleCalendar.php:498
-#, php-format
-msgid "%s hat einen neuen Termin in Ihren Kalender eingetragen."
-msgstr "%s has inserted a new date into your calendar."
-
-#: ../lib/classes/calendar/SingleCalendar.php:499
-#, php-format
-msgid "Neuer Termin am %c"
-msgstr "New date on %c"
-
-#: ../lib/classes/calendar/SingleCalendar.php:502
-#, php-format
-msgid "%s hat einen Termin in Ihrem Kalender geändert."
-msgstr "%s has modified a date in your calendar."
-
-#: ../lib/classes/calendar/SingleCalendar.php:503
-#, php-format
-msgid "Termin am %c geändert"
-msgstr "Date on %c modified"
-
-#: ../lib/classes/calendar/SingleCalendar.php:506
-#: ../lib/classes/calendar/SingleCalendar.php:621 ../lib/archiv.inc.php:133
-#: ../templates/consultations/mail.php:3
-#: ../app/views/consultation/overview/ungrouped.php:21
-#: ../app/views/consultation/admin/ungrouped.php:35
-#: ../app/views/consultation/admin/ungrouped.php:150
-#: ../app/views/consultation/export/print.php:89
-#: ../app/views/shared/log_event/show.php:28
-#: ../app/views/course/dates/index.php:38
-#: ../app/views/course/dates/index.php:78 ../app/views/messages/overview.php:35
-#: ../app/views/event_log/show.php:90
-msgid "Zeit"
-msgstr "Time"
-
-#: ../lib/classes/calendar/SingleCalendar.php:508
-#: ../lib/classes/calendar/SingleCalendar.php:623
-#: ../app/controllers/calendar/calendar.php:358
-#: ../app/views/contents/courseware/create_project.php:15
-#: ../app/views/calendar/single/edit.php:91
-msgid "Zusammenfassung"
-msgstr "Summary"
-
-#: ../lib/classes/calendar/SingleCalendar.php:513
-#: ../lib/classes/calendar/SingleCalendar.php:628
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:106
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:145
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:25
-#: ../app/controllers/shared/contacts.php:834
-#: ../app/controllers/course/gradebook/students.php:84
-#: ../app/controllers/calendar/contentbox.php:161
-#: ../app/controllers/calendar/calendar.php:363
-#: ../app/views/oer/mymaterial/edit.php:103
-#: ../app/views/shared/contacts/range.php:26
-#: ../app/views/shared/contacts/add_ansprechpartner.php:121
-#: ../app/views/shared/contacts/details.php:32
-#: ../app/views/shared/contacts/add_ranges_to_contact.php:26
-#: ../app/views/shared/filter.php:59 ../app/views/shared/kategorie_filter.php:1
-#: ../app/views/materialien/files/range.php:32
-#: ../app/views/materialien/files/index.php:15
-#: ../app/views/global_search/settings.php:42
-#: ../app/views/files_dashboard/_search_active_filters.php:24
-#: ../app/views/admin/configuration/edit_configuration.php:43
-#: ../app/views/calendar/single/_event_data.php:30
-#: ../app/views/calendar/single/edit.php:103
-#: ../app/views/calendar/single/_tooltip.php:22
-#: ../app/views/calendar/single/_select_category.php:4
-#: ../app/views/studiengaenge/studiengaenge/index.php:17
-msgid "Kategorie"
-msgstr "Category"
-
-#: ../lib/classes/calendar/SingleCalendar.php:516
-#: ../lib/classes/calendar/SingleCalendar.php:631
-#: ../lib/cronjobs/check_admission.class.php:81
-#: ../app/controllers/admission/courseset.php:568
-#: ../app/controllers/resources/room_request.php:1869
-#: ../app/controllers/calendar/contentbox.php:162
-#: ../app/controllers/calendar/calendar.php:366
-#: ../app/views/course/members/awaiting_list.php:62
-#: ../app/views/admin/cronjobs/schedules/display.php:13
-#: ../app/views/admin/cronjobs/schedules/edit.php:39
-#: ../app/views/admin/banner/new.php:77
-#: ../app/views/admin/user/_priority_list.php:21
-#: ../app/views/calendar/single/_event_data.php:40
-#: ../app/views/calendar/single/edit.php:152
-#: ../app/views/calendar/single/_tooltip.php:32
-msgid "Priorität"
-msgstr "Priority"
-
-#: ../lib/classes/calendar/SingleCalendar.php:519
-#: ../lib/classes/calendar/SingleCalendar.php:634
-#: ../app/controllers/calendar/calendar.php:369
-#: ../app/views/admin/api/permissions.php:5
-#: ../app/views/calendar/single/_event_data.php:45
-#: ../app/views/calendar/single/edit.php:141
-#: ../app/views/calendar/single/_tooltip.php:37
-msgid "Zugriff"
-msgstr "Access"
-
-#: ../lib/classes/calendar/SingleCalendar.php:530
-#: ../app/controllers/calendar/calendar.php:378
-#: ../app/views/calendar/group/_attendees.php:58
-#: ../app/views/calendar/single/_attendees.php:22
-#: ../app/views/calendar/single/_tooltip.php:70
-msgid "Organisator"
-msgstr "Organiser"
-
-#: ../lib/classes/calendar/SingleCalendar.php:540
-#: ../app/controllers/calendar/calendar.php:386
-msgid "Hier kommen Sie direkt zum Termin in Ihrem Kalender:"
-msgstr "Here you can get directly to the date in your calendar:"
-
-#: ../lib/classes/calendar/SingleCalendar.php:617
-#, php-format
-msgid "Termin am %c gelöscht"
-msgstr "Date on %c deleted"
-
-#: ../lib/classes/calendar/SingleCalendar.php:618
-#, php-format
-msgid "%s hat folgenden Termin in Ihrem Kalender gelöscht:"
-msgstr "%s has deleted following date in your calendar:"
-
-#: ../lib/classes/MyRealmModel.php:140
-#, php-format
-msgid "%1$u Fragebogen, %2$u neuer"
-msgid_plural "%1$u Fragebögen, %2$u neue"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/classes/MyRealmModel.php:153
-#, php-format
-msgid "%u Fragebogen"
-msgid_plural "%u Fragebögen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/classes/StudipCoreFormat.php:475 ../lib/visual.inc.php:86
-#: ../app/views/localizations/show.php:23
-#, php-format
-msgid "%s hat geschrieben:"
-msgstr "%s wrote:"
-
-#: ../lib/classes/StudipMail.class.php:411
-msgid ""
-"Diese Nachricht ist im HTML-Format verfasst. Sie benötigen eine E-Mail-"
-"Anwendung, die das HTML-Format anzeigen kann."
-msgstr "This message is in HTML format requiring an HTML-ready e-mail-client."
-
-#: ../lib/classes/ConsultationMailer.php:44
-#: ../app/views/consultation/slot-bookings.php:19
-#: ../app/views/consultation/admin/ungrouped.php:212
-#: ../app/views/consultation/admin/index.php:125
-msgid "Kein Grund angegeben"
-msgstr "No reason given"
-
-#: ../lib/classes/ConsultationMailer.php:63
-#, php-format
-msgid "Termin von %s zugesagt"
-msgstr ""
-
-#: ../lib/classes/ConsultationMailer.php:79
-#, php-format
-msgid "Termin bei %s zugesagt"
-msgstr ""
-
-#: ../lib/classes/ConsultationMailer.php:97
-#, php-format
-msgid "Grund des Termins bei bearbeitet"
-msgstr ""
-
-#: ../lib/classes/ConsultationMailer.php:114
-#, php-format
-msgid "Termin von %s abgesagt"
-msgstr ""
-
-#: ../lib/classes/ConsultationMailer.php:131
-#, php-format
-msgid "Termin bei %s abgesagt"
-msgstr ""
-
-#: ../lib/classes/Visibility.php:216
-msgid "Private Daten"
-msgstr "Personal data"
-
-#: ../lib/classes/Visibility.php:217
-msgid "Studien-/Einrichtungsdaten"
-msgstr "Data of Study/Institute"
-
-#: ../lib/classes/Visibility.php:218 ../app/views/settings/details.php:79
-msgid "Zusätzliche Datenfelder"
-msgstr "Additional data fields"
-
-#: ../lib/classes/Visibility.php:219
-msgid "Eigene Kategorien"
-msgstr "Own categories"
-
-#: ../lib/classes/sidebar/ExportWidget.php:8
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:298
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:312
-#: ../lib/evaluation/evaluation_show.lib.php:403
-#: ../lib/export/export_linking_func.inc.php:58
-#: ../lib/export/export_linking_func.inc.php:103
-#: ../lib/export/export_linking_func.inc.php:221
-#: ../lib/navigation/ToolsNavigation.php:81
-#: ../lib/navigation/ResourceNavigation.php:222
-#: ../lib/navigation/StartNavigation.php:292
-#: ../app/controllers/admission/restricted_courses.php:35
-#: ../app/views/room_management/overview/index.php:38
-msgid "Export"
-msgstr "Export"
-
-#: ../lib/classes/sidebar/ViewsWidget.php:8
-#: ../app/controllers/course/courseware.php:85
-#: ../app/controllers/course/plus.php:221
-#: ../app/controllers/contents/courseware.php:87
-#: ../app/controllers/profilemodules.php:142
-msgid "Ansichten"
-msgstr "Views"
-
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:26
-#: ../app/views/calendar/single/_select_category.php:6
-msgid "Alle Kategorien"
-msgstr "All categories"
-
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:41
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:46
-msgid "Alle Raumtypen"
-msgstr "All room types"
-
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:54
-msgid "Alle Standorte und Gebäude"
-msgstr "All locations and buildings"
-
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:97
-#: ../app/controllers/resources/export.php:296
-#: ../app/views/resources/admin/separable_rooms.php:40
-#: ../app/views/resources/admin/separable_rooms.php:118
-#: ../app/views/resources/room_planning/overbooked_rooms.php:5
-#: ../app/views/resources/_common/_room_thead.php:3
-#: ../app/views/course/room_requests/request_start.php:19
-msgid "Raumname"
-msgstr "Room name"
-
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:116
-#: ../app/views/resources/room/_add_edit_form.php:36
-#: ../app/views/room_management/overview/rooms.php:8
-msgid "Raumtyp"
-msgstr "Room type"
-
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:126
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:141
-msgid "Standort / Gebäude"
-msgstr "Location / Building"
-
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:164
-msgid "Frei in einem Zeitbereich"
-msgstr "Available in a time range"
-
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:192
-#: ../app/controllers/resources/room_request.php:1859
-#: ../app/controllers/course/dates.php:445
-#: ../app/views/resources/room/_add_edit_form.php:40
-#: ../app/views/resources/room_group/permissions.php:7
-#: ../app/views/resources/room_planning/overbooked_rooms.php:6
-#: ../app/views/resources/_common/_room_thead.php:4
-#: ../app/views/room_management/overview/rooms.php:6
-msgid "Sitzplätze"
-msgstr "Seats"
-
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:386
-#, php-format
-msgid ""
-"Für die Eigenschaft %1$s wurde ein ungültiger Bereich angegeben (von %2$s "
-"bis %3$s)!"
-msgstr ""
-"An invalid range (from %2$s to %3$s) has been specified for the property "
-"%1$s!"
-
-#: ../lib/classes/sidebar/RoomSearchWidget.class.php:598
-msgid "Suchkriterien für Räume"
-msgstr "Search criteria for rooms"
-
-#: ../lib/classes/sidebar/RoomClipboardWidget.class.php:22
-msgid "Gruppenbelegungsplan anzeigen"
-msgstr "Display group booking plan"
-
-#: ../lib/classes/sidebar/RoomClipboardWidget.class.php:32
-msgid "Raumgruppe buchen"
-msgstr "Book room group"
-
-#: ../lib/classes/sidebar/RoomClipboardWidget.class.php:42
-msgid "Berechtigungen für die gesamte Raumgruppe setzen"
-msgstr "Set permissions for the entire room group"
-
-#: ../lib/classes/sidebar/InstituteSelectWidget.class.php:78
-#: ../app/controllers/admin/courses.php:1344
-msgid "Alle meine Einrichtungen"
-msgstr "My institutions"
-
-#: ../lib/classes/sidebar/InstituteSelectWidget.class.php:104
-#, php-format
-msgid "%s + Institute"
-msgstr "%s + Institutes"
-
-#: ../lib/classes/sidebar/ResourceTreeWidget.class.php:75
-#: ../lib/classes/sidebar/RoomSearchTreeWidget.class.php:37
-msgid "Ressourcenbaum"
-msgstr "Resource tree"
-
-#: ../lib/classes/sidebar/NavigationWidget.php:8
-msgid "Navigation"
-msgstr "Navigation"
-
-#: ../lib/classes/sidebar/LinkCloudWidget.php:16
-msgid "Cloud"
-msgstr "Cloud"
-
-#: ../lib/classes/sidebar/ShareWidget.php:19
-msgid "Teilen"
-msgstr "Share"
-
-#: ../lib/classes/sidebar/SearchWidget.php:171
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:297
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:311
-#: ../templates/evaluation/config.php:114
-#: ../templates/sembrowse/quick-search.php:62
-#: ../templates/sembrowse/quick-search.php:64
-#: ../templates/sembrowse/extended-search.php:65
-#: ../templates/sembrowse/extended-search.php:67
-#: ../templates/sidebar/room-search-widget.php:102
-#: ../app/views/search/archive/index.php:52 ../app/views/shared/filter.php:5
-#: ../app/views/settings/messaging.php:120
-#: ../app/views/files_dashboard/_input-group-search.php:17
-#: ../app/views/admin/role/assign_role.php:38
-#: ../app/views/admin/overlapping/selection.php:67
-#: ../app/views/admin/cronjobs/schedules/index.php:50
-#: ../app/views/admin/cronjobs/logs/index.php:55
-#: ../app/views/admin/user/index.php:208
-#: ../app/views/admin/plugin/index.php:195
-msgid "Zurücksetzen"
-msgstr "Reset"
-
-#: ../lib/classes/sidebar/SemesterSelectorWidget.php:37
-#: ../app/controllers/my_courses.php:871
-#: ../app/controllers/files_dashboard/sidebar.php:133
-#: ../app/views/resources/room_planning/semester_plan.php:15
-#: ../app/views/course/timesrooms/_select_semester_range.php:4
-#: ../app/views/calendar/single/_semester_filter.php:15
-msgid "Semester auswählen"
-msgstr "Select semester"
-
-#: ../lib/classes/sidebar/SemesterSelectorWidget.php:82
-#: ../app/controllers/search/globalsearch.php:124
-#: ../app/controllers/course/timesrooms.php:82
-#: ../app/controllers/course/timesrooms.php:1067
-#: ../app/controllers/my_courses.php:853
-#: ../app/controllers/files_dashboard/sidebar.php:130
-#: ../app/views/shared/filter.php:21
-#: ../app/views/calendar/single/_semester_filter.php:11
-msgid "Alle Semester"
-msgstr "All semesters"
-
-#: ../lib/classes/sidebar/ClipboardWidget.class.php:68
-msgid "Merkzettel"
-msgstr "Notepad"
-
-#: ../lib/classes/sidebar/ClipboardWidget.class.php:70
-msgid "Hauptbereich aktualisieren"
-msgstr "Update main area"
-
-#: ../lib/classes/searchtypes/MyCoursesSearch.class.php:59
-#: ../lib/classes/searchtypes/StandardSearch.class.php:76
-#: ../lib/admissionrules/coursememberadmission/templates/configure.php:37
-#: ../app/controllers/course/topics.php:185
-#: ../app/controllers/course/topics.php:204
-#: ../app/controllers/course/topics.php:221
-#: ../app/controllers/admin/configuration.php:454
-#: ../app/views/search/archive/index.php:13
-msgid "Veranstaltung suchen"
-msgstr "Search for courses"
-
-#: ../lib/classes/searchtypes/StandardSearch.class.php:73
-#: ../app/controllers/messages.php:548
-#: ../app/controllers/shared/contacts.php:402
-#: ../app/controllers/course/studygroup.php:556
-#: ../app/controllers/course/studygroup.php:758
-#: ../app/controllers/admin/role.php:491
-#: ../app/controllers/institute/members.php:597
-#: ../app/controllers/calendar/group.php:119
-msgid "Nutzer suchen"
-msgstr "User search"
-
-#: ../lib/classes/searchtypes/StandardSearch.class.php:78
-msgid "Arbeitsgruppe suchen"
-msgstr "Search for working group"
-
-#: ../lib/classes/searchtypes/StandardSearch.class.php:80
-#: ../app/controllers/module/module.php:347
-#: ../app/controllers/module/module.php:362 ../app/controllers/file.php:783
-msgid "Einrichtung suchen"
-msgstr "Search for institutes"
-
-#: ../lib/classes/searchtypes/RangeSearch.class.php:46
-msgid "Person, Veranstaltung oder Einrichtung suchen"
-msgstr "Search for person, course or institute"
-
-#: ../lib/classes/searchtypes/InstituteSearch.php:21
-#: ../app/controllers/admin/configuration.php:462
-#: ../app/views/my_institutes/index.php:105
-msgid "Einrichtungen suchen"
-msgstr "Search institutes"
-
-#: ../lib/classes/searchtypes/ResourceSearch.class.php:92
-msgid "Es wurde keine gültige Berechtigungsstufe übergeben!"
-msgstr "No valid permission level has been provided!"
-
-#: ../lib/classes/searchtypes/ResourceSearch.class.php:104
-#, php-format
-msgid "Die Berechtigungsstufe %s ist ungültig!"
-msgstr "The permission level %s is invalid!"
-
-#: ../lib/classes/searchtypes/ResourceSearch.class.php:219
-msgid "Ressourcensuche"
-msgstr "Resource search"
-
-#: ../lib/classes/searchtypes/SearchType.class.php:84
-msgid "Die Suchklasse, die Sie verwenden, enthält keine Methode getResults."
-msgstr "The search class to be applied does not contain any Method getResults."
-
-#: ../lib/classes/searchtypes/SeminarSearch.class.php:26
-#: ../app/views/questionnaire/assign.php:6
-msgid "Veranstaltungen suchen"
-msgstr "Search for courses"
-
-#: ../lib/classes/searchtypes/RoomSearch.class.php:40
-#: ../app/controllers/resources/search.php:31
-#: ../app/controllers/room_management/overview.php:361
-#: ../app/views/resources/room_request/resolve.php:157
-msgid "Raumsuche"
-msgstr "Room search"
-
-#: ../lib/classes/LockRules.class.php:164 ../lib/modules/CoreAdmin.class.php:38
-#: ../lib/navigation/AdminNavigation.php:74
-#: ../lib/navigation/ProfileNavigation.php:64
-#: ../app/controllers/admin/courses.php:960
-#: ../app/controllers/admin/courses.php:961
-#: ../app/views/admission/courseset/configure.php:26
-#: ../app/views/oer/mymaterial/edit.php:10
-#: ../app/views/resources/room/_add_edit_form.php:10
-#: ../app/views/resources/category/_add_edit_form.php:15
-#: ../app/views/resources/building/_add_edit_form.php:10
-#: ../app/views/resources/location/_add_edit_form.php:9
-#: ../app/views/resources/resource/_add_edit_form.php:14
-#: ../app/views/news/edit_news.php:39
-#: ../app/views/fachabschluss/faecher/fach.php:9
-#: ../app/views/fachabschluss/kategorien/kategorie.php:13
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:6
-#: ../app/views/module/module/lvgruppe.php:10
-#: ../app/views/course/overview/index.php:3
-#: ../app/views/course/studygroup/details.php:3
-#: ../app/views/course/wizard/steps/basicdata/index.php:2
-#: ../app/views/course/wizard/steps/basicdata/index_studygroup.php:2
-#: ../app/views/admin/content_terms_of_use/edit.php:4
-#: ../app/views/tour/admin_details.php:7
-#: ../app/views/institute/overview/index.php:3
-#: ../app/views/studiengaenge/versionen/abschnitt.php:7
-#: ../app/views/studiengaenge/versionen/modul_zuordnung.php:6
-#: ../app/views/studiengaenge/stgteilbezeichnungen/stgteilbezeichnung.php:8
-msgid "Grunddaten"
-msgstr "Basic details"
-
-#: ../lib/classes/LockRules.class.php:165
-msgid "Personen und Einordnung"
-msgstr "Users and classification"
-
-#: ../lib/classes/LockRules.class.php:166
-msgid "weitere Daten"
-msgstr "further details"
-
-#: ../lib/classes/LockRules.class.php:167
-#: ../lib/classes/LockRules.class.php:193 ../lib/modules/CoreAdmin.class.php:61
-#: ../app/controllers/admin/courses.php:972
-#: ../app/controllers/admin/courses.php:973
-msgid "Zeiten/Räume"
-msgstr "Times/rooms"
-
-#: ../lib/classes/LockRules.class.php:168 ../lib/modules/CoreAdmin.class.php:73
-#: ../app/controllers/admin/courses.php:1010
-msgid "Zugangsberechtigungen"
-msgstr "Access permissions"
-
-#: ../lib/classes/LockRules.class.php:169
-msgid "spezielle Aktionen"
-msgstr "special actions"
-
-#: ../lib/classes/LockRules.class.php:180
-msgid "Teilnehmendenzahl"
-msgstr "Number of participants"
-
-#: ../lib/classes/LockRules.class.php:182
-#: ../lib/classes/DataFieldEntry.class.php:572 ../config/config.inc.php:86
-#: ../config/config_develop.inc.php:90
-msgid "Tutor/-innen"
-msgstr "Tutors"
-
-#: ../lib/classes/LockRules.class.php:183
-#: ../app/views/course/wizard/steps/basicdata/index.php:57
-#: ../app/views/admin/overlapping/admin_info.php:10
-msgid "Heimateinrichtung"
-msgstr "Home institute"
-
-#: ../lib/classes/LockRules.class.php:185
-msgid "Modulzuordnung"
-msgstr "Module assignment"
-
-#: ../lib/classes/LockRules.class.php:186
-msgid "Personen hinzufügen/löschen"
-msgstr "Add/delete persons"
-
-#: ../lib/classes/LockRules.class.php:187
-#: ../lib/classes/LockRules.class.php:223
-msgid "Gruppen hinzufügen/löschen"
-msgstr "Enter/remove groups"
-
-#: ../lib/classes/LockRules.class.php:189
-msgid "Beschreibung des Teilnehmendenkreises"
-msgstr "Description of the participants"
-
-#: ../lib/classes/LockRules.class.php:190
-#: ../app/views/search/module/show.php:28
-#: ../app/views/search/module/show.php:112
-#: ../app/views/shared/modul/overview.php:39
-#: ../app/views/shared/modul/overview.php:117
-#: ../app/views/shared/modul/_modul.php:127
-msgid "Teilnahmevoraussetzungen"
-msgstr "Prerequisites"
-
-#: ../lib/classes/LockRules.class.php:194
-#: ../app/controllers/course/timesrooms.php:600
-msgid "Termine ausfallen lassen"
-msgstr "Cancel dates"
-
-#: ../lib/classes/LockRules.class.php:195
-msgid "Erweiterte Termindaten im Ablaufplan ändern"
-msgstr "Change extended date data in schedule"
-
-#: ../lib/classes/LockRules.class.php:196
-msgid "Zeit/Datum der Platzverteilung/Kontingentierung"
-msgstr "Date/Time of admission"
-
-#: ../lib/classes/LockRules.class.php:197
-msgid "Aktivieren/Deaktivieren der Warteliste"
-msgstr "Activate/deactivate waiting list"
-
-#: ../lib/classes/LockRules.class.php:198
-msgid "Verbindlichkeit der Anmeldung"
-msgstr "Binding of the registration"
-
-#: ../lib/classes/LockRules.class.php:199
-msgid "Typ des Anmeldeverfahrens"
-msgstr "Type of registration procedure"
-
-#: ../lib/classes/LockRules.class.php:200
-msgid "zugelassenene Studiengänge"
-msgstr "admissible courses of study"
-
-#: ../lib/classes/LockRules.class.php:201
-msgid "Vorläufigkeit der Anmeldungen"
-msgstr "Provisionality of enrolments"
-
-#: ../lib/classes/LockRules.class.php:202
-msgid "Hinweistext bei Anmeldungen"
-msgstr "Reference text upon enrolment"
-
-#: ../lib/classes/LockRules.class.php:203
-msgid "Startzeitpunkt der Anmeldemöglichkeit"
-msgstr "Starting date of registration period"
-
-#: ../lib/classes/LockRules.class.php:204
-msgid "Endzeitpunkt der Anmeldemöglichkeit"
-msgstr "Final date of registration period"
-
-#: ../lib/classes/LockRules.class.php:205
-#: ../lib/elearning/ContentModuleView.class.php:117
-msgid "Lesezugriff"
-msgstr "Read access"
-
-#: ../lib/classes/LockRules.class.php:206
-#: ../lib/elearning/ContentModuleView.class.php:115
-msgid "Schreibzugriff"
-msgstr "Write access"
-
-#: ../lib/classes/LockRules.class.php:207
-#: ../lib/classes/LockRules.class.php:227 ../templates/register/form.php:43
-#: ../app/views/admin/install/root.php:15
-#: ../app/views/my_ilias_accounts/new_account.php:8
-msgid "Passwort"
-msgstr "Password"
-
-#: ../lib/classes/LockRules.class.php:208
-msgid "Nutzerdomänen zuordnen"
-msgstr "Allocate user domains"
-
-#: ../lib/classes/LockRules.class.php:209
-#: ../app/controllers/course/management.php:67
-#: ../app/controllers/admin/courses.php:1003
-msgid "Veranstaltung kopieren"
-msgstr "Copy the course"
-
-#: ../lib/classes/LockRules.class.php:210
-msgid "Veranstaltung archivieren"
-msgstr "Archive the course"
-
-#: ../lib/classes/LockRules.class.php:211
-msgid "Veranstaltung sichtbar/unsichtbar schalten"
-msgstr "Enable/disable visibility of the course"
-
-#: ../lib/classes/LockRules.class.php:214
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1754
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1760
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2073
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2080
-#: ../config/config.inc.php:174 ../config/config_develop.inc.php:199
-#: ../app/controllers/resources/room_request.php:1852
-#: ../app/views/search/archive/index.php:131
-#: ../app/views/institute/overview/index.php:38
-#: ../app/views/institute/basicdata/index.php:14
-msgid "Fakultät"
-msgstr "Faculty"
-
-#: ../lib/classes/LockRules.class.php:215
-#: ../app/views/module/module/modulteil.php:26
-#: ../app/views/module/module/modul.php:21
-#: ../app/views/institute/basicdata/index.php:49
-msgid "Bezeichnung"
-msgstr "Notation"
-
-#: ../lib/classes/LockRules.class.php:218
-#: ../app/views/institute/basicdata/index.php:73
-msgid "Telefonnummer"
-msgstr "Telephone"
-
-#: ../lib/classes/LockRules.class.php:219
-#: ../app/views/institute/basicdata/index.php:79
-msgid "Faxnummer"
-msgstr "Fax number"
-
-#: ../lib/classes/LockRules.class.php:220 ../templates/privacy.php:40
-#: ../app/controllers/start.php:110 ../app/views/admin/install/root.php:37
-#: ../app/views/institute/basicdata/index.php:85
-msgid "E-Mail-Adresse"
-msgstr "E-mail address"
-
-#: ../lib/classes/LockRules.class.php:222
-msgid "Mitarbeiter hinzufügen/löschen"
-msgstr "Enter/remove staff member"
-
-#: ../lib/classes/LockRules.class.php:225
-msgid "Vor- und Nachname"
-msgstr "First name and last name"
-
-#: ../lib/classes/LockRules.class.php:226
-#: ../lib/cronjobs/check_admission.class.php:81
-#: ../app/controllers/admission/courseset.php:480
-#: ../app/controllers/admission/courseset.php:568
-#: ../app/views/course/members/add_member.php:63
-#: ../app/views/course/members/import_autorlist.php:25
-#: ../app/views/settings/account/index.php:30
-#: ../app/views/admin/install/root.php:9
-msgid "Nutzername"
-msgstr "Username"
-
-#: ../lib/classes/LockRules.class.php:230 ../config/config_develop.inc.php:185
-#: ../templates/register/form.php:109
-#: ../app/views/settings/account/index.php:144
-#: ../app/views/admin/user/new.php:74 ../app/views/admin/user/edit.php:155
-msgid "Geschlecht"
-msgstr "Gender"
-
-#: ../lib/classes/LockRules.class.php:231 ../app/views/profile/index.php:22
-msgid "Telefon (privat)"
-msgstr "Home telephone number"
-
-#: ../lib/classes/LockRules.class.php:232 ../app/views/profile/index.php:27
-msgid "Mobiltelefon"
-msgstr "Mobile telephone"
-
-#: ../lib/classes/LockRules.class.php:233 ../app/views/profile/index.php:37
-#: ../app/views/settings/details.php:25
-msgid "Adresse (privat)"
-msgstr "Address (home)"
-
-#: ../lib/classes/LockRules.class.php:239
-#: ../lib/navigation/ProfileNavigation.php:84
-#: ../app/views/admin/user/edit.php:455
-msgid "Einrichtungsdaten"
-msgstr "Institute details"
-
-#: ../lib/classes/Interactable.class.php:117
-msgid "ok"
-msgstr "ok"
-
-#: ../lib/classes/MvvQuickSearch.php:24
-#, php-format
-msgid "Alle %s Treffer anzeigen"
-msgstr "Display all %s matches"
-
-#: ../lib/classes/MvvQuickSearch.php:26
-#, php-format
-msgid "Die ersten %s Treffer anzeigen"
-msgstr "Display the first %s matches"
-
-#: ../lib/classes/CoursesetModel.php:134
-msgid "(unbegrenzt)"
-msgstr "(unlimited)"
-
-#: ../lib/classes/CoursesetModel.php:217
-#: ../app/controllers/admission/restricted_courses.php:272
-#, php-format
-msgid "[Alle unter %s]"
-msgstr "[All below %s]"
-
-#: ../lib/classes/TwoFactorAuth.php:213
-msgid "Ihr Zwei-Faktor-Token"
-msgstr "Your two-factor authentication"
-
-#: ../lib/classes/TwoFactorAuth.php:215
-#, php-format
-msgid "Bitte geben Sie dieses Token ein: %s"
-msgstr "Please enter this token: %s"
-
-#: ../lib/classes/TwoFactorAuth.php:319
-msgid "Das eingegebene Token ist nicht gültig."
-msgstr "Wrong token."
-
-#: ../lib/classes/DataFieldEntry.class.php:545
-msgid "sichtbar für alle"
-msgstr "visible to all"
-
-#: ../lib/classes/DataFieldEntry.class.php:547
-#, php-format
-msgid "sichtbar nur für Sie und alle %s"
-msgstr "visible only for you and all %s"
-
-#: ../lib/classes/DataFieldEntry.class.php:563
-msgid "Systemadministrator/-innen"
-msgstr "Root"
-
-#: ../lib/classes/DataFieldEntry.class.php:566
-msgid "Administrator/-innen"
-msgstr "Admins"
-
-#: ../lib/classes/DataFieldEntry.class.php:569
-msgid "Lehrenden"
-msgstr "Lecturers"
-
-#: ../lib/classes/DataFieldEntry.class.php:575
-msgid "Studierenden"
-msgstr "Students"
-
-#: ../lib/classes/DataFieldEntry.class.php:578
-#: ../app/views/admin/domain/index.php:21
-msgid "Nutzer/-innen"
-msgstr "Users"
-
-#: ../lib/classes/StudipRangeTreeView.class.php:72
-msgid "Seite dieser Einrichtung in Stud.IP aufrufen"
-msgstr "Load this institute's homepage in Stud.IP"
-
-#: ../lib/classes/StudipRangeTreeView.class.php:73
-msgid "in Stud.IP"
-msgstr "in Stud.IP"
-
-#: ../lib/cronjobs/clean_object_user_visits.php:21
-msgid "Entfernt alte Einträge aus der Tabelle \"object_user_visits\""
-msgstr "Deletes all obsolete entries from table \"object_user_visits\""
-
-#: ../lib/cronjobs/clean_object_user_visits.php:31
-msgid ""
-"Um die Tabelle \"object_user_visits\" schmal zu halten, werden alte Einträge "
-"nach einem definierten Zeitraum entfernt."
-msgstr ""
-"Obsolete entries from \"objects_user_visits\" are deleted after a defined "
-"period to keep the table lean."
-
-#: ../lib/cronjobs/cleanup_log.class.php:40
-msgid "Logs aufräumen"
-msgstr "Clean up logs"
-
-#: ../lib/cronjobs/cleanup_log.class.php:48
-msgid ""
-"Entfernt abgelaufene Log-Einträge sowohl für das Eventsystem als auch für "
-"die Cronjobs"
-msgstr ""
-"Purges old log entries for the event system as well as for the cronjobs"
-
-#: ../lib/cronjobs/cleanup_log.class.php:64
-msgid "Sollen die Logeinträge für Cronjobs auch gelöscht werden"
-msgstr "Shall the log entries for cronjobs be deleted, too"
-
-#: ../lib/cronjobs/cleanup_log.class.php:70
-msgid ""
-"Nach wievielen Tagen sollen Logeinträge für erfolgreiche Cronjobs gelöscht "
-"werden (0 für nie)"
-msgstr ""
-"After how many days should log entries for successful cronjob executions be "
-"deleted (0 = never)"
-
-#: ../lib/cronjobs/cleanup_log.class.php:77
-msgid ""
-"Nach wievielen Tagen sollen Logeinträge für fehlgeschlagene Cronjobs "
-"gelöscht werden (0 für nie)"
-msgstr ""
-"After how many days should log entries for erroneous cronjob executions be "
-"deleted (0 = never)"
-
-#: ../lib/cronjobs/check_admission.class.php:14
-msgid "Losverfahren überprüfen"
-msgstr "Check drawing of lots"
-
-#: ../lib/cronjobs/check_admission.class.php:19
-msgid "Überprüft, ob Losverfahren anstehen und führt diese aus"
-msgstr "Checks, if drawing lots are scheduled and conducts them"
-
-#: ../lib/cronjobs/check_admission.class.php:29
-#: ../lib/cronjobs/purge_cache.class.php:63
-#: ../lib/cronjobs/send_mail_notifications.class.php:79
-#: ../lib/cronjobs/garbage_collector.class.php:33
-msgid ""
-"Sollen Ausgaben erzeugt werden (sind später im Log des Cronjobs sichtbar)"
-msgstr "Create and capture output (visible in cronjob's log entry)"
-
-#: ../lib/cronjobs/check_admission.class.php:35
-msgid "Sollen interne Nachrichten an alle betroffenen Nutzer gesendet werden)"
-msgstr "Should internal messages be sent to all affected users)"
-
-#: ../lib/cronjobs/check_admission.class.php:81
-#: ../lib/evaluation/classes/EvaluationExportManagerCSV.class.php:139
-#: ../lib/filesystem/FileArchiveManager.class.php:456
-#: ../templates/register/form.php:100
-#: ../app/controllers/admission/courseset.php:453
-#: ../app/controllers/admission/courseset.php:480
-#: ../app/controllers/admission/courseset.php:568
-#: ../app/controllers/questionnaire.php:371
-#: ../app/controllers/course/members.php:1788
-#: ../app/controllers/course/lti.php:547
-#: ../app/views/settings/account/index.php:56
-#: ../app/views/admin/install/root.php:31 ../app/views/admin/user/new.php:67
-#: ../app/views/admin/user/_results.php:29 ../app/views/admin/user/index.php:30
-#: ../app/views/admin/user/edit.php:82
-#: ../app/views/library_file/_add_edit_form.php:20
-msgid "Nachname"
-msgstr "Last name"
-
-#: ../lib/cronjobs/check_admission.class.php:81
-#: ../lib/evaluation/classes/EvaluationExportManagerCSV.class.php:140
-#: ../lib/filesystem/FileArchiveManager.class.php:455
-#: ../templates/register/form.php:91
-#: ../app/controllers/admission/courseset.php:453
-#: ../app/controllers/admission/courseset.php:480
-#: ../app/controllers/admission/courseset.php:568
-#: ../app/controllers/questionnaire.php:371
-#: ../app/controllers/course/members.php:1788
-#: ../app/controllers/course/lti.php:547
-#: ../app/views/settings/account/index.php:44
-#: ../app/views/admin/install/root.php:25 ../app/views/admin/user/new.php:59
-#: ../app/views/admin/user/_results.php:24 ../app/views/admin/user/index.php:25
-#: ../app/views/admin/user/edit.php:71
-#: ../app/views/library_file/_add_edit_form.php:23
-msgid "Vorname"
-msgstr "First name"
-
-#: ../lib/cronjobs/check_admission.class.php:81
-msgid "Nutzer-ID"
-msgstr "User id"
-
-#: ../lib/cronjobs/check_admission.class.php:81
-msgid "Veranstaltung-ID"
-msgstr "Course id"
-
-#: ../lib/cronjobs/session_gc.class.php:15
-msgid "Sessions bereinigen"
-msgstr "Clean up sessions"
-
-#: ../lib/cronjobs/session_gc.class.php:20
-msgid "Entfernt abgelaufene session Daten"
-msgstr "Removes expired session data"
-
-#: ../lib/cronjobs/purge_cache.class.php:40
-msgid "Dateicache leeren"
-msgstr "Empty file cache"
-
-#: ../lib/cronjobs/purge_cache.class.php:48
-msgid "Leert den dateibasierten Cache"
-msgstr "Empties the file based cache"
-
-#: ../lib/cronjobs/send_mail_queue.class.php:22
-msgid "Mailqueue senden"
-msgstr "Send mail queue"
-
-#: ../lib/cronjobs/send_mail_queue.class.php:31
-msgid ""
-"Sendet alle Einträge in der Mailqueue bis zu 24 Stunden, nachdem sie "
-"hinzugefügt wurden."
-msgstr "Retry to send mail queue up to 24 h "
-
-#: ../lib/cronjobs/send_mail_queue.class.php:66
-msgid ""
-"Sollen Ausgaben erzeugt werden? Diese sind später im Log des Cronjobs "
-"sichtbar."
-msgstr ""
-"Shall the cronjob generate output? It will later be visible in the cronjob's "
-"log."
-
-#: ../lib/cronjobs/send_mail_notifications.class.php:40
-msgid "Versendet tägliche E-Mailbenachrichtigungen"
-msgstr "Sends daily notifications"
-
-#: ../lib/cronjobs/send_mail_notifications.class.php:48
-msgid ""
-"Versendet die täglichen E-Mailbenachrichtigungen an alle Nutzer, die diese "
-"aktiviert haben"
-msgstr ""
-"Sends the daily notifications to all users who have activated this feature"
-
-#: ../lib/cronjobs/send_mail_notifications.class.php:115
-msgid "Tägliche Benachrichtigung"
-msgstr "Daily notification"
-
-#: ../lib/cronjobs/garbage_collector.class.php:16
-msgid "Datenbank bereinigen"
-msgstr "Clean up database"
-
-#: ../lib/cronjobs/garbage_collector.class.php:21
-msgid ""
-"Entfernt endgültig gelöschte Nachrichten, nicht zugehörige Dateianhänge, "
-"abgelaufene Ankündigungen, alte Aktivitäten, veraltete Plugin-Assets sowie "
-"veraltete OAuth-Servernonces und abgelaufene Terminblöcke"
-msgstr ""
-
-#: ../lib/cronjobs/garbage_collector.class.php:39
-msgid ""
-"(Ankündigungen): Nach wie vielen Tagen sollen die abgelaufenen Ankündigungen "
-"gelöscht werden (0 für Zeitpunkt des Ablaufdatums, Default: 365 Tage)?"
-msgstr ""
-"(Announcements): After how many days shall expired announcements be deleted "
-"(0 for the expiration date, default: 365 days)?"
-
-#: ../lib/cronjobs/garbage_collector.class.php:46
-msgid ""
-"(Systemnachrichten): Nach wie vielen Tagen sollen die Systemnachrichten "
-"gelöscht werden (0 für sofort, Default: 30 Tage)?"
-msgstr ""
-"(System message): After how many days shall system messages be deleted (0 "
-"for now, default: 30 days)?"
-
-#: ../lib/cronjobs/garbage_collector.class.php:139
-#, php-format
-msgid "Gelöschte Ankündigungen: %u"
-msgstr "Deleted announcements: %u"
-
-#: ../lib/cronjobs/garbage_collector.class.php:140
-#, php-format
-msgid "Gelöschte Nachrichten: %u"
-msgstr "Deleted Messages: %u"
-
-#: ../lib/cronjobs/garbage_collector.class.php:141
-#, php-format
-msgid "Gelöschte Dateianhänge: %u"
-msgstr "Deleted file attachments: %u"
-
-#: ../lib/cronjobs/garbage_collector.class.php:142
-#, php-format
-msgid "Gelöschte MVV-Dateien: %u"
-msgstr "Deleted MVV files: %u"
-
-#: ../lib/cronjobs/garbage_collector.class.php:163
-#, php-format
-msgid "Gelöschte Server-Nonces: %u"
-msgstr "Deleted server nonces: %u"
-
-#: ../lib/cronjobs/garbage_collector.class.php:176
-#, php-format
-msgid "Gelöschte Terminblöcke: %u"
-msgstr ""
-
-#: ../lib/showNews.inc.php:57
-msgid "Keine Berechtigung zum Löschen des Kommentars."
-msgstr "Deleting not allowed."
-
-#: ../lib/showNews.inc.php:61
-#, php-format
-msgid "%s Kommentare wurden gelöscht."
-msgstr "%s comments deleted."
-
-#: ../lib/showNews.inc.php:63
-msgid "Kommentar wurde gelöscht."
-msgstr "Comment deleted."
-
-#: ../lib/showNews.inc.php:66
-#, php-format
-msgid "Wollen Sie die %s Komentare jetzt löschen?"
-msgstr "Do you want to delete %s comments?"
-
-#: ../lib/showNews.inc.php:68
-msgid "Wollen Sie den Kommentar jetzt löschen?"
-msgstr "Delete this comment?"
-
-#: ../lib/showNews.inc.php:100
-#, php-format
-msgid "Ankündigung \"%s\" wurde gelöscht."
-msgstr "Announcement %s has been deleted."
-
-#: ../lib/showNews.inc.php:106
-#, php-format
-msgid "Ihre Ankündigung \"%s\" wurde von der Administration gelöscht!."
-msgstr "Your announcement \"%s\" was deleted by the administrators!."
-
-#: ../lib/showNews.inc.php:118 ../app/controllers/news.php:434
-msgid "Ankündigung geändert"
-msgstr "Announcement modified"
-
-#: ../lib/showNews.inc.php:125
-#, php-format
-msgid "Keine Berechtigung zum Löschen der Ankündigung \"%s\"."
-msgstr "No permission to delete announcement \"%s\"."
-
-#: ../lib/showNews.inc.php:135
-#, php-format
-msgid "- Die Ankündigung \"%s\" wird unwiderruflich gelöscht."
-msgstr "announcements %s will be deleted."
-
-#: ../lib/showNews.inc.php:140
-#, php-format
-msgid "- Die %s Ankündigungen \"%s\" werden unwiderruflich gelöscht."
-msgstr "- %s announcements \"%s\" will be deleted."
-
-#: ../lib/showNews.inc.php:190
-#, php-format
-msgid ""
-"Keine Berechtigung zum Entfernen der Ankündigung \"%s\" aus diesem Bereich."
-msgstr "No permissions to delete the announcement \"%s\" from this area."
-
-#: ../lib/showNews.inc.php:197
-#, php-format
-msgid "Ankündigung \"%s\" wurde aus dem Bereich entfernt."
-msgstr "Announcement %s has been removed from the area."
-
-#: ../lib/showNews.inc.php:202
-#, php-format
-msgid "Ankündigung \"%s\" wurde aus %s Bereichen entfernt."
-msgstr "Announcement %s has been deleted from %s areas."
-
-#: ../lib/showNews.inc.php:212
-#, php-format
-msgid ""
-"- Die Ankündigung \"%s\" wird aus dem aktiven Bereich entfernt. Sie wird "
-"dadurch nicht endgültig gelöscht. Es wird nur die Zuordnung entfernt."
-msgstr ""
-"- The announcement \"%s\" will be removed from the active area. It won't be "
-"deleted permanently. Just the assignment will be removed."
-
-#: ../lib/showNews.inc.php:215
-#, php-format
-msgid ""
-"- Die Ankündigung \"%s\" wird aus den %s gewählten Bereichen entfernt. Sie "
-"wird dadurch nicht endgültig gelöscht. Es werden nur die Zuordnungen "
-"entfernt."
-msgstr ""
-"- The announcement \"%s\" will be removed from the %s selected areas. It "
-"won't be deleted permanently. Only the assignments will be removed."
-
-#: ../lib/showNews.inc.php:225
-msgid "Wollen Sie die folgenden Aktionen jetzt ausführen?"
-msgstr "Execute these actions now?"
-
-#: ../lib/showNews.inc.php:228
-msgid "Wollen Sie diese Aktion jetzt ausführen?"
-msgstr "Execute this action now?"
-
-#: ../lib/showNews.inc.php:245
-msgid "Persönliche Neuigkeiten"
-msgstr "Personal announcements"
-
-#: ../lib/showNews.inc.php:254
-msgid "Neuigkeiten der Veranstaltung"
-msgstr "Announcements of the course"
-
-#: ../lib/showNews.inc.php:265
-msgid "Neuigkeiten der Einrichtung"
-msgstr "Announcements of the Institute"
-
-#: ../lib/showNews.inc.php:270
-msgid "Allgemeine Neuigkeiten"
-msgstr "General announcements"
-
-#: ../lib/evaluation/classes/EvaluationObject.class.php:473
-msgid "Es existiert kein DB-Objekt"
-msgstr "No DB-Object existing"
-
-#: ../lib/evaluation/classes/EvaluationExportManager.class.php:167
-#: ../lib/evaluation/classes/EvaluationExportManager.class.php:231
-#: ../lib/evaluation/classes/EvaluationExportManagerCSV.class.php:134
-msgid "ExportManager::Konnte temporäre Datei nicht öffnen."
-msgstr "ExportManager:: Unable to open temporary file."
-
-#: ../lib/evaluation/classes/EvaluationExportManager.class.php:182
-msgid ""
-"ExportManager::Es haben noch keine Benutzer abgestimmt oder angegebene "
-"Evaluation existiert nicht."
-msgstr ""
-"ExportManager:: No user has taken part or the given evaluation does not "
-"exist."
-
-#: ../lib/evaluation/classes/EvaluationExportManager.class.php:218
-msgid "ExportManager::Konnte temporäre Datei nicht schließen."
-msgstr "ExportManager::Unable to close temporary file."
-
-#: ../lib/evaluation/classes/EvaluationExportManager.class.php:257
-#, php-format
-msgid "ExportManager::Das Verzeichnis %s existiert nicht."
-msgstr "ExportManager::Directory %s does not exist."
-
-#: ../lib/evaluation/classes/EvaluationExportManager.class.php:260
-#, php-format
-msgid "ExportManager::Das Verzeichnis %s ist nicht schreibbar nicht."
-msgstr "ExportManager::No write access to directory %s."
-
-#: ../lib/evaluation/classes/EvaluationExportManager.class.php:266
-msgid "ExportManager::Konnte temporäre Datei nicht erstellen."
-msgstr "ExportManager::Unable to create temporary file."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:51
-msgid "keine Vorlage"
-msgstr "no template"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:57
-msgid "*Fragenblock*"
-msgstr "*Question block*"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:63
-msgid "*unbekannt*"
-msgstr "*unknown*"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:69
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2263
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:58
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1386
-msgid "Neue Evaluation"
-msgstr "New evaluation"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:75
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2266
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:64
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1394
-msgid "Erster Gruppierungsblock"
-msgstr "First content block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:81
-msgid "Neuer Gruppierungsblock"
-msgstr "New content block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:87
-msgid "Neuer Fragenblock"
-msgstr "New question block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:292
-#, php-format
-msgid ""
-"Sie haben den Gruppierungsblock <b>%s</b> zum Verschieben ausgewählt. Sie "
-"können ihn nun in einen leeren Gruppierungsblock, einen Gruppierungsblock "
-"ohne Frageblöcke oder in die oberste Ebene verschieben."
-msgstr ""
-"You have selected question block <b>%s</b> to be moved. Now, you may move it "
-"to an empty content block, to a content block without question blocks or to "
-"top level."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:301
-#, php-format
-msgid ""
-"Sie haben den Fragenblock <b>%s</b> zum Verschieben ausgewählt. Sie können "
-"ihn nun in einen leeren Gruppierungsblock oder einen Gruppierungsblock mit "
-"Frageblöcke verschieben."
-msgstr ""
-"You have selected question block <b>%s</b> to be moved. Now, you may move it "
-"to an empty content block or to a content block with other question blocks."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:306
-msgid "Es wurde ein ungültiger Block zum verschieben ausgewählt."
-msgstr "An invalid block has been selected for moving."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:339
-#, php-format
-msgid "Benutzen Sie dieses %s Symbol, um den Block zu verschieben."
-msgstr "Click on the icon %s in order to move the block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:340
-msgid "Block verschieben Symbol"
-msgstr "Icon for moving blocks"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:342
-msgid "Oder wollen Sie die Aktion abbrechen?"
-msgstr "Or do you want to cancel the action?"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:490
-msgid "Sie sind hier:"
-msgstr "You are here:"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:501
-#: ../lib/evaluation/classes/Evaluation.class.php:463
-msgid "Evaluation"
-msgstr "Evaluation"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:549
-msgid "Dieser Block ist geöffnet."
-msgstr "This content block has been opened."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:562
-msgid "Diesen Block öffnen."
-msgstr "Open this content block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:576
-msgid "Dies ist Ihre Evaluation."
-msgstr "This is your evaluation."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:585
-msgid "Dieser Gruppierungsblock enthält keine Blöcke."
-msgstr "This content block does not contain any block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:586
-#, php-format
-msgid "Dieser Grupppierungsblock enthält %s Blöcke."
-msgstr "This content block contains %s blocks."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:600
-msgid "Dieser Fragenblock enthält keine Fragen."
-msgstr "This question block does not contain any question."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:601
-#, php-format
-msgid "Dieser Fragenblock enthält %s Fragen."
-msgstr "This question block contains %s questions."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:612
-msgid "Kein Blocktyp."
-msgstr "No block type."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:972
-#: ../app/views/contents/courseware/create_project.php:27
-msgid "Vorlage"
-msgstr "Template"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:979
-msgid "Diesen Block öffnen"
-msgstr "Open this block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1014
-msgid "Den ausgwählten Block in diesen Block verschieben"
-msgstr "Move the selected block to this block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1050
-msgid "Block nach oben verschieben"
-msgstr "Move this block up"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1054
-msgid "Block nach unten verschieben"
-msgstr "Move this block down"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1199
-#, php-format
-msgid "Die Aktion wurde abgebrochen."
-msgstr "Action cancelled."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1218
-msgid "Kein Titel angegeben."
-msgstr "No title entered."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1233
-msgid "Fehler beim Einlesen (root-item)"
-msgstr "Error while reading (root-item)"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1236
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1250
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1290
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1293
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1702
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1758
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1792
-msgid "Veränderungen wurden gespeichert."
-msgstr "Changes saved."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1247
-msgid "Fehler beim Einlesen (Block)"
-msgstr "Error while reading (block)"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1274
-msgid "Einer Frage wurden noch keine Antwortenmöglichkeiten zugewiesen."
-msgstr "No possible reply has been assigned to this question."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1276
-msgid "Einer Frage  wurden noch keine Antwortenmöglichkeiten zugewiesen."
-msgstr "There is at least one question no reply has been assigned to. "
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1279
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1281
-#, php-format
-msgid "%s Fragen wurden noch keine Antwortenmöglichkeiten zugewiesen."
-msgstr "There are %s questions no replies have been assigned to."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1301
-msgid "Falscher Blocktyp. Es wurden keine Veränderungen vorgenommen."
-msgstr "Invalid block type. No changes have been made."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1336
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1342
-#, php-format
-msgid ""
-"Sie beabsichtigen den Fragenblock <b>%s</b> inklusive aller Fragen zu "
-"löschen. "
-msgstr ""
-"You are about to delete question block <b>%s</b> including all questions."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1338
-#, php-format
-msgid "Es werden insgesamt %s Fragen gelöscht!"
-msgstr "A total of %s questions will be deleted!"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1346
-msgid "Wollen Sie diesen Fragenblock wirklich löschen?"
-msgstr "Are you sure to delete this question block?"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1351
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1357
-#, php-format
-msgid ""
-"Sie beabsichtigen den Gruppierungsblock <b>%s</b> inklusive aller "
-"Unterblöcke zu löschen. "
-msgstr ""
-"You are about to delete content block <b>%s</b> including all content sub-"
-"blocks."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1353
-#, php-format
-msgid "Es werden insgesamt %s Unterblöcke gelöscht!"
-msgstr "A total of %s content sub-blocks will be deleted!"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1361
-msgid "Wollen Sie diesen Gruppierungsblock wirklich löschen?"
-msgstr "Are you sure to delete this content block?"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1365
-msgid "JA!"
-msgstr "Yes!"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1369
-msgid "NEIN!"
-msgstr "No!"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1396
-msgid "Fehler beim Löschen eines Block."
-msgstr "Error while deleting a block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1401
-#, php-format
-msgid ""
-"Der Fragenblock <b>%s</b> und alle darin enthaltenen Fragen (insgesamt %s) "
-"wurden gelöscht. "
-msgstr ""
-"Question block <b>%s</b> including all (a total of %s) questions contained "
-"has been deleted."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1403
-#, php-format
-msgid "Der Fragenblock <b>%s</b> wurde gelöscht. "
-msgstr "Question block <b>%s</b> deleted. "
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1407
-#, php-format
-msgid ""
-"Der Gruppierungsblock <b>%s</b> und alle Unterblöcke (insgesamt %s) wurden "
-"gelöscht. "
-msgstr ""
-"Content block <b>%s</b> and all (a total of %s) content sub-blocks have been "
-"deleted. "
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1409
-#, php-format
-msgid "Der Gruppierungsblock <b>%s</b> wurde gelöscht. "
-msgstr "Content block <b>%s</b> deleted."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1441
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1450
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1485
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1495
-msgid "Fehler beim Anlegen eines neuen Blocks."
-msgstr "Error while creating new block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1444
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1453
-msgid "Ein neuer Gruppierungsblock wurde angelegt."
-msgstr "New content block created."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1488
-msgid "Ein neuer Fragenblock wurde angelegt."
-msgstr "New question block created."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1499
-#, php-format
-msgid ""
-"Ein neuer Fragenblock mit der Antwortenvorlage <b>%s</b> wurde angelegt."
-msgstr "New question block with reply template <b>%s</b> created."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1503
-#, php-format
-msgid "Ein neuer Fragenblock mit keiner Antwortenvorlage wurde angelegt."
-msgstr "New question block without any reply template created."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1528
-msgid "Fehler beim Zuordnen eines Templates."
-msgstr "Error while assigning a template."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1541
-#, php-format
-msgid "Die Vorlage <b>%s</b> wurde dem Fragenblock zugeordnet."
-msgstr "Template <b>%s</b> has been assigned to this question block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1592
-msgid "Es wurde eine leere Frage entfernt."
-msgstr "An empty question has been deleted."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1594
-#, php-format
-msgid "Es wurden %s leere Fragen entfernt."
-msgstr "%s empty questions deleted."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1620
-msgid "Fehler beim Anlegen neuer Fragen."
-msgstr "Error while creating new question."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1626
-msgid "Es wurde eine neue Frage hinzugefügt."
-msgstr "New question added."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1629
-#, php-format
-msgid "Es wurden %s neue Fragen hinzugefügt."
-msgstr "%s new questions added."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1663
-msgid "Es wurde eine Frage gelöscht."
-msgstr "One question deleted."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1666
-#, php-format
-msgid "Es wurden %s Fragen gelöscht."
-msgstr "%s questions deleted."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1669
-msgid "Es wurde keine Frage gelöscht."
-msgstr "No questions has been deleted."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1722
-#, php-format
-msgid "Der Frage <b>%s</b> wurden Antwortenmöglichkeiten zugewiesen."
-msgstr "Possible replies have been assigned to question <b>%s</b>."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1753
-msgid "Die Frage wurde von Position 1 an die letzte Stelle verschoben."
-msgstr "The question has been moved from position 1 to last position."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1756
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1790
-#, php-format
-msgid "Die Frage wurde von Position %s nach oben verschoben."
-msgstr "The question has been moved up from position %s."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1786
-#, php-format
-msgid "Die Frage wurde von Position %s an die erste Stelle verschoben."
-msgstr "The question has been moved from position %s to first position."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1809
-msgid "Fragenblock"
-msgstr "Question block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1811
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2228
-msgid "Gruppierungsblock"
-msgstr "Content block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1815
-msgid " wurde von Position 1 an die letzte Stelle verschoben."
-msgstr " has been moved from position 1 to last position."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1819
-#, php-format
-msgid " wurde von Position %s an die erste Stelle verschoben."
-msgstr " has been moved from position %s to first position."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1823
-#, php-format
-msgid " wurde von Position %s nach oben verschoben."
-msgstr " has been moved up from position %s."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1824
-#, php-format
-msgid " wurde von Position %s nach unten verschoben."
-msgstr " has been moved down from position %s."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1845
-msgid ""
-"Fehler beim Verschieben eines Blocks. Es wurde kein Block zum verschieben "
-"ausgewählt."
-msgstr "Error while moving a block. No block has been selected to be moved."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1853
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1861
-msgid "Fehler beim Verschieben eines Blocks. Der Zielblock besitzt keinen Typ."
-msgstr "Error while moving block. The target block does not have any type."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1876
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1921
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1968
-msgid ""
-"Fehler beim Verschieben eines Blocks. Der ausgewählte Block und der "
-"Zielblock besitzen verschiedene Typen."
-msgstr ""
-"Error while moving block. The selected block and the target block are of "
-"different type."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1892
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1902
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1904
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1906
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1908
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1930
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1938
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1947
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1949
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1951
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1953
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2000
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2002
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2004
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2006
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2008
-msgid "Fehler beim Verschieben eines Blocks."
-msgstr "Error while moving block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1911
-#, php-format
-msgid "Der Block <b>%s</b> wurde in die Hauptebene verschoben."
-msgstr "Block <b>%s</b> moved to main level."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1957
-#, php-format
-msgid "Der Block <b>%s</b> wurde in diesen Gruppierungsblock verschoben."
-msgstr "Block <b>%s</b> moved to this content block. "
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1977
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:1982
-msgid ""
-"Fehler beim Verschieben eines Blocks. Ein Fragenblock kann nicht auf die "
-"oberste Ebene verschoben werden."
-msgstr ""
-"Error while moving block. A question block cannot been moved to top upper "
-"level."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2011
-#, php-format
-msgid "Der Block <b>%s</b> wurde in diesen Fragenblock verschoben."
-msgstr "Block <b>%s</b> moved to this question block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2044
-msgid "Sie können ..."
-msgstr "You may ..."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2066
-msgid "Die Veränderungen innerhalb des Blockes speichern."
-msgstr "Save changes within this block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2069
-msgid "- die Veränderungen dieses Blocks speichern."
-msgstr "- save changes of this block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2074
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2086
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2230
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2237
-#: ../templates/elearning/_my_account_form.php:20
-#: ../app/views/course/room_requests/new.php:32
-#: ../app/views/course/feedback/create_form.php:5
-#: ../app/views/contents/courseware/create_project.php:115
-#: ../app/views/admin/specification/edit.php:77
-#: ../app/views/admin/sem_classes/add_sem_type.php:26
-#: ../app/views/my_ilias_accounts/add_object.php:16
-#: ../app/views/file/new_folder.php:13 ../app/views/blubber/compose.php:115
-#: ../app/views/blubber/private_to_studygroup.php:23
-msgid "Erstellen"
-msgstr "Create"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2076
-msgid "Einen neuen Gruppierungsblock erstellen."
-msgstr "Create a new content block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2078
-msgid ""
-"- einen neuen Gruppierungsblock innerhalb dieses Blockes erstellen, in "
-"welchem Sie weitere Gruppierungs- oder Fragenblöcke anlegen können."
-msgstr ""
-"- create a new content block within this block, in this new content block "
-"you may create further content blocks of question blocks."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2088
-msgid ""
-"Einen neuen Fragenblock mit der ausgewählten Antwortenvorlage erstellen."
-msgstr "Create a new question block with the selected reply template."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2090
-msgid ""
-"- einen neuen Fragenblock innherhalb dieses Blockes erstellen. Geben Sie "
-"dazu bitte eine Antwortenvorlage an, welche für alle Fragen des neuen "
-"Fragenblockes verwendet wird."
-msgstr ""
-"- create a new question block within this content block. Please enter a "
-"reply template to be assigned to all questions of the new question block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2105
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2115
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2120
-msgid "Diesen Block verschieben."
-msgstr "Move this block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2118
-msgid "verschieben"
-msgstr "move"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2123
-msgid "- diesen Block zum Verschieben markieren."
-msgstr "- mark this block as to be moved."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2137
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2406
-msgid "Diesen Block und alle seine Unterblöcke löschen."
-msgstr "Delete this block and all its sub-blocks."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2144
-msgid "Diesen Block (und alle seine Unterblöcke) löschen.."
-msgstr "Delete this block (including all its sub-blocks).."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2148
-msgid "- diesen Block und seine Unterblöcke löschen."
-msgstr "- delete this block and all its sub-blocks."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2165
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2275
-msgid "Erstellung einer Evaluation abbrechen"
-msgstr "Cancel creating an evaluation"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2170
-msgid "Die Erstellung dieser Evaluation abbrechen."
-msgstr "Cancel creating this evaluation."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2232
-msgid "Einen neuen Gruppierungsblock erstellen"
-msgstr "Create new content block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2234
-msgid "Fragenblock mit"
-msgstr "Question block with"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2239
-msgid "Einen neuen Fragenblock erstellen"
-msgstr "Create new question block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2303
-msgid "Titel der Evaluation"
-msgstr "Title of the evaluation"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2305
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2313
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2322
-msgid "Zusätzlicher Text"
-msgstr "Additional text"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2310
-msgid "Titel des Gruppierungsblocks"
-msgstr "Title of content block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2318
-msgid "Titel des Fragenblocks"
-msgstr "Title of question block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2319
-msgid "Die Angabe des Titels ist bei einem Fragenblock optional."
-msgstr "Entering a title of a question block is optional."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2326
-msgid "Die Angabe des zusätzlichen Textes ist optional."
-msgstr "Entering an additional text is optional."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2400
-msgid "Änderungen übernehmen."
-msgstr "Save changes."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2403
-msgid "Diesen Block"
-msgstr "This block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2438
-msgid "Globale Eigenschaften"
-msgstr "Global properties"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2450
-msgid "Die Auswertung der Evaluation läuft"
-msgstr "Assessment of this evaluation is running"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2475
-msgid "personalisiert"
-msgstr "personalised"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2523
-#: ../app/views/resources/category/show_resources.php:7
-#: ../app/views/resources/category/_add_edit_form.php:43
-#: ../app/views/resources/category/details.php:15
-#: ../app/views/resources/admin/property_groups.php:30
-#: ../app/views/resources/resource/index.php:6
-#: ../app/views/resources/resource/_add_edit_form.php:36
-#: ../app/views/admin/banner/index.php:54
-msgid "Eigenschaften"
-msgstr "Properties"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2534
-msgid "Die Fragen dieses Blocks müssen beantwortet werden (Pflichtfelder):"
-msgstr "All questions in this block must be replied to (mandatory fields):"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2567
-#, php-format
-msgid "Diesem Fragenblock ist die Antwortenvorlage <b>%s</b> zugewiesen."
-msgstr "Reply template <b>%s</b> has been assigned to this question block."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2569
-msgid ""
-"Das Zuweisen einer Antwortenvorlage ändert alle Antwortenmöglichkeiten der "
-"Fragen dieses Fragenblocks."
-msgstr ""
-"Assigning a reply template to this question will cause all reply "
-"possibilities to this question block to be changed."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2571
-msgid ""
-"Da dieser Fragenblock keine Antwortenvorlage benutzt, würde ein Zuweisen "
-"einer Antwortenvorlage zum Verlust aller eingegebenen Antworten führen."
-msgstr ""
-"Since this question block does not use an answer template, assigning an "
-"answer template to it would lead to a loss of all entered answers."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2583
-#: ../templates/sidebar/select-widget.php:32
-#: ../templates/sidebar/select-widget.php:35
-#: ../app/views/resources/room_group/permissions.php:33
-#: ../app/views/resources/room_planning/semester_plan.php:35
-#: ../app/views/settings/statusgruppen/assign.php:19
-#: ../app/views/admin/courses/lock_preselect.php:12
-#: ../app/views/questionnaire/assign_step2.php:68
-msgid "Zuweisen"
-msgstr "Allocate"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2585
-msgid "Eine andere Antwortenvorlage für diesen Fragenblock auswählen"
-msgstr "Select a different reply template for this question block"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2644
-#: ../app/views/course/feedback/_new_edit_feedback_form.php:7
-#: ../app/views/questionnaire/question_types/test/test_edit.php:4
-#: ../app/views/questionnaire/question_types/vote/vote_edit.php:4
-#: ../app/views/questionnaire/question_types/freetext/freetext_edit.php:5
-msgid "Frage"
-msgstr "Question"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2654
-#: ../app/views/resources/admin/property_groups.php:31
-#: ../app/views/course/members/awaiting_list.php:60
-#: ../app/views/admin/content_terms_of_use/edit.php:38
-#: ../app/views/admin/user/_waiting_list.php:23
-#: ../app/views/admin/plugin/index.php:44
-#: ../app/views/admin/statusgroups/editGroup.php:54
-#: ../app/views/admin/datafields/new.php:139
-#: ../app/views/admin/datafields/index.php:34
-#: ../app/views/admin/datafields/edit.php:165
-msgid "Position"
-msgstr "Position"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2761
-msgid "Diese Frage mit der letzten Frage vertauschen."
-msgstr "Exchange this question and the last one."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2763
-msgid "Diese Frage eine Position nach oben verschieben."
-msgstr "Move up this question by one position."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2766
-msgid "Diese Frage mit der ersten Frage vertauschen."
-msgstr "Exchange this question and the first one."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2768
-msgid "Diese Frage eine Position nach unten verschieben."
-msgstr "Move down this question by one position."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2819
-msgid ""
-"Dieser Frage wurden noch keine Antwortenmöglichkeiten zugewiesen. Drücken "
-"Sie auf den Doppelfpeil, um dies jetzt zu tun."
-msgstr ""
-"No reply has been assigned to this question, yet. Click on the double arrow "
-"to do so."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2820
-msgid "Dieser Frage Antwortenmöglichkeiten zuweisen."
-msgstr "Assign reply options to this question."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2823
-msgid "Dieser Frage wurden bereits folgende Antwortenmöglichkeiten zugewiesen:"
-msgstr ""
-"The following reply options have already been assigned to this question:"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2825
-msgid "Die zugewiesenen Antwortenmöglichkeiten bearbeiten."
-msgstr "Modify the assigned reply options."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2871
-msgid "Dieser Block besitzt keine Fragen."
-msgstr "This block does not contain any questions."
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2921
-msgid "Frage/en"
-msgstr "Question/questions"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2924
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:113
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:115
-#: ../lib/elearning/Ilias3ConnectedLink.class.php:120
-#: ../lib/elearning/Ilias3ConnectedLink.class.php:123
-#: ../lib/elearning/PmWikiConnectedLink.class.php:120
-#: ../lib/elearning/ConnectedLink.class.php:99
-#: ../templates/sidebar/room-clipboard-widget.php:52
-#: ../templates/sidebar/clipboard-widget.php:47
-#: ../templates/elearning/loncapa_connected_link_edit.php:12
-#: ../app/views/course/ilias_interface/add_object.php:110
-#: ../app/views/course/ilias_interface/add_object.php:113
-#: ../app/views/course/ilias_interface/view_object.php:10
-#: ../app/views/course/dates/new_topic.php:46
-#: ../app/views/admin/role/add_plugin.php:28 ../app/views/start/add.php:27
-#: ../app/views/blubber/add_member_to_private.php:8
-msgid "Hinzufügen"
-msgstr "Add"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2926
-msgid "Fragen hinzufügen"
-msgstr "Add questions"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2936
-msgid "markierte Fragen "
-msgstr "marked questions "
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:2942
-msgid "Markierte Fragen löschen"
-msgstr "Delete selected questions"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:3140
-msgid "Polskalen:"
-msgstr "Pole scales:"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:3159
-msgid "Likertskalen:"
-msgstr "Lickert scales:"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:3178
-msgid "Multiple Choice:"
-msgstr "Multiple choice:"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:3197
-msgid "Freitextantworten:"
-msgstr "Free text reply:"
-
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:3299
-#: ../lib/evaluation/classes/EvaluationTreeEditView.class.php:3302
-msgid "Fehler beim verschieben."
-msgstr "Error while moving."
-
-#: ../lib/evaluation/classes/Evaluation.class.php:160
-msgid "Das Startdatum ist nach dem Stoppdatum."
-msgstr "Starting date is later than end date."
-
-#: ../lib/evaluation/classes/Evaluation.class.php:163
-msgid "Das Startdatum ist leider ungültig."
-msgstr "Unfortunately, the starting date is not valid."
-
-#: ../lib/evaluation/classes/Evaluation.class.php:189
-msgid "Das Stoppdatum ist leider ungültig."
-msgstr "Unfortunately, the end date is not valid."
-
-#: ../lib/evaluation/classes/Evaluation.class.php:191
-msgid "Das Stoppdatum ist vor dem Startdatum."
-msgstr "The end date is before the starting date."
-
-#: ../lib/evaluation/classes/Evaluation.class.php:316
-msgid "Nur ein Template kann freigegeben werden"
-msgstr "Only one template can be released"
-
-#: ../lib/evaluation/classes/Evaluation.class.php:468
-msgid "EvaluationAnswerUser"
-msgstr "Evaluation user answer"
-
-#: ../lib/evaluation/classes/Evaluation.class.php:473
-msgid "EvaluationGroupTemplate"
-msgstr "Evaluation group template"
-
-#: ../lib/evaluation/classes/Evaluation.class.php:478
-msgid "EvaluationTemplates"
-msgstr "Evaluation templates"
-
-#: ../lib/evaluation/classes/Evaluation.class.php:483
-msgid "EvaluationTemplatesUser"
-msgstr "Evaluation user templates"
-
-#: ../lib/evaluation/classes/Evaluation.class.php:488
-msgid "EvaluationUser"
-msgstr "Evaluation user"
-
-#: ../lib/evaluation/classes/Evaluation.class.php:523
-msgid "Der Titel darf nicht leer sein."
-msgstr "The title must not be empty."
-
-#: ../lib/evaluation/classes/Evaluation.class.php:527
-msgid "Ungültiges Objekt: Bei einer Vorlage wurde abgestimmt."
-msgstr "Invalid object: A voting for some template has taken place."
-
-#: ../lib/evaluation/classes/Evaluation.class.php:531
-msgid "Ungültiges Objekt: Eine aktive Evaluation wurde freigegeben."
-msgstr "Invalid Object: An active evaluation has been released."
-
-#: ../lib/evaluation/classes/db/EvaluationDB.class.php:81
-msgid "Keine Evaluation mit dieser ID gefunden."
-msgstr "No evaluation with this ID found."
-
-#: ../lib/evaluation/classes/db/EvaluationAnswerDB.class.php:63
-msgid "Keine Antwort mit dieser ID gefunden."
-msgstr "No reply with this ID found."
-
-#: ../lib/evaluation/classes/db/EvaluationQuestionDB.class.php:85
-msgid "Keine Frage mit dieser ID gefunden."
-msgstr "No question with this ID found."
-
-#: ../lib/evaluation/classes/db/EvaluationObjectDB.class.php:68
-msgid "Kein Titel gefunden."
-msgstr "No title found."
-
-#: ../lib/evaluation/classes/db/EvaluationObjectDB.class.php:173
-msgid "Stud.IP-System"
-msgstr "Stud.IP system"
-
-#: ../lib/evaluation/classes/db/EvaluationObjectDB.class.php:259
-msgid "Übergebene RangeID ist ungültig."
-msgstr "Invalid Range-ID transferred."
-
-#: ../lib/evaluation/classes/db/EvaluationObjectDB.class.php:265
-msgid "Übergebener Status ist ungültig."
-msgstr "Invalid status transferred."
-
-#: ../lib/evaluation/classes/db/EvaluationGroupDB.class.php:68
-msgid "Keine Gruppe mit dieser ID gefunden."
-msgstr "No group with this ID found."
-
-#: ../lib/evaluation/classes/EvaluationExportManagerCSV.class.php:138
-#: ../templates/register/form.php:33 ../app/controllers/questionnaire.php:371
-#: ../app/views/admin/user/new.php:18 ../app/views/admin/user/new.php:21
-#: ../app/views/admin/user/_results.php:13 ../app/views/admin/user/index.php:15
-#: ../app/views/admin/user/edit.php:37
-msgid "Benutzername"
-msgstr "Username"
-
-#: ../lib/evaluation/classes/EvaluationExportManagerCSV.class.php:215
-msgid "ExportManager::Ungültiger Typ."
-msgstr "ExportManager::Invalid type."
-
-#: ../lib/evaluation/classes/EvaluationExportManagerCSV.class.php:319
-msgid "ExportManager::Ungültiger Fragetyp."
-msgstr "ExportManager::Invalid question type."
-
-#: ../lib/evaluation/classes/EvaluationTreeShowUser.class.php:451
-msgid "Dieser Frage wurden keine Antworten zugeordnet!"
-msgstr "No reply has been assigned to this question!"
-
-#: ../lib/evaluation/classes/EvaluationTree.class.php:86
-msgid "Fehler in EvaluationTree: Es wurde keine evalID übergeben"
-msgstr "Error in evaluation tree: No evalID has been transferred"
-
-#: ../lib/evaluation/classes/EvaluationAnswer.class.php:208
-msgid ""
-"Nur pseudonyme Abstimmung erlaubt! Neue ID mit StudipObject::createNewID () "
-"erzeugen"
-msgstr ""
-"Pseudonymous vote allowed, only! Create new ID with StudipObject::"
-"createNewID ()"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:55
-#: ../app/controllers/my_institutes.php:48
-msgid "Datenbankfehler"
-msgstr "Database error"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:100
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:793
-#, php-format
-msgid "Sie haben keinen Zugriff auf diesen Bereich."
-msgstr "You do not have access to this area."
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:125
-msgid "Gefundene öffentliche Evaluationsvorlagen:"
-msgstr "Public evaluation templates found:"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:138
-msgid "Ansehen"
-msgstr "View"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:164
-msgid "Eigene Evaluationsvorlagen:"
-msgstr "Your personal evaluation templates:"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:173
-msgid "Freigeben"
-msgstr "Released"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:196
-msgid "Keine eigenen Evaluationsvorlagen vorhanden."
-msgstr "No personal evaluation template available."
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:254
-#: ../app/views/course/wizard/steps/lvgroups/index.php:43
-#: ../app/views/course/lvgselector/form.php:50
-#: ../app/views/course/lvgselector/index.php:47
-#: ../app/views/files_dashboard/search.php:32
-#: ../app/views/admin/autoinsert/manual.php:34
-#: ../app/views/admin/autoinsert/index.php:24
-#: ../app/views/admin/plugin/search.php:9
-msgid "Suchergebnisse"
-msgstr "Search results"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:273
-msgid "Noch nicht gestartete Evaluationen: "
-msgstr "Evaluations not started yet:"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:279
-#: ../app/views/resources/global_locks/_add_edit_form.php:8
-#: ../app/views/resources/room_request/_add_edit_form.php:11
-#: ../app/views/resources/resource/delete_bookings.php:9
-#: ../app/views/course/block_appointments/index.php:28
-msgid "Startdatum"
-msgstr "Starting date"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:294
-msgid "Keine neuen Evaluationen vorhanden."
-msgstr "No new evaluations available."
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:310
-msgid "Laufende Evaluationen:"
-msgstr "Running evaluations:"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:315
-#: ../app/views/news/edit_news.php:82 ../app/views/news/edit_news.php:89
-#: ../app/views/news/admin_news.php:90 ../app/views/news/_actions.php:8
-#: ../app/views/admin/user/edit.php:262
-msgid "Ablaufdatum"
-msgstr "End date"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:318
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:353
-#: ../app/views/oer/mymaterial/statistics.php:17
-#: ../app/views/resources/export/resource_bookings.php:33
-#: ../app/views/resources/resource/export_bookings.php:33
-msgid "Exportieren"
-msgstr "Export"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:329
-msgid "Keine laufenden Evaluationen vorhanden."
-msgstr "No running evaluation available."
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:344
-msgid "Beendete Evaluationen:"
-msgstr "Finished evaluations:"
-
-#: ../lib/evaluation/evaluation_admin_overview.inc.php:364
-msgid "Keine gestoppten Evaluationen vorhanden."
-msgstr "No stopped evaluations available."
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:79
-msgid "Polskala"
-msgstr "Pole scale"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:91
-#: ../lib/evaluation/evaluation_admin_template.lib.php:153
-#: ../lib/evaluation/evaluation_admin_template.lib.php:214
-#: ../lib/evaluation/evaluation_admin_template.lib.php:275
-msgid "Neue Vorlage erstellen."
-msgstr "Create a new template."
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:123
-#: ../lib/evaluation/evaluation_admin_template.lib.php:184
-#: ../lib/evaluation/evaluation_admin_template.lib.php:246
-#: ../lib/evaluation/evaluation_admin_template.lib.php:306
-msgid "Ausgewählte Vorlage bearbeiten."
-msgstr "Edit selected template."
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:140
-msgid "Likertskala"
-msgstr "Lickert scale"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:201
-msgid "Multiple Choice"
-msgstr "Multiple choice"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:264
-msgid "Freitext-Antwort"
-msgstr "Free text reply"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:339
-msgid "<b>Freie Antworten definieren</b>"
-msgstr "<b>Define free replies</b>"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:349
-msgid "Multiple Choice erstellen"
-msgstr "Create multiple choice"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:350
-msgid "Multiple Choice bearbeiten"
-msgstr "Edit multiple choice"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:354
-msgid "Likertskala erstellen"
-msgstr "Create Lickert scale"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:355
-msgid "Likertskala bearbeiten"
-msgstr "Edit Lickert scale"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:359
-msgid "Polskala erstellen"
-msgstr "Create Pole scale"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:360
-msgid "Polskala bearbeiten"
-msgstr "Edit Pole scale"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:438
-msgid ""
-"Geben Sie hier einen Namen für Ihre Vorlage ein. Wenn Sie eine systemweite "
-"Vorlage bearbeiten, und speichern, wird eine neue Vorlage für Sie persönlich "
-"angelegt."
-msgstr ""
-"Please give your template a name. If you edit and save a systemwide "
-"template, then a new personal template will be created."
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:446
-msgid "Mehrfachantwort erlaubt"
-msgstr "Multiple reply allowed"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:537
-msgid "Beschriftung erste Antwort"
-msgstr "Label of first reply"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:556
-#: ../lib/evaluation/evaluation_admin_template.lib.php:580
-msgid "Beschriftung letzte Antwort"
-msgstr "Label of last reply"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:597
-msgid "Anzahl Abstufungen"
-msgstr "Number of nuances"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:694
-msgid "Ausweichantwort"
-msgstr "Fallback reply"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:813
-msgid "Freitextvorlage erstellen"
-msgstr "Create free text template"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:814
-msgid "Freitextvorlage bearbeiten"
-msgstr "Edit free text template"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:861
-msgid ""
-"Geben Sie hier einen Namen für Ihre Vorlage ein. Ändern Sie den Namen, um "
-"eine neue Vorlage anzulegen."
-msgstr ""
-"Please give your template a name. Change the name to create a new template."
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:869
-msgid "Anzahl Zeilen"
-msgstr "Number of lines"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:977
-msgid "Vorschau der Evaluation"
-msgstr "Evaluation preview"
-
-#: ../lib/evaluation/evaluation_admin_template.lib.php:983
-msgid "Zurück zur Evaluations-Verwaltung"
-msgstr "Back to evaluation management"
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:166
-msgid "Keine Berechtigung zum Löschen."
-msgstr "You do not have the permsission to delete."
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:194
-msgid "Diese Option gibt es nicht"
-msgstr "This option is not available"
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:196
-msgid "Unbekanntes Objekt"
-msgstr "Unknown object"
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:239
-msgid ""
-"Dem Template wurden keine Antworten zugewiesen oder keine der Antworten  "
-"enthielt einen Text. Fügen Sie Antworten an, oder löschen Sie das Template."
-msgstr ""
-"No reply has been assigned to this template or none of the replies contains "
-"any text. Add at least one reply or delete the template."
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:249
-msgid ""
-"Leere Antworten sind nicht zulässig, löschen Sie betreffende Felder oder "
-"geben Sie einen Text ein."
-msgstr "Replies should not be empty. Fill in some text or delete empty fields."
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:259
-msgid "Geben Sie eine Ausweichantwort ein oder deaktivieren Sie diese."
-msgstr "Enter a fallback reply or deactivate it."
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:264
-msgid "Geben Sie einen Namen für die Vorlage ein."
-msgstr "Give this template a name."
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:270
-#: ../lib/evaluation/evaluation_admin_template.inc.php:278
-#: ../lib/evaluation/evaluation_admin_template.inc.php:657
-msgid "Fehler beim Speichern."
-msgstr "Error while saving."
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:299
-msgid "Antwortenvorlagen"
-msgstr "Reply templates"
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:378
-#: ../templates/shared/pagechooser.php:27 ../templates/admin/topLinks.php:22
-#: ../templates/pagination/buttons.php:11 ../templates/pagination/links.php:11
-#: ../app/views/messages/overview.php:47 ../app/views/messages/overview.php:66
-#: ../app/views/admin/install/layout.php:34
-#: ../app/views/admin/install/layout.php:39
-msgid "zurück"
-msgstr "back"
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:378
-msgid "Zurück zur Auswahl"
-msgstr "Back to selection"
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:383
-#, php-format
-msgid "Weisen Sie der links %sausgewählten%s Frage hier Antworten zu:"
-msgstr "Please assign some replies to the question %sselected%s at the left:"
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:430
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1587
-msgid "Anfang"
-msgstr "Beginning"
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:432
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1631
-#: ../app/controllers/consultation/export.php:28
-#: ../app/controllers/consultation/export.php:61
-#: ../app/controllers/resources/export.php:294
-#: ../app/controllers/resources/export.php:407
-#: ../app/controllers/course/dates.php:437
-#: ../app/controllers/calendar/calendar.php:352
-#: ../app/views/consultation/admin/create.php:60
-#: ../app/views/resources/messages/index.php:133
-#: ../app/views/resources/admin/global_locks.php:15
-#: ../app/views/resources/resource/temporary_permissions.php:198
-#: ../app/views/admin/courseplanning/nonconform.php:10
-#: ../app/views/admin/semester/edit.php:64
-#: ../app/views/admin/semester/edit.php:88
-#: ../app/views/calendar/single/_event_data.php:8
-#: ../app/views/calendar/single/edit.php:59
-#: ../app/views/calendar/single/_tooltip.php:7
-msgid "Ende"
-msgstr "End"
-
-#: ../lib/evaluation/evaluation_admin_template.inc.php:525
-msgid "Freitext"
-msgstr "Free text"
-
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:85
-msgid "Fehler beim Anlegen einer Gruppe"
-msgstr "Error while adding a group"
-
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:102
-msgid "Fehler beim Anlegen einer Evaluation"
-msgstr "Error while adding an evaluation"
-
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:113
-msgid "Es wurde eine ungültige Evaluations-ID übergeben."
-msgstr "An invalid evaluation-ID has been transferred."
-
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:115
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:119
-msgid "Es wurde keine Evaluations-ID übergeben"
-msgstr "No evaluation-ID has been transferred"
-
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:149
-msgid ""
-"An dieser Evaluation hat bereits jemand teilgenommen. Sie darf nicht mehr "
-"verändert werden."
-msgstr ""
-"Because a user has already participated in this evaluation, no further "
-"changes are allowed."
-
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:175
-msgid ""
-"Sie haben in einem Bereich, in welchem diese Evaluation hängt, nicht "
-"aussreichene Rechte, um diese Eval zu bearbeiten."
-msgstr ""
-"You do not have sufficient permissions in one area assigned to this "
-"evaluation to be able to edit it."
-
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:177
-#, php-format
-msgid ""
-"Sie haben in %s Bereichen, in denen diese Evaluation hängt, nicht "
-"aussreichene Rechte, um diese Eval zu bearbeiten."
-msgstr ""
-"You do not have sufficient permissions in %s areas assigned to this "
-"evaluation to be able to edit it."
-
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:193
-msgid "Zur Evaluations-Verwaltung"
-msgstr "To evaluation management"
-
-#: ../lib/evaluation/evaluation_admin_edit.inc.php:224
-msgid ""
-"Erstellen Sie nun eine Evaluation.<br> Der erste Gruppierungsblock ist "
-"bereits angelegt worden. Wenn Sie ihn öffnen, können Sie dort weitere "
-"Gruppierungsblöcke oder Fragenblöcke anlegen."
-msgstr ""
-"Now you can create an evaluation.<br> The first content block has already "
-"been inserted. After opening it, you can add further content blocks or "
-"question blocks."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:40
-msgid "Evaluations-Verwaltung"
-msgstr "Evaluation management"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:237
-msgid "Vorschau dieser öffentlichen Evaluationsvorlage."
-msgstr "Preview of this public evaluation template."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:252
-msgid ""
-"Diese öffentliche Evaluationsvorlagen zu den eigenen Evaluationsvorlagen "
-"kopieren"
-msgstr ""
-"Copy this public evaluation templates to your personal evaluation templates "
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:258
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:278
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:291
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:306
-msgid "Aufklappen"
-msgstr "Open"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:266
-msgid "als öffentliche Evaluationsvorlage Freigeben"
-msgstr "release this evaluation template as public"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:266
-msgid "Freigabe entziehen"
-msgstr "Withdraw release"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:267
-msgid "Die Freigabe für diese Evaluationsvorlage entziehen"
-msgstr "Withdraw release of this evaluation template"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:267
-msgid "Diese Evaluationsvorlage öffentlich freigeben"
-msgstr "Release this evaluation template as public"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:270
-msgid "Kopie erstellen"
-msgstr "Create copy"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:270
-msgid "Evaluationsvorlage kopieren"
-msgstr "Copy evaluation template"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:272
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:284
-#: ../app/views/evaluation/_evaluation.php:16
-msgid "Evaluation bearbeiten"
-msgstr "Edit evaluation"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:274
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:286
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:299
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:313
-#: ../app/views/evaluation/_evaluation.php:28
-msgid "Evaluation löschen"
-msgstr "Delete evaluation"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:282
-#: ../lib/navigation/StartNavigation.php:26
-#: ../app/views/admin/courseplanning/nonconform.php:9
-msgid "Start"
-msgstr "Start"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:282
-msgid "Evaluation starten"
-msgstr "Start evaluation"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:295
-#: ../lib/evaluation/evaluation_show.lib.php:389
-msgid "Stop"
-msgstr "Stop"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:295
-#: ../app/views/evaluation/_evaluation.php:20
-msgid "Evaluation stoppen"
-msgstr "Terminate evaluation"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:297
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:311
-msgid "Evaluation zurücksetzen"
-msgstr "Reset evaluation"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:298
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:312
-#: ../app/views/evaluation/_evaluation.php:31
-msgid "Evaluation exportieren"
-msgstr "Export evaluation"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:310
-#: ../lib/evaluation/evaluation_show.lib.php:396
-msgid "Fortsetzen"
-msgstr "Continue"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:310
-#: ../lib/evaluation/evaluation_show.lib.php:398
-#: ../app/views/evaluation/_evaluation.php:24
-msgid "Evaluation fortsetzen"
-msgstr "Continue evaluation"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:525
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:533
-#: ../app/controllers/admin/courses.php:1023
-#: ../app/views/admin/plugin/index.php:140
-#: ../app/views/admin/plugin/default_activation.php:41
-msgid "Einstellungen speichern"
-msgstr "Save settings"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:563
-msgid ""
-"Auf dieser Seite haben Sie eine Übersicht aller in dem ausgewählten Bereich "
-"existierenden Evaluationen sowie Ihrer eigenen Evaluationsvorlagen."
-msgstr ""
-"This page provides you with an overview on all evaluations in the selected "
-"area as well as your own evaluation templates."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:564
-#: ../app/controllers/files_dashboard/sidebar.php:60
-msgid "Ansicht"
-msgstr "View"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:564
-msgid ""
-"Sie können eine Evaluation aufklappen und dann Bereichen zuordnen und ihre "
-"Laufzeit bestimmen."
-msgstr ""
-"You can open an evaluation, allocate it to some areas and determine its run "
-"time."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:574
-msgid "Neue Evaluationsvorlage"
-msgstr "New evaluation template"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:677
-msgid "Evaluationen aus folgendem Bereich anzeigen"
-msgstr "Show evaluations from the following area"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:681
-#: ../lib/evaluation/evaluation_show.lib.php:320
-#: ../app/controllers/room_management/planning.php:87
-#: ../app/controllers/room_management/planning.php:387
-#: ../app/controllers/room_management/planning.php:1110
-#: ../app/views/shared/log_event/show.php:19
-#: ../app/views/evaluation/_evaluation.php:44
-#: ../app/views/event_log/show.php:78
-msgid "Anzeigen"
-msgstr "Display"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:681
-msgid "Evaluationen aus gewähltem Bereich anzeigen"
-msgstr "Display evaluations in the selected area"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:687
-msgid "Nach weiteren Bereichen suchen"
-msgstr "Search further areas"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:694
-msgid "Weitere Bereiche suchen"
-msgstr "Search for further areas"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:714
-msgid "Öffentliche Evaluationsvorlage suchen"
-msgstr "Search public evaluation templates"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:718
-msgid "Name der Vorlage"
-msgstr "Template name"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:730
-msgid "Öffentliche Vorlage suchen"
-msgstr "Search public templates"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:806
-#, php-format
-msgid "Bitte einen Suchbegriff mit mindestens %d Buchstaben eingeben."
-msgstr "Please enter a search string with at least %d characters."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:808
-msgid "Es wurden keine passenden öffentlichen Evaluationsvorlagen gefunden."
-msgstr "No matching public evaluation template found."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:810
-#, php-format
-msgid "Es wurde(n) %d passende öffentliche Evaluationsvorlagen gefunden."
-msgstr "%d matching public evaluation templates found."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:816
-msgid "Sie haben nicht die Berechtigung diese Evaluation zu exportieren."
-msgstr "You do not have the permission to export this evaluation."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:829
-msgid "Fehler beim Exportieren"
-msgstr "Error while exporting"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:832
-msgid ""
-"Die Daten wurden erfolgreich exportiert. Sie können die Ausgabedatei jetzt "
-"herunterladen."
-msgstr ""
-"All data have successfully been exported. You may now download the output "
-"file."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:834
-#, php-format
-msgid "Bitte klicken Sie %s um die Datei herunter zu laden."
-msgstr "Click %s for downloading this file."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:834
-msgid "auf diese Verknüpfung"
-msgstr "on this link"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:858
-#, php-format
-msgid ""
-"Die Evaluation %s ist einem Bereich zugeordnet, für den Sie keine "
-"Veränderungsrechte besitzen."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:860
-#, php-format
-msgid ""
-"Die Evaluation %s ist %s Bereichen zugeordnet, für die Sie keine "
-"Veränderungsrechte besitzen."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:864
-msgid "Der Besitzer wurde durch eine systeminterne Nachricht informiert."
-msgstr "The user has been informed by internal system message."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:868
-#, php-format
-msgid ""
-"Benutzer **%s** hat versucht eine unzulässige Änderung an Ihrer Evaluation **"
-"%s** vorzunehmen."
-msgstr "User **%s** has illegally tried to change your evaluation %s**."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:878
-msgid "Versuchte Änderung an Ihrer Evaluation"
-msgstr "Attempted change in your evaluation"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:890
-#, php-format
-msgid ""
-"Benutzer **%s** hat versucht eine unzulässige Änderung an Ihrem Template **"
-"%s** vorzunehmen."
-msgstr "User **%s** has illegally tried to change your template %s**."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:899
-msgid "Versuchte Änderung an Ihrem Template"
-msgstr "Attempted change in your template"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:901
-#, php-format
-msgid ""
-"Sie besitzen keine Rechte für das Tempate <b>%s</b>. Der Besitzer wurde "
-"durch eine systeminterne Nachricht informiert."
-msgstr ""
-"You have no permissions for the template <b>%s</b>. The owner has been "
-"informed via an internal system message."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:913
-#, php-format
-msgid ""
-"Die Evaluationsvorlage %s kann jetzt nicht mehr von anderen Benutzern "
-"gefunden werden."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:921
-#, php-format
-msgid ""
-"Die Evaluationsvorlage %s kann jetzt von anderen Benutzern gefunden werden."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:939
-#, php-format
-msgid ""
-"Die öffentliche Evaluationsvorlage <b>%s</b> wurde zu den eigenen "
-"Evaluationsvorlagen kopiert."
-msgstr ""
-"The public evaluation template <b>%s</b> has been copied to your personal "
-"evaluation templates."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:945
-msgid "Die Evaluation wurde nicht gestartet."
-msgstr "This evaluation has not been started yet."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:953
-#, php-format
-msgid "Die Evaluation %s wurde gestartet."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:959
-msgid "Die Evaluation wurde nicht beendet."
-msgstr "The evaluation has not been terminated."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:968
-#, php-format
-msgid "Die Evaluation %s wurde beendet."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:975
-msgid "Die Evaluation wurde nicht fortgesetzt."
-msgstr "The evaluation has not been continued. "
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:984
-#, php-format
-msgid "Die Evaluation %s wurde fortgesetzt."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:991
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:999
-msgid "Die Evaluation wurde nicht zurücksetzen."
-msgstr "The evaluation has not been reset."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:993
-#, php-format
-msgid ""
-"Die Evaluation %s wirklich zurücksetzen? Dabei werden alle bisher "
-"abgegebenen Antworten gelöscht!"
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1012
-#, php-format
-msgid "Die Evaluation %s wurde zurückgesetzt."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1017
-#, php-format
-msgid "Die Evaluation %s wurde nicht zurückgesetzt."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1029
-#, php-format
-msgid "Die Evaluationsvorlage %s wurde kopiert."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1035
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1045
-msgid "Die Evaluation wurde nicht gelöscht."
-msgstr "The evaluation has not been deleted."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1038
-#, php-format
-msgid "Die Evaluationsvorlage %s wirklich löschen?"
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1038
-#, php-format
-msgid "Die Evaluation %s wirklich löschen?"
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1054
-#, php-format
-msgid "Die Evaluationsvorlage %s wurde gelöscht."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1054
-#, php-format
-msgid "Die Evaluation %s wurde gelöscht."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1060
-#, php-format
-msgid "Die Evaluationsvorlage %s wurde nicht gelöscht."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1060
-#, php-format
-msgid "Die Evaluation %s wurde nicht gelöscht."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1065
-#, php-format
-msgid "Die Evaluation %s wurde nicht verändert."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1072
-msgid ""
-"Die Evaluation wurde nicht ausgehängt und zu den eigenen Evaluationsvorlagen "
-"verschoben."
-msgstr ""
-"The evaluation has not been removed and copied to your personal evaluation "
-"templates."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1086
-#, php-format
-msgid ""
-"Die Evaluation %s wurde aus allen Bereichen ausgehängt und zu den eigenen "
-"Evaluationsvorlagen verschoben."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1091
-#, php-format
-msgid "Die Evaluation %s wurde angelegt."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1098
-#, php-format
-msgid "Die Evaluation %s wurde mit den Veränderungen gespeichert."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1113
-msgid "Die Einstellungen zur Startzeit wurden nicht verändert."
-msgstr "The settings about the start date have not been changed."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1137
-msgid "Die Einstellungen zur Endzeit wurden nicht verändert."
-msgstr "The settings about the end date have not been changed."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1153
-#, php-format
-msgid "Die Evaluationsvorlage %s wurde als Evaluation angelegt."
-msgstr ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1174
-msgid "Fehler beim Einhängen von Bereichen."
-msgstr "Error while incorporating areas."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1179
-#, php-format
-msgid "Die Evaluation wurde in %s Bereiche eingehängt."
-msgstr "The evaluation has been associated to %s areas."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1179
-#, php-format
-msgid "Die Evaluation wurde in einen Bereich eingehängt."
-msgstr "The evaluation has been associated to one area."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1206
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1284
-msgid "Fehler beim Kopieren von Evaluationen in Bereiche."
-msgstr "Error while copying evaluations to areas."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1212
-#, php-format
-msgid "Die Evaluation wurde in %s Bereiche kopiert."
-msgstr "The evaluation has been copied to %s areas."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1212
-#, php-format
-msgid "Die Evaluation wurde in einen Bereich kopiert."
-msgstr "The evaluation has been copied to one area."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1222
-#, php-format
-msgid ""
-"Sie wollen die Evaluation <b>%s</b> aus allen ihr zugeordneten Bereichen "
-"aushängen.<br>Soll die Evaluation gelöscht oder zu Ihren eigenen "
-"Evaluationsvorlagen verschoben werden?"
-msgstr ""
-"You requested to remove the evaluation <b>%s</b> from all areas it has been "
-"assigned to.<br>Shall the evaluation be deleted or shall it be moved into "
-"your personal evaluation templates?"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1246
-msgid ""
-"Sie wollen die Evaluation aus einem Bereich aushängen, für den Sie keine "
-"Berechtigung besitzten.<br> Die Aktion wurde nicht ausgeführt."
-msgstr ""
-"You requested to remove the evaluation from an area for which you do not "
-"have the required permissions.<br> The action has not been executed."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1248
-#, php-format
-msgid ""
-"Sie wollen die Evaluation aus %d Bereichen aushängen, für die Sie keine "
-"Berechtigung besitzten.<br> Die Aktion wurde nicht ausgeführt."
-msgstr ""
-"You requested to remove the evaluation from %d areas for which you do not "
-"have the required permissions.<br> The action has not been executed."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1269
-msgid "Fehler beim Aushängen von Bereichen."
-msgstr "Error while removing from areas."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1274
-#, php-format
-msgid "Die Evaluation wurde aus %s Bereichen ausgehängt."
-msgstr "The evaluation has been removed from %s areas."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1274
-#, php-format
-msgid "Die Evaluation wurde aus einem Bereich ausgehängt."
-msgstr "The evaluation has been removed from one area."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1278
-msgid ""
-"Sie ist nun keinem Bereich mehr zugeordnet und wurde zu den eigenen "
-"Evaluationsvorlagen verschoben."
-msgstr ""
-"From now on it is no longer allocated to any area and has been moved to your "
-"personal evaluation templates."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1293
-#, php-format
-msgid ""
-"Sie haben die Evaluation <b>%s</b> aus allen ihren Bereichen ausgehängt."
-msgstr ""
-"You have removed the evaluation <b>%s</b> from all areas it has been "
-"associated to."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1297
-msgid ""
-"Fehler beim Aushängen einer Evaluationen aus allen Bereichen auf die Sie "
-"Zugriff haben."
-msgstr "Error while removing an evaluation from all areas you have access to."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1307
-#, php-format
-msgid ""
-"Es wurden keine Veränderungen an der Evaluationsvorlage <b>%s</b> "
-"gespeichert."
-msgstr "No changes to evaluation template <b>%s</b> have been saved."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1313
-msgid "Es wurden keine Veränderungen gespeichert."
-msgstr "No changes saved."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1321
-msgid "Die Evaluation wurde gestartet."
-msgstr "Evaluation started."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1333
-msgid "Die Evaluation wurde beendet."
-msgstr "Evaluation terminated."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1368
-msgid "Sie besitzen keine Berechtigung eine Suche durchzuführen."
-msgstr "You do not have the permission to perform a search."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1374
-msgid "Bitte einen Suchbegriff eingeben."
-msgstr "Please enter a search string."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1376
-#, php-format
-msgid "Es wurde kein Bereich gefunden, der den Suchbegriff <b>%s</b> enthält."
-msgstr "No area containing search string <b>%s</b> found."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1378
-#, php-format
-msgid ""
-"Es wurden %s Bereiche gefunden, die den Suchbegriff <b>%s</b> enthalten."
-msgstr "%s areas containing search string <b>%s</b> found."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1414
-msgid "Die Erstellung einer Evaluation wurde abgebrochen."
-msgstr "Creation of the evaluation has been cancelled."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1421
-msgid "Fehler! Es wurde versucht, eine nicht vorhandene Aktion auszuführen."
-msgstr "Error! You are trying to carry out an action that is not available."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1428
-#, php-format
-msgid "An Ihrer Evaluation \"%s\" wurden von %s Änderungen vorgenommen."
-msgstr "Your evaluation \"%s\" has been changed by %s."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1464
-msgid "Zum vorherigen Bereich zurückkehren."
-msgstr "Go back to previous area."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1467
-msgid "Löschen."
-msgstr "Delete."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1468
-msgid "Zu den eigenen Evaluationsvorlagen verschieben."
-msgstr "Move to your own evaluation templates."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1570
-msgid "Einstellungen zur Start- und Endzeit:"
-msgstr "Settings about start and end date:"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1572
-msgid ""
-"Legen Sie fest, von wann bis wann alle eingehängten und kopierten Instanzen "
-"dieser Evaluationsvorlage in Stud.IP öffentlich sichtbar sein sollen."
-msgstr ""
-"Determine the period all copied or associated instances of this evaluation "
-"template should be visible within Stud.IP."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1573
-msgid ""
-"Legen Sie fest, von wann bis wann die Evaluation in Stud.IP öffentlich "
-"sichtbar sein soll."
-msgstr "Determine the period this evaluation should be visible within Stud.IP."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1596
-msgid "später manuell starten"
-msgstr "start manually later"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1601
-msgid "Startzeitpunkt:"
-msgstr "Starting date:"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1605
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1650
-#, php-format
-msgid "um %s Uhr"
-msgstr "at %s o'clock"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1611
-#: ../app/views/admin/banner/index.php:41
-#: ../app/views/questionnaire/edit.php:39
-msgid "sofort"
-msgstr "immediately"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1616
-#, php-format
-msgid "Startzeitpunkt war der <b>%s</b> um <b>%s</b> Uhr."
-msgstr "Starting date was <b>%s</b> at <b>%s</b>."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1640
-msgid "manuell beenden"
-msgstr "terminate manually"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1644
-msgid "Endzeitpunkt:"
-msgstr "Final date:"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1657
-msgid "Zeitspanne"
-msgstr "Period"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1671
-#, php-format
-msgid "%d Woche"
-msgid_plural "%d Wochen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1686
-msgid "Endzeitpunkt neu berechnen"
-msgstr "Re-calculate final date"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1687
-#, php-format
-msgid " (<b>%s</b> um <b>%s</b> Uhr)"
-msgstr " (<b>%s</b> at <b>%s</b>)"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1693
-#, php-format
-msgid "Endzeitpunkt war der <b>%s</b> um <b>%s</b> Uhr."
-msgstr "Final date was <b>%s</b> at <b>%s</b>."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1793
-msgid "aushängen"
-msgstr "remove"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1826
-msgid ""
-"Sie haben keine Berechtigung die Evaluation aus diesem Bereich auszuhängen."
-msgstr ""
-"You do not have the permission to remove the evaluation from this area."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1840
-msgid "Diese Evaluation wurde keinem Bereich zugeordnet."
-msgstr "This evaluation has not been assigned to any area."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1862
-msgid " können Sie Ihre Evaluation aus den verknüpften Bereichen entfernen."
-msgstr " you may remove your evaluation from all associated areas."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1918
-msgid "einhängen"
-msgstr "incorporate to"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1929
-msgid "kopieren"
-msgstr "copy"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1976
-msgid "Die Evaluation ist bereits diesem Bereich zugeordnet."
-msgstr "The evaluation has already been assigned to this area."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:1999
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2191
-msgid "Es wurden keine Ergebnisse aus diesem Bereich gefunden."
-msgstr "No results in this area found."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2014
-msgid ""
-"Sie können die Evaluation folgenden Bereichen zuordnen (Suchergebnisse):"
-msgstr ""
-"You may allocate the evaluation to the following areas (search results):"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2016
-msgid "Sie können die Evaluation folgenden Bereichen zuordnen:"
-msgstr "You may allocate the evaluation to the following areas:"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2018
-msgid ""
-"Hängen Sie die Evaluation in die gewünschten Bereiche ein (abhängige Kopie "
-"mit gemeinsamer Auswertung) oder kopieren Sie sie in Bereiche (unabhängige "
-"Kopie mit getrennter Auswertung)."
-msgstr ""
-"You have the choice: Allocate the evaluation to the selected areas (as "
-"linked copy with joined assessment) or copy it to the selected areas (as a "
-"new instance with separate assessment)."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2019
-msgid "Die Suche ergab keine Treffer."
-msgstr "No results for this search."
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2031
-msgid "Nach Bereichen suchen:"
-msgstr "Search for areas:"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2041
-msgid "Bereiche suchen"
-msgstr "Search for areas"
-
-#: ../lib/evaluation/evaluation_admin_overview.lib.php:2172
-msgid "Diesen Bereich anzeigen."
-msgstr "Display this area."
-
-#: ../lib/evaluation/evaluation_show.lib.php:74
-msgid "Vielen Dank für Ihre Teilnahme."
-msgstr "Thank you very much for your participation."
-
-#: ../lib/evaluation/evaluation_show.lib.php:78
-msgid "Sie haben an dieser Evaluation bereits teilgenommen."
-msgstr "You have already participated in this evaluation."
-
-#: ../lib/evaluation/evaluation_show.lib.php:95
-#, php-format
-msgid "Mit %s gekennzeichnete Fragen müssen beantwortet werden."
-msgstr "Questions depicted by %s must be answered."
-
-#: ../lib/evaluation/evaluation_show.lib.php:191
-#, php-format
-msgid "Es haben insgesamt <b>%s</b> Personen teilgenommen"
-msgstr "A total of <b>%s</b> user have taken part"
-
-#: ../lib/evaluation/evaluation_show.lib.php:194
-#, php-format
-msgid "Sie waren die einzige Person die teilgenommen hat"
-msgstr "You were the only participant"
-
-#: ../lib/evaluation/evaluation_show.lib.php:195
-#, php-format
-msgid "Es hat insgesamt <b>eine</b> Person teilgenommen"
-msgstr "Only <b>one</b> user has taken part"
-
-#: ../lib/evaluation/evaluation_show.lib.php:199
-#, php-format
-msgid "Es haben bisher <b>%s</b> Personen teilgenommen"
-msgstr "Up to now, <b>%s</b> users have taken part"
-
-#: ../lib/evaluation/evaluation_show.lib.php:202
-#, php-format
-msgid "Sie waren bisher der/die einzige Person die teilgenommen hat"
-msgstr "You are the only participant, yet"
-
-#: ../lib/evaluation/evaluation_show.lib.php:203
-#, php-format
-msgid "Es hat bisher <b>eine</b> Person teilgenommen"
-msgstr "Until now, <b>one</b> user has participated"
-
-#: ../lib/evaluation/evaluation_show.lib.php:208
-msgid ", Sie ebenfalls"
-msgstr ", including yourself"
-
-#: ../lib/evaluation/evaluation_show.lib.php:221
-#, php-format
-msgid "Die Evaluation wurde beendet am <b>%s</b> um <b>%s</b> Uhr."
-msgstr "This evaluation has been terminated on <b>%s</b> at <b>%s</b>."
-
-#: ../lib/evaluation/evaluation_show.lib.php:227
-#, php-format
-msgid ""
-"Die Evaluation wird voraussichtlich beendet am <b>%s</b> um <b>%s</b> Uhr."
-msgstr "This evaluation is likely to end on <b>%s</b> at <b>%s</b>."
-
-#: ../lib/evaluation/evaluation_show.lib.php:232
-#, php-format
-msgid "Sie können teilnehmen bis zum <b>%s</b> um <b>%s</b> Uhr."
-msgstr "You can take part until <b>%s</b> at <b>%s</b>."
-
-#: ../lib/evaluation/evaluation_show.lib.php:239
-msgid "Der Endzeitpunkt dieser Evaluation steht noch nicht fest."
-msgstr "The final date of this evaluation has not been determined yet."
-
-#: ../lib/evaluation/evaluation_show.lib.php:255
-msgid "Die Teilnahme war <b>nicht</b> anonym."
-msgstr "The participation was <b>not</b> anonymous."
-
-#: ../lib/evaluation/evaluation_show.lib.php:258
-#: ../app/views/questionnaire/evaluate.php:22
-#: ../app/views/questionnaire/answer.php:27
-msgid "Die Teilnahme ist anonym."
-msgstr "The participation is anonymous."
-
-#: ../lib/evaluation/evaluation_show.lib.php:261
-msgid ""
-"Dies ist eine personalisierte Evaluation. Ihre Angaben werden verknüpft mit "
-"Ihrem Namen gespeichert."
-msgstr ""
-"This is a personalised evaluation. Your replies will be saved, linked to "
-"your name."
-
-#: ../lib/evaluation/evaluation_show.lib.php:289
-#: ../templates/login_emailactivation.php:17
-#: ../templates/login_emailactivation.php:34 ../app/views/siteinfo/new.php:49
-#: ../app/views/siteinfo/edit.php:51
-#: ../app/views/course/members/select_course.php:29
-#: ../app/views/messages/write.php:175
-#: ../app/views/admin/webservice_access/test.php:26
-#: ../app/views/calendar/single/share.php:30
-msgid "Abschicken"
-msgstr "Submit"
-
-#: ../lib/evaluation/evaluation_show.lib.php:291
-msgid "Senden Sie Ihre Antworten hiermit ab."
-msgstr "Submit your replies now."
-
-#: ../lib/evaluation/evaluation_show.lib.php:298
-msgid "Sie können dieses Fenster jetzt schließen."
-msgstr "Now, you may close this window."
-
-#: ../lib/evaluation/evaluation_show.lib.php:307
-msgid "Vorschau aktualisieren."
-msgstr "Update preview."
-
-#: ../lib/evaluation/evaluation_show.lib.php:322
-msgid "Evaluation anzeigen."
-msgstr "Evaluation preview."
-
-#: ../lib/evaluation/evaluation_show.lib.php:370
-msgid "Evaluation bearbeiten."
-msgstr "Edit evaluation."
-
-#: ../lib/evaluation/evaluation_show.lib.php:377
-msgid "Evaluationsverwaltung."
-msgstr "Evaluation management."
-
-#: ../lib/evaluation/evaluation_show.lib.php:384
-msgid "Evaluation löschen."
-msgstr "Delete evaluation."
-
-#: ../lib/evaluation/evaluation_show.lib.php:391
-msgid "Evaluation stoppen."
-msgstr "Terminate evaluation."
-
-#: ../lib/evaluation/evaluation_show.lib.php:405
-msgid "Evaluation exportieren."
-msgstr "Export evaluation."
-
-#: ../lib/evaluation/evaluation.lib.php:174
-#: ../app/controllers/event_log.php:122
-msgid "Es sind Fehler aufgetreten."
-msgstr "Errors occurred."
-
-#: ../lib/evaluation/evaluation.lib.php:176
-#: ../lib/export/export_choose_xslt.inc.php:95
-#: ../app/controllers/course/scm.php:195 ../app/controllers/file.php:1960
-#: ../app/controllers/file.php:2045 ../app/controllers/files.php:802
-msgid "Es ist ein Fehler aufgetreten."
-msgstr "An error occurred."
-
-#: ../lib/evaluation/evaluation.lib.php:181
-msgid "Es ist kein Fehler aufgetreten"
-msgstr "No error occurred"
-
-#: ../lib/evaluation/evaluation.lib.php:188
-msgid "Datei: "
-msgstr "File: "
-
-#: ../lib/evaluation/evaluation.lib.php:189
-msgid "Zeile: "
-msgstr "Line: "
-
-#: ../lib/wiki.inc.php:66
-msgid "Keine Änderung vorgenommen."
-msgstr "No changes made."
-
-#: ../lib/wiki.inc.php:77
-msgid ""
-"Keine Änderung vorgenommen, da zwischenzeitlich die Editier-Berechtigung "
-"entzogen wurde."
-msgstr ""
-"No changes applied since the edit permissions have been revoked in the "
-"meantime."
-
-#: ../lib/wiki.inc.php:235 ../lib/functions.php:1326
-msgid " und "
-msgstr " and "
-
-#: ../lib/wiki.inc.php:243
-#, php-format
-msgid " (seit %d Minuten)"
-msgstr " (for %d minutes)"
-
-#: ../lib/wiki.inc.php:390
-msgid "Version "
-msgstr "Version "
-
-#: ../lib/wiki.inc.php:391
-#, php-format
-msgid ", geändert von %s am %s"
-msgstr ", last changes from %s at %s"
-
-#: ../lib/wiki.inc.php:422
-#, php-format
-msgid "Wollen Sie die untenstehende Version %s der Seite %s wirklich löschen?"
-msgstr "Are you sure to delete the following version %s of page %s?"
-
-#: ../lib/wiki.inc.php:425
-msgid ""
-"Diese Version ist derzeit aktuell. Nach dem Löschen wird die nächstältere "
-"Version aktuell."
-msgstr ""
-"This is the current version. After deleting it, the next youngest version "
-"will become the current version."
-
-#: ../lib/wiki.inc.php:428
-msgid ""
-"Diese Version ist die derzeit einzige. Nach dem Löschen ist die Seite "
-"komplett gelöscht."
-msgstr "This is the last version. Deleting it will delete the entire page."
-
-#: ../lib/wiki.inc.php:435
-#, php-format
-msgid ""
-"Wollen Sie die Seite %s wirklich vollständig - mit allen Versionen - löschen?"
-msgstr "Are you sure to completely delete page %s - including all versions?"
-
-#: ../lib/wiki.inc.php:437
-msgid ""
-"Sie sind im Begriff die Startseite zu löschen, die dann durch einen leeren "
-"Text ersetzt wird. Damit wären auch alle anderen Seiten nicht mehr direkt "
-"erreichbar."
-msgstr ""
-"You are about to delete the start page, which will then be replaced by an "
-"empty text box. Thereafter, all further pages can no longer be directly "
-"accessed."
-
-#: ../lib/wiki.inc.php:441
-msgid "Auf diese Seite verweist keine andere Seite."
-msgstr "No other pages are linked to this page."
-
-#: ../lib/wiki.inc.php:443
-msgid "Auf diese Seite verweist 1 andere Seite."
-msgstr "1 other page refers to this page."
-
-#: ../lib/wiki.inc.php:445
-#, php-format
-msgid "Auf diese Seite verweisen %s andere Seiten."
-msgstr "%s other pages refer to this page."
-
-#: ../lib/wiki.inc.php:466 ../lib/wiki.inc.php:509
-msgid "Sie haben keine Berechtigung, Seiten zu löschen."
-msgstr "You do not have the permission to delete pages."
-
-#: ../lib/wiki.inc.php:470
-msgid ""
-"Die Version, die Sie löschen wollen, ist nicht die aktuellste. Überprüfen "
-"Sie, ob inzwischen eine aktuellere Version erstellt wurde."
-msgstr ""
-"You do not want to delete the current. Please check whether a new version "
-"has been created in the meantime."
-
-#: ../lib/wiki.inc.php:479
-#, php-format
-msgid "Damit ist die Seite %s mit allen Versionen gelöscht."
-msgstr "Page %s including all versions has been deleted."
-
-#: ../lib/wiki.inc.php:485
-#, php-format
-msgid "Version %s der Seite %s gelöscht."
-msgstr "Version %s of the page %s deleted."
-
-#: ../lib/wiki.inc.php:513
-#, php-format
-msgid "Die Seite %s wurde mit allen Versionen gelöscht."
-msgstr "Page %s including all versions deleted."
-
-#: ../lib/wiki.inc.php:533 ../lib/wiki.inc.php:651
-msgid "In dieser Veranstaltung wurden noch keine WikiSeiten angelegt."
-msgstr "For this course no wiki page has been created."
-
-#: ../lib/wiki.inc.php:536
-msgid "Zeigt eine tabellarische Übersicht aller Wiki-Seiten an."
-msgstr "Shows an overview of all wiki-pages."
-
-#: ../lib/wiki.inc.php:544
-msgid "Seit Ihrem letzten Login gab es keine Änderungen."
-msgstr "No changes since your last login."
-
-#: ../lib/wiki.inc.php:547
-msgid ""
-"Zeigt eine tabellarische Übersicht neu erstellter bzw. bearbeiteter Wiki-"
-"Seiten an."
-msgstr "Shows an overview of all new or recently edited wiki-pages."
-
-#: ../lib/wiki.inc.php:551
-msgid "Fehler! Falscher Anzeigemodus:"
-msgstr "Error! False display mode:"
-
-#: ../lib/wiki.inc.php:625
-msgid "PDF-Ausgabe aller Wiki-Seiten"
-msgstr "Export all wiki pages as PDF"
-
-#: ../lib/wiki.inc.php:631
-msgid "Druckansicht aller Wiki-Seiten"
-msgstr "Print all wiki pages"
-
-#: ../lib/wiki.inc.php:654
-msgid ""
-"Zeigt eine tabellarische Übersicht aller Versionen dieser Wiki-Seite an."
-msgstr "Displays a tabular overview of all versions of this wiki page."
-
-#: ../lib/wiki.inc.php:761
-msgid "Suchbegriff zu kurz. Geben Sie mindestens drei Zeichen ein."
-msgstr "Search string too short. Please enter at least 3 characters."
-
-#: ../lib/wiki.inc.php:763
-#, php-format
-msgid "Die Suche nach &raquo;%s&laquo; lieferte keine Treffer."
-msgstr "No search results for &raquo;%s&laquo;."
-
-#: ../lib/wiki.inc.php:776
-#, php-format
-msgid "Treffer für Suche nach %s"
-msgstr "Search results for %s"
-
-#: ../lib/wiki.inc.php:778
-#, php-format
-msgid "in allen Versionen der Seite %s"
-msgstr "in all versions of page %s"
-
-#: ../lib/wiki.inc.php:780
-msgid "in aktuellen Versionen"
-msgstr "in all current versions"
-
-#: ../lib/wiki.inc.php:782
-msgid "in allen Versionen"
-msgstr "in all versions"
-
-#: ../lib/wiki.inc.php:793
-msgid "Treffer"
-msgstr "Research results"
-
-#: ../lib/wiki.inc.php:812 ../lib/wiki.inc.php:880
-#, php-format
-msgid ""
-"Weitere Treffer in %s älteren Version. Klicken Sie %shier%s, um diese "
-"Treffer anzuzeigen."
-msgstr ""
-"Further research results in %s older version. Click %shere%s for displaying "
-"them."
-
-#: ../lib/wiki.inc.php:814 ../lib/wiki.inc.php:882
-#, php-format
-msgid ""
-"Weitere Treffer in %s älteren Versionen. Klicken Sie %shier%s, um diese "
-"Treffer anzuzeigen."
-msgstr ""
-"Further research results in %s older versions. Click %shere%s for displaying "
-"them."
-
-#: ../lib/wiki.inc.php:893 ../lib/wiki.inc.php:1264
-msgid "Im Wiki suchen"
-msgstr "Search in the Wiki"
-
-#: ../lib/wiki.inc.php:924
-#, php-format
-msgid "Die Seite wird eventuell von %s bearbeitet."
-msgstr "This page is possibly being edited by %s."
-
-#: ../lib/wiki.inc.php:924
-msgid ""
-"Wenn Sie die Seite trotzdem ändern, kann ein Versionskonflikt entstehen."
-msgstr ""
-"If you nevertheless decide to edit this page, a version conflict could arise."
-
-#: ../lib/wiki.inc.php:924
-msgid ""
-"Es werden dann beide Versionen eingetragen und müssen von Hand "
-"zusammengeführt werden."
-msgstr "Both versions will then be saved and must be joined together by hand."
-
-#: ../lib/wiki.inc.php:924
-msgid "Klicken Sie auf Abbrechen, um zurückzukehren."
-msgstr "Click on Cancel to go back."
-
-#: ../lib/wiki.inc.php:928
-msgid "Sie bearbeiten die QuickLinks."
-msgstr "You edit QuickLinks."
-
-#: ../lib/wiki.inc.php:928
-msgid ""
-"Verwenden Sie Aufzählungszeichen (-, --, ---), um Verweise auf Seiten "
-"hinzuzufügen."
-msgstr "Choose the items (-, --, ---) for adding links to pages."
-
-#: ../lib/wiki.inc.php:931
-msgid ""
-"- WikiWikiWeb\n"
-"- BeispielSeite\n"
-"-- UnterSeite1\n"
-"-- UnterSeite2"
-msgstr ""
-"- WikiWikiWeb\n"
-"- SamplePage\n"
-"-- SubPage1\n"
-"-- SubPage2"
-
-#: ../lib/wiki.inc.php:945
-msgid "Der Editor dient zum Einfügen und Ändern von beliebigem Text."
-msgstr "Paste or edit text."
-
-#: ../lib/wiki.inc.php:948
-#, php-format
-msgid ""
-"Links entstehen automatisch aus Wörtern, die von zwei paar eckigen Klammern "
-"umgeben sind (Beispiel: [nop][[[/nop]%%Schlüsselwort%%[nop]]][/nop]"
-msgstr ""
-"Links are created automatically from words that are encapsuled by two "
-"brackets. Example: [nop][[[/nop]%%Keyword%%[nop]]][/nop]"
-
-#: ../lib/wiki.inc.php:949
-msgid "Tip"
-msgstr "Tip"
-
-#: ../lib/wiki.inc.php:968 ../lib/wiki.inc.php:1129
-#, php-format
-msgid "Version %s, letzte Änderung %s von %s."
-msgstr "Version %s, last changes on %s by %s."
-
-#: ../lib/wiki.inc.php:984 ../lib/wiki.inc.php:1033
-msgid "Wiki: "
-msgstr "Wiki:"
-
-#: ../lib/wiki.inc.php:985 ../lib/wiki.inc.php:1034
-#, php-format
-msgid "Wiki von \"%s\""
-msgstr "Wiki of \"%s\""
-
-#: ../lib/wiki.inc.php:986 ../lib/wiki.inc.php:1042
-#, php-format
-msgid "Seite: %s"
-msgstr "Page: %s"
-
-#: ../lib/wiki.inc.php:1065
-msgid ""
-"Alle Wiki-Seiten werden als große HTML-Datei zusammengefügt und in einem "
-"neuen Fenster angezeigt. Von dort aus können Sie die Datei abspeichern."
-msgstr ""
-"All wiki pages will be joined together as one large HTML file and shown in a "
-"new window. There you can then save the file."
-
-#: ../lib/wiki.inc.php:1133
-msgid "nach oben"
-msgstr "to the top"
-
-#: ../lib/wiki.inc.php:1146
-msgid "exportiert vom Stud.IP Wiki-Modul"
-msgstr "exported from Stud.IP Wiki module"
-
-#: ../lib/wiki.inc.php:1194
-#, php-format
-msgid ""
-"Sie betrachten eine alte Version, die nicht mehr geändert werden kann. "
-"Verwenden Sie dazu die %saktuelle Version%s."
-msgstr ""
-"This is an old version which cannot be edited. For this purpose use the "
-"%scurrent version%s."
-
-#: ../lib/wiki.inc.php:1205
-msgid "QuickLinks"
-msgstr "QuickLinks"
-
-#: ../lib/wiki.inc.php:1215
-msgid "erstellen"
-msgstr "create"
-
-#: ../lib/wiki.inc.php:1216 ../app/views/admin/domain/index.php:35
-#: ../app/views/admin/webservice_access/index.php:64
-msgid "bearbeiten"
-msgstr "edit"
-
-#: ../lib/wiki.inc.php:1221
-msgid "Keine QuickLinks vorhanden"
-msgstr "No QuickLinks available"
-
-#: ../lib/wiki.inc.php:1229
-msgid "Neue Wiki-Seite anlegen"
-msgstr "Create new wiki page"
-
-#: ../lib/wiki.inc.php:1238
-msgid "Seiten importieren"
-msgstr "Import pages"
-
-#: ../lib/wiki.inc.php:1246 ../app/controllers/wiki.php:47
-msgid "Wiki-Einstellungen ändern"
-msgstr "Edit wiki settings"
-
-#: ../lib/wiki.inc.php:1254 ../templates/wiki/pageversions.php:60
-msgid "Alle Versionen löschen"
-msgstr "Delete all versions"
-
-#: ../lib/wiki.inc.php:1270 ../lib/wiki.inc.php:1345
-msgid "Leseansicht"
-msgstr "Reading view"
-
-#: ../lib/wiki.inc.php:1279 ../lib/wiki.inc.php:1284
-msgid "Kommentare anzeigen"
-msgstr "Show comments"
-
-#: ../lib/wiki.inc.php:1290
-msgid "Kommentare ausblenden"
-msgstr "Hide comments"
-
-#: ../lib/wiki.inc.php:1298
-msgid "Änderungsliste"
-msgstr "Revision list"
-
-#: ../lib/wiki.inc.php:1302
-msgid "Text mit Autor/-innenzuordnung"
-msgstr "Text with author assignment"
-
-#: ../lib/wiki.inc.php:1306
-msgid "Alle Versionen dieser Seite"
-msgstr "All versions of this page"
-
-#: ../lib/wiki.inc.php:1322
-msgid "PDF-Ausgabe"
-msgstr "PDF output"
-
-#: ../lib/wiki.inc.php:1350
-msgid "Änderungen anzeigen"
-msgstr "Show changes"
-
-#: ../lib/wiki.inc.php:1354
-msgid "Text mit Autor/-innenzuordnung anzeigen"
-msgstr "Display text changes with author allocation"
-
-#: ../lib/wiki.inc.php:1366
-msgid "verstecken"
-msgstr "hide"
-
-#: ../lib/wiki.inc.php:1452
-msgid "Es gibt keine zu vergleichenden Versionen."
-msgstr "There are no comparative versions."
-
-#: ../lib/wiki.inc.php:1465
-msgid "Änderungen zu"
-msgstr "Changes of"
-
-#: ../lib/wiki.inc.php:1491
-msgid "Die Ansicht zeigt den Verlauf der Textänderungen einer Wiki-Seite."
-msgstr "Shows editing history of a wiki-page."
-
-#: ../lib/wiki.inc.php:1569
-msgid "Legende der Autor/-innenfarben:"
-msgstr "Legend of author colours:"
-
-#: ../lib/wiki.inc.php:1582
-msgid "Änderung von"
-msgstr "Changes of"
-
-#: ../lib/wiki.inc.php:1611
-msgid ""
-"Die Ansicht zeigt den Verlauf der Textänderungen einer Wiki-Seite mit einer "
-"Übersicht, welche Autor/-innen welche Textänderungen vorgenommen haben."
-msgstr ""
-"Shows the editing history of a wiki-page including information on the "
-"authors. "
-
-#: ../lib/modules/GradebookModule.class.php:48
-msgid "Gradebook"
-msgstr "Gradebook"
-
-#: ../lib/modules/GradebookModule.class.php:85
-#: ../app/views/course/gradebook/lecturers/index.php:3
-msgid "Erbrachte Leistungen"
-msgstr "Accomplished achievements"
-
-#: ../lib/modules/GradebookModule.class.php:101
-#: ../app/views/course/gradebook/lecturers/weights.php:7
-msgid "Gewichtungen"
-msgstr "Weighting"
-
-#: ../lib/modules/GradebookModule.class.php:105
-#: ../app/views/course/gradebook/lecturers/edit_custom_definitions.php:3
-msgid "Manuelle Leistungen definieren"
-msgstr "Define achievement manually"
-
-#: ../lib/modules/GradebookModule.class.php:109
-#: ../app/views/course/gradebook/lecturers/custom_definitions.php:6
-msgid "Noten manuell erfassen"
-msgstr "Record grades manually"
-
-#: ../lib/modules/GradebookModule.class.php:130
-msgid "Leistungen"
-msgstr "Achievements"
-
-#: ../lib/modules/GradebookModule.class.php:145
-msgid "Noten- und Fortschrittserfassung (Gradebook)"
-msgstr "Grade and progress recording (Gradebook)"
-
-#: ../lib/modules/GradebookModule.class.php:146
-msgid ""
-"Dieses Modul ermöglicht die manuelle und automatische Erfassung von Noten "
-"und Leistungen."
-msgstr ""
-"This modules allows you to record grades and achievements manually and "
-"automatically."
-
-#: ../lib/modules/GradebookModule.class.php:147
-#: ../lib/modules/CoursewareModule.class.php:136
-#: ../lib/modules/CoreDocuments.class.php:158
-#: ../lib/modules/CoreSchedule.class.php:105
-#: ../lib/modules/CoreScm.class.php:128
-#: ../lib/modules/CoreParticipants.class.php:181
-msgid "Lehr- und Lernorganisation"
-msgstr "Lecturing and learning organisation"
-
-#: ../lib/modules/GradebookModule.class.php:148
-msgid ""
-"automatische und manuelle Erfassung von gewichteten Leistungen;Export von "
-"Leistungen;persönliche Fortschrittskontrolle"
-msgstr ""
-"automatic and manual recording of weighted achievements;Export of "
-"achievements;personal progress supervision"
-
-#: ../lib/modules/CoreWiki.class.php:64
-#, php-format
-msgid "%1$d Wiki-Seite, %2$d Änderung(en)"
-msgid_plural "%1$d Wiki-Seiten, %2$d Änderung(en)"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/CoreWiki.class.php:78
-#, php-format
-msgid "%d Wiki-Seite"
-msgid_plural "%d Wiki-Seiten"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/CoreWiki.class.php:104 ../lib/modules/CoreWiki.class.php:107
-#: ../templates/wiki/show.php:3 ../templates/wiki/edit.php:4
-#: ../templates/wiki/list.php:36
-msgid "Wiki-Startseite"
-msgstr "Wiki start page"
-
-#: ../lib/modules/CoreWiki.class.php:121 ../lib/modules/CoreWiki.class.php:141
-msgid "Gemeinsames asynchrones Erstellen und Bearbeiten von Texten"
-msgstr "Collaborative work on text"
-
-#: ../lib/modules/CoreWiki.class.php:122
-msgid ""
-"Im Wiki-Web oder kurz \"Wiki\" können verschiedene Autor/-innen gemeinsam "
-"Texte, Konzepte und andere schriftliche Arbeiten erstellen und gestalten, "
-"dies allerdings nicht gleichzeitig. Texte können individuell bearbeitet und "
-"die Änderungen gespeichert werden. Das Besondere im Wiki ist, dass "
-"Studierende und Lehrende annähernd die gleichen Rechte (schreiben, lesen, "
-"ändern, löschen) haben, was sich nicht einschränken lässt. Das System "
-"erstellt eine Versionshistorie, mit der Änderungen nachvollziehbar werden. "
-"Einzelne Versionen können zudem auch gelöscht werden (nur Lehrende). Ein "
-"Export als pdf-Datei ist integriert."
-msgstr ""
-"Different authors can edit and create texts. A wiki consist of an unlimited "
-"number of pages everyone can create. The version history allows to toll back "
-"changes. Pages can be downloaded as PDF."
-
-#: ../lib/modules/CoreWiki.class.php:136
-msgid ""
-"Individuelle Bearbeitung von Texten;\n"
-"                            Versionshistorie;\n"
-"                            Druckansicht und PDF-Export;\n"
-"                            Löschfunktion für die aktuellste Seiten-"
-"Version;\n"
-"                            Keine gleichzeitige Bearbeitung desselben Textes "
-"möglich, nur nacheinander"
-msgstr ""
-"Create and edit texts;\n"
-"versions;\n"
-"Print and PDF-export;\n"
-"Delete current version;\n"
-"Simultaneous editing not possible"
-
-#: ../lib/modules/CoreWiki.class.php:142
-msgid ""
-"Im Wiki-Web oder kurz \"Wiki\" können verschiedene Autor/-innen gemeinsam "
-"Texte, Konzepte und andere schriftliche Arbeiten erstellen und gestalten. "
-"Dies allerdings nicht gleichzeitig. Texte können individuell bearbeitet und "
-"gespeichert werden. Das Besondere im Wiki ist, dass Studierende und Lehrende "
-"annähernd die gleichen Rechte (schreiben, lesen, ändern, löschen) haben, was "
-"gegenseitiges Vertrauen voraussetzt. Das System erstellt eine "
-"Versionshistorie, mit der Änderungen nachvollziehbar werden. Einzelne "
-"Versionen können zudem auch gelöscht werden (nur Lehrende). Eine "
-"Druckansicht und eine Exportmöglichkeit als PDF-Datei ist integriert."
-msgstr ""
-"The wiki allows multiple authors to create and edit texts. Simultaneous "
-"editing is NOT possible. Both lecturers and students have permission to edit "
-"the wiki, which requires some trust in each other. The history lists all "
-"changes. Lecturers may delete current versions. Pages can be printed or "
-"exported as PDF. "
-
-#: ../lib/modules/CoreWiki.class.php:151
-#: ../lib/modules/FeedbackModule.class.php:51
-#: ../lib/modules/ConsultationModule.class.php:93
-#: ../lib/modules/LtiToolModule.class.php:106
-msgid "Kommunikation und Zusammenarbeit"
-msgstr "Communication and collaboration"
-
-#: ../lib/modules/CoreAdmin.class.php:40
-msgid "Bearbeiten der Grundeinstellungen dieser Veranstaltung."
-msgstr "Manage basic settings of this course."
-
-#: ../lib/modules/CoreAdmin.class.php:43
-#: ../lib/modules/CoreStudygroupAdmin.class.php:38
-msgid "Infobild"
-msgstr "Course picture"
-
-#: ../lib/modules/CoreAdmin.class.php:45
-msgid "Infobild dieser Veranstaltung bearbeiten oder löschen."
-msgstr "Edit or delete picture of this course."
-
-#: ../lib/modules/CoreAdmin.class.php:50
-msgid ""
-"Zuordnung dieser Veranstaltung zu Studienbereichen für die Darstellung im "
-"Verzeichnis aller Veranstaltungen."
-msgstr "Assigned fields of study for course directory."
-
-#: ../lib/modules/CoreAdmin.class.php:55 ../lib/navigation/MVVNavigation.php:64
-#: ../app/controllers/admin/courses.php:1035
-#: ../app/controllers/admin/courses.php:1036
-msgid "LV-Gruppen"
-msgstr "Course group"
-
-#: ../lib/modules/CoreAdmin.class.php:57
-msgid ""
-"Zuordnung der Veranstaltung zu Lehrveranstaltungsgruppen um die Einordnung "
-"innerhalb des Modulverzeichnisses festzulegen."
-msgstr ""
-"Assign the course to course groups for defining the placement of the course "
-"inside the module directory."
-
-#: ../lib/modules/CoreAdmin.class.php:63
-msgid "Regelmäßige Veranstaltungszeiten, Einzeltermine und Ortsangaben ändern."
-msgstr "Edit periodic and single course dates and room assignments."
-
-#: ../lib/modules/CoreAdmin.class.php:67
-#: ../app/controllers/admin/courses.php:1063
-#: ../app/controllers/admin/courses.php:1100
-#: ../app/views/resources/admin/configuration.php:59
-#: ../app/views/course/timesrooms/_regularEvents.php:58
-#: ../app/views/admin/courses/_course.php:94
-#: ../app/views/admin/courses/courses.php:133
-msgid "Raumanfragen"
-msgstr "Room request"
-
-#: ../lib/modules/CoreAdmin.class.php:69
-msgid "Raumanfragen zu Veranstaltungszeiten verwalten."
-msgstr "Manage room requests for course dates here."
-
-#: ../lib/modules/CoreAdmin.class.php:75
-msgid ""
-"Zugangsbeschränkungen, Anmeldeverfahren oder einen Passwortschutz für diese "
-"Veranstaltung einrichten."
-msgstr ""
-"Set access restrictions, admission procedures or password protection for "
-"your course."
-
-#: ../lib/modules/CoreAdmin.class.php:78
-#: ../lib/modules/CoreParticipants.class.php:146
-#: ../lib/navigation/AdminNavigation.php:198
-#: ../app/controllers/course/members.php:1324
-#: ../app/controllers/admin/courses.php:996
-#: ../app/controllers/admin/courses.php:997
-#: ../app/views/admin/additional/index.php:4
-msgid "Zusatzangaben"
-msgstr "Additional information"
-
-#: ../lib/modules/CoreAdmin.class.php:80
-msgid "Vorlagen zur Erhebung weiterer Angaben von Teilnehmenden auswählen."
-msgstr "Choose template for additional questionnaire for participants."
-
-#: ../lib/modules/CoreAdmin.class.php:89
-#: ../lib/modules/CoreStudygroupAdmin.class.php:42
-msgid "Erstellen und bearbeiten von Fragebögen."
-msgstr "Create and edit questionnaires."
-
-#: ../lib/modules/CoreAdmin.class.php:94
-#: ../lib/modules/CoreStudygroupAdmin.class.php:46
-msgid "Richten Sie fragebogenbasierte Umfragen und Lehrevaluationen ein."
-msgstr "Create questionnaires and teaching evaluations."
-
-#: ../lib/modules/CoreAdmin.class.php:108
-#: ../app/controllers/course/grouping.php:89
-#: ../app/views/course/details/index.php:143
-msgid "Unterveranstaltungen"
-msgstr "Sub-courses"
-
-#: ../lib/modules/CoreAdmin.class.php:111
-msgid ""
-"Ordnen Sie dieser Veranstaltung eine oder mehrere Unterveranstaltungen zu."
-msgstr "Assign one or more sub-courses to this course."
-
-#: ../lib/modules/CoreAdmin.class.php:120
-#: ../app/controllers/course/grouping.php:48
-msgid "Zuordnung zu Hauptveranstaltung"
-msgstr "Assignment to main courses"
-
-#: ../lib/modules/CoreAdmin.class.php:123
-msgid ""
-"Ordnen Sie diese Veranstaltung einer bestehenden Hauptveranstaltung zu oder "
-"lösen Sie eine bestehende Zuordnung."
-msgstr ""
-"Assign this course to an existing main course or an existing assignment."
-
-#: ../lib/modules/CoursewareModule.class.php:39
-#: ../lib/modules/CoursewareModule.class.php:103
-#: ../lib/modules/CoursewareModule.class.php:105
-#: ../lib/modules/CoursewareModule.class.php:135
-#: ../lib/navigation/ContentsNavigation.php:37
-#: ../app/controllers/course/courseware.php:20
-#: ../app/controllers/contents/courseware.php:19
-msgid "Courseware"
-msgstr ""
-
-#: ../lib/modules/CoursewareModule.class.php:113
-#, fuzzy
-msgid "neue Seiten"
-msgstr "New pages"
-
-#: ../lib/modules/CoursewareModule.class.php:130
-#: ../lib/modules/CoursewareModule.class.php:138
-msgid "Interaktive, multimediale Lernmodule erstellen und bereitstellen."
-msgstr ""
-
-#: ../lib/modules/CoursewareModule.class.php:131
-#: ../lib/modules/CoursewareModule.class.php:139
-msgid ""
-"Mit der Courseware können Sie interaktive, multimediale Lernmodule erstellen "
-"und nutzen.\n"
-"                Die Module sind in Kapitel, Unterkapitel und Abschnitte "
-"unterteilt und können aus Textblöcken, Videosequenzen,\n"
-"                Aufgaben (benötigt das Vips-Plugin) und "
-"Kommunkationselementen bestehen. Fertige Module können exportiert und\n"
-"                in andere Kurse oder andere Installationen importiert werden."
-msgstr ""
-
-#: ../lib/modules/CoursewareModule.class.php:147
-#, fuzzy
-msgid "Überssichtsseite der Courseware"
-msgstr "Overview over all personal data"
-
-#: ../lib/modules/CoursewareModule.class.php:164
-msgid "Courseware-Strukturelemente-Ergebnisse"
-msgstr ""
-
-#: ../lib/modules/CoursewareModule.class.php:170
-msgid "Courseware-Container-Ergebnisse"
-msgstr ""
-
-#: ../lib/modules/CoursewareModule.class.php:176
-msgid "Courseware-Blöcke-Ergebnisse"
-msgstr ""
-
-#: ../lib/modules/CoursewareModule.class.php:182
-msgid "Courseware-Kommentare-Ergebnisse"
-msgstr ""
-
-#: ../lib/modules/CoursewareModule.class.php:188
-msgid "Courseware-Nutzer-Daten-Ergebnisse"
-msgstr ""
-
-#: ../lib/modules/CoursewareModule.class.php:194
-msgid "Courseware-Nutzer-Fortschritt-Ergebnisse"
-msgstr ""
-
-#: ../lib/modules/CoursewareModule.class.php:200
-msgid "Courseware-Lesezeichen-Ergebnisse"
-msgstr ""
-
-#: ../lib/modules/CoreDocuments.class.php:79
-#: ../lib/modules/CoreDocuments.class.php:86
-#: ../lib/filesystem/FileManager.php:690 ../app/controllers/oer/addfile.php:52
-#: ../app/controllers/oer/addfile.php:59
-msgid "Daten konnten nicht kopiert werden!"
-msgstr "Data could not be copied!"
-
-#: ../lib/modules/CoreDocuments.class.php:98
-#: ../app/views/admin/sem_classes/details.php:214
-msgid "Dateibereich"
-msgstr "File area"
-
-#: ../lib/modules/CoreDocuments.class.php:118
-msgid "Es gibt neue Dateien."
-msgstr "There are new files."
-
-#: ../lib/modules/CoreDocuments.class.php:146
-#: ../lib/modules/CoreDocuments.class.php:166
-msgid "Austausch von Dateien"
-msgstr "File exchange"
-
-#: ../lib/modules/CoreDocuments.class.php:147
-msgid ""
-"Im Dateibereich können Dateien sowohl von Lehrenden als auch von "
-"Studierenden hoch- bzw. heruntergeladen werden. Es können Ordner angelegt "
-"und individuell benannt werden (nur Lehrende). Die Dateien können somit "
-"strukturiert zur Verfügung gestellt werden. Multimediadateien wie Grafiken, "
-"Audio- und Videodateien können sofort angezeigt bzw. abgespielt werden. Über "
-"das PlugIn \"Dateiordnerberechtigung\" können Im Dateibereich bestimmte "
-"Rechte für Studierende, wie z.B. das Leserecht, festgelegt werden."
-msgstr ""
-"In \"documents\" files can be up- and downloaded by students and lecturers. "
-"Folders can be created. Most media files (pictures, audio- and video files) "
-"are shown and played right in folders. Activating the plug-in \"document "
-"folder permissions\" adds functionality to lock folders or make them "
-"invisible. "
-
-#: ../lib/modules/CoreDocuments.class.php:159
-msgid ""
-"Hoch- und Herunterladen von Dateien;\n"
-"                            Anlegen von Ordnern und Unterordnern;\n"
-"                            Verschieben einer Datei/eines Ordners per drag "
-"and drop innerhalb einer Veranstaltung;\n"
-"                            Verschieben einer Datei/eines Ordners in eine "
-"andere Veranstaltung;\n"
-"                            Kopieren einer Datei/eines Ordners in eine "
-"andere oder mehrere Veranstaltungen;\n"
-"                            Verlinkung auf abgelegte Dateien möglich;\n"
-"                            Erstellung Hausaufgabenordner durch Aktivierung "
-"der Funktion \"Dateiordnerberechtigung\""
-msgstr ""
-"Up- and download of files. \n"
-"Create folders. \n"
-"Copy or move files to other folders or courses with drag & drop.\n"
-"Link to files from media servers.\n"
-"Create homework folders by using folder permissions"
-
-#: ../lib/modules/CoreDocuments.class.php:167
-msgid ""
-"Dateien können sowohl von Lehrenden als auch von Studierenden hoch- bzw. "
-"heruntergeladen werden. Ordner können angelegt und individuell benannt "
-"werden (Standard: nur Lehrende), so dass Dateien strukuriert zur Verfügung "
-"gestellt werden können. Multimediadateien wie Grafiken, Audio- und "
-"Videodateien werden sofort angezeigt bzw. abspielbar dargestellt. Über das "
-"PlugIn \"Dateiordnerberechtigungen\" können Im Dateibereich bestimmte Rechte "
-"(r, w, x, f) für Studierende, wie z.B. das Leserecht (r), festgelegt werden."
-msgstr ""
-"Files can be up- and downloaded by students and lecturers; Folders can be "
-"created and (re-)named (default: lecturers only); Many multimedia formats "
-"are shown and played instantaneous; Folder permissions can be configured "
-"independently for every folder.  "
-
-#: ../lib/modules/CoreDocuments.class.php:178
-msgid "Ordneransicht mit geöffnetem Ordner"
-msgstr "View with folder opened"
-
-#: ../lib/modules/CoreDocuments.class.php:179
-msgid "Ordneransicht mit Dateiinformationen"
-msgstr "Folder view with file information"
-
-#: ../lib/modules/CoreDocuments.class.php:180
-msgid "Neuen Ordner erstellen"
-msgstr "Create a new folder"
-
-#: ../lib/modules/CoreDocuments.class.php:181
-msgid "Ordner zum Hausaufgabenordner umwandeln"
-msgstr "Convert folder to homework folder"
-
-#: ../lib/modules/CoreDocuments.class.php:182
-msgid "Ansicht alle Dateien"
-msgstr "View all files"
-
-#: ../lib/modules/CoreSchedule.class.php:52
-#, php-format
-msgid "%1$d Termin, %2$d neuer"
-msgid_plural "%1$d Termine, %2$d neue"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/CoreSchedule.class.php:65
-#, php-format
-msgid "%d Termin"
-msgid_plural "%d Termine"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/CoreSchedule.class.php:86
-#: ../app/controllers/course/topics.php:16
-#: ../app/views/oer/market/details.php:76
-#: ../app/views/course/details/index.php:294
-#: ../app/views/course/dates/details-edit.php:19
-msgid "Themen"
-msgstr "Topics"
-
-#: ../lib/modules/CoreSchedule.class.php:97
-msgid "Anzeige aller Termine der Veranstaltung"
-msgstr "Show all dates of this course"
-
-#: ../lib/modules/CoreSchedule.class.php:98
-#: ../lib/modules/CoreSchedule.class.php:112
-msgid ""
-"Der Ablaufplan listet alle Präsenz-, E-Learning-, Klausur-, Exkursions- und "
-"sonstige Veranstaltungstermine auf. Zur besseren Orientierung und zur "
-"inhaltlichen Einstimmung der Studierenden können Lehrende den Terminen "
-"Themen hinzufügen, die z. B. eine Kurzbeschreibung der Inhalte darstellen."
-msgstr ""
-"The schedule contains all appointments and dates of a course. Lecturers can "
-"add topics. "
-
-#: ../lib/modules/CoreSchedule.class.php:106
-msgid ""
-"Inhaltliche und räumliche Orientierung für Studierende;\n"
-"                            Beschreibung der Inhalte einzelner Termine;\n"
-"                            Raumangabe;\n"
-"                            Themenzuordnung zu Terminen;\n"
-"                            Terminzuordnung zu Themen"
-msgstr ""
-"Information for students;\n"
-"Agenda for sessions;\n"
-"Rooms;\n"
-"Topics for sessions;\n"
-"Sessions for topics"
-
-#: ../lib/modules/CoreSchedule.class.php:111
-msgid "Anzeige aller Termine der Veranstaltung, ggf. mit Themenansicht"
-msgstr "Display all course dates including topics, if applicable"
-
-#: ../lib/modules/CoreSchedule.class.php:120
-msgid "Termine mit Themen"
-msgstr "Dates with topics"
-
-#: ../lib/modules/CoreSchedule.class.php:121
-msgid "Thema bearbeiten und einem Termin zuordnen"
-msgstr "Edit topic and assign it to a date"
-
-#: ../lib/modules/FeedbackModule.class.php:38
-#: ../app/controllers/course/gradebook/students.php:88
-#: ../app/views/course/gradebook/students/index.php:27
-#: ../app/views/course/feedback/index_for.php:6
-msgid "Feedback"
-msgstr "Feedback"
-
-#: ../lib/modules/FeedbackModule.class.php:49
-msgid "Einholen von Feedback zu Inhaltselementen"
-msgstr "Get feedback for content elements"
-
-#: ../lib/modules/FeedbackModule.class.php:50
-msgid ""
-"Ermöglicht das Anlegen von Feedback-Elementen an verschiedenen Inhalten, "
-"sodass Nutzer dort ein Feedback zum Inhalt geben können. Dies kann aus einer "
-"Punkt- bzw. Sternbewertung bestehen oder nur aus einem Kommentar."
-msgstr ""
-"Enables feedback elements to be created on different content so that users "
-"can give feedback on the content. This can consist of a point or star rating "
-"or just a comment."
-
-#: ../lib/modules/FeedbackModule.class.php:52
-msgid ""
-"Anlegen von Feedback-Elementen an verschiedenen Stellen; Auswahl "
-"verschiedener Feedback-Modi, wie Sternbewertung; Übersicht über alle "
-"Feedback-Elemente einer Veranstaltung"
-msgstr ""
-"Creation of feedback elements at different locations; selection of different "
-"feedback modes, such as star rating; overview of all feedback elements of an "
-"event"
-
-#: ../lib/modules/IliasInterfaceModule.class.php:20
-#: ../lib/modules/IliasInterfaceModule.class.php:146
-msgid "ILIAS-Schnittstelle"
-msgstr "ILIAS interface"
-
-#: ../lib/modules/IliasInterfaceModule.class.php:24
-#: ../app/controllers/course/ilias_interface.php:38
-msgid "ILIAS"
-msgstr "ILIAS"
-
-#: ../lib/modules/IliasInterfaceModule.class.php:72
-#, php-format
-msgid "%1$d Lernobjekt, %2$d neues"
-msgid_plural "%1$d Lernobjekte, %2$d neue"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/IliasInterfaceModule.class.php:84
-#, php-format
-msgid "%d Lernobjekt"
-msgid_plural "%d Lernobjekte"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/IliasInterfaceModule.class.php:95
-#, php-format
-msgid "%d ILIAS-Kurs"
-msgid_plural "%d ILIAS-Kurse"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/IliasInterfaceModule.class.php:126
-msgid "Lernobjekte dieser Einrichtung"
-msgstr "Learning objects of this institute"
-
-#: ../lib/modules/IliasInterfaceModule.class.php:128
-msgid "Lernobjekte dieser Veranstaltung"
-msgstr "Learning objects of this course"
-
-#: ../lib/modules/IliasInterfaceModule.class.php:141
-#: ../lib/modules/IliasInterfaceModule.class.php:152
-msgid "Zugang zu extern erstellten ILIAS-Lernobjekten"
-msgstr "Access to externally created ILIAS learning objects"
-
-#: ../lib/modules/IliasInterfaceModule.class.php:142
-msgid ""
-"Über diese Schnittstelle ist es möglich, Lernobjekte aus einer ILIAS-"
-"Installation (ILIAS-Version >= 5.3.8) in Stud.IP zur Verfügung zu stellen. "
-"Lehrende haben die Möglichkeit, in ILIAS Selbstlerneinheiten zu erstellen "
-"und in Stud.IP bereit zu stellen."
-msgstr ""
-"Via this interface, it is possible to make learning objects from an ILIAS "
-"installation (ILIAS version >= 5.3.8) available in Stud.IP. Lecturers have "
-"the possibility to create self-learning units in ILIAS and make them "
-"available in Stud.IP."
-
-#: ../lib/modules/IliasInterfaceModule.class.php:147
-#: ../lib/modules/CoreElearningInterface.class.php:117
-msgid "Inhalte und Aufgabenstellungen"
-msgstr "Content and tasks"
-
-#: ../lib/modules/IliasInterfaceModule.class.php:148
-msgid ""
-"Einbindung von ILIAS-Lernobjekten;\n"
-"                            Zugang zu ILIAS;\n"
-"                            Aufgaben- und Test-Erstellung"
-msgstr ""
-"Inclusion of ILIAS learning objects;\n"
-"                            Access to ILIAS;\n"
-"                            Creation of tasks and tests"
-
-#: ../lib/modules/IliasInterfaceModule.class.php:153
-msgid ""
-"Über diese Schnittstelle ist es möglich, Lernobjekte aus einer ILIAS-"
-"Installation (> 5.3.8) in Stud.IP zur Verfügung zu stellen. Lehrende haben "
-"die Möglichkeit, in ILIAS Selbstlerneinheiten zu erstellen und in Stud.IP "
-"bereit zu stellen."
-msgstr ""
-"Via this interface, it is possible to make learning objects from an ILIAS "
-"installation (> 5.3.8) available in Stud.IP. Lecturers have the possibility "
-"to create self-learning units in ILIAS and make them available in Stud.IP."
-
-#: ../lib/modules/ConsultationModule.class.php:89
-msgid "Generische Terminvergabe"
-msgstr ""
-
-#: ../lib/modules/ConsultationModule.class.php:90
-msgid ""
-"Über die generische Terminvergabe können jegliche Formen von Terminen "
-"angeboten werden, zu denen sich Personen oder auch Gruppen von Personen "
-"anmelden können."
-msgstr ""
-
-#: ../lib/modules/ConsultationModule.class.php:94
-msgid "Terminvergabe, Sprechstunden"
-msgstr ""
-
-#: ../lib/modules/ConsultationModule.class.php:125
-msgid "Terminbuchungen"
-msgstr ""
-
-#: ../lib/modules/CoreScm.class.php:57
-#, php-format
-msgid "%1$d Einträge insgesamt, %2$d neue"
-msgstr "%1$d entries total, %2$d new"
-
-#: ../lib/modules/CoreScm.class.php:69 ../templates/contact/header-alpha.php:7
-#: ../templates/contact/header-groups.php:7
-#, php-format
-msgid "%d Eintrag"
-msgid_plural "%d Einträge"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/CoreScm.class.php:96 ../lib/modules/CoreScm.class.php:127
-#: ../config/config.inc.php:249 ../config/config_develop.inc.php:298
-#: ../templates/wiki/show.php:12 ../app/controllers/api/authorizations.php:42
-#: ../app/controllers/resources/building.php:52
-#: ../app/controllers/resources/location.php:59
-#: ../app/controllers/resources/room.php:46
-#: ../app/controllers/course/scm.php:104 ../app/controllers/profile.php:361
-#: ../app/controllers/admin/lockrules.php:116
-#: ../app/views/consultation/overview/index.php:18
-#: ../app/views/consultation/overview/booked.php:19
-#: ../app/views/consultation/admin/index.php:35
-#: ../app/views/resources/category/delete.php:9
-#: ../app/views/admin/user/activities.php:7
-msgid "Informationen"
-msgstr "Information"
-
-#: ../lib/modules/CoreScm.class.php:115
-msgid "Die Lehrenden bestimmen, wie Titel und Inhalt dieser Seite aussehen."
-msgstr "Lecturers can edit name and content of this page."
-
-#: ../lib/modules/CoreScm.class.php:116
-msgid ""
-"Die Freie Informationsseite ist eine Seite, die sich die Lehrenden nach "
-"ihren speziellen Anforderungen einrichten können. So kann z.B. der Titel im "
-"Kartenreiter selbst definiert werden. Ferner können beliebig viele Einträge "
-"im Untermenü vorgenommen werden. Für jeden Eintrag öffnet sich eine Seite "
-"mit einem Text-Editor, in den beliebiger Text eingegeben und formatiert "
-"werden kann. Oft wird die Seite für die Angabe von Literatur genutzt als "
-"Alternative zum Plugin Literatur. Sie kann aber auch für andere beliebige "
-"Zusatzinformationen (Links, Protokolle etc.) verwendet werden."
-msgstr ""
-"\"Information\" is a page lecturers can change to fit their needs. Sub-pages "
-"and a navigation can be created. The pages is often used as a link-dump or "
-"to create alternative schedule or bibliographies."
-
-#: ../lib/modules/CoreScm.class.php:129
-msgid ""
-"Raum für eigene Informationen;\n"
-"                            Name des Reiters frei definierbar;\n"
-"                            Beliebig erweiterbar durch zusätzliche \"neue "
-"Einträge\""
-msgstr ""
-"Miscellaneous information;\n"
-"individual naming of tab;\n"
-"extendable by \"new entry\""
-
-#: ../lib/modules/CoreScm.class.php:132
-msgid "Freie Gestaltung von Reiternamen und Inhalten durch Lehrende."
-msgstr "Individual naming of tab by lecturers."
-
-#: ../lib/modules/CoreScm.class.php:133
-msgid ""
-"Diese Seite kann von Lehrenden nach ihren speziellen Anforderungen "
-"eingerichtet werden. So ist z.B. der Titel im Reiter frei definierbar. "
-"Ferner können beliebig viele neue Eintragsseiten eingefügt werden. Für jeden "
-"Eintrag öffnet sich eine Seite mit einem Text-Editor, in den beliebiger Text "
-"eingefüft, eingegeben und formatiert werden kann. Oft wird die Seite für die "
-"Angabe von Literatur genutzt als Alternative zur Funktion Literatur. Sie "
-"kann aber auch für andere beliebige Zusatzinformationen (Links, Protokolle "
-"etc.) verwendet werden."
-msgstr ""
-"This page can be named and edited to fit a broad variety of needs, e.g. for "
-"bibliography, link list or any other text-based functionality. Pictures and "
-"movies can be embedded. "
-
-#: ../lib/modules/CoreScm.class.php:144
-msgid "Zwei Einträge mit Inhalten zur Verfügung stellen"
-msgstr "Add two entries with content"
-
-#: ../lib/modules/CoreScm.class.php:145 ../app/controllers/course/scm.php:119
-msgid "Neue Informationsseite anlegen"
-msgstr "Create new information page"
-
-#: ../lib/modules/CoreParticipants.class.php:93
-#, php-format
-msgid "%1$d Teilnehmende/r, %2$d neue/r"
-msgid_plural "%1$d Teilnehmende, %2$d neue"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/CoreParticipants.class.php:106
-#, php-format
-msgid "%d Teilnehmende/r"
-msgid_plural "%d Teilnehmende"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/CoreParticipants.class.php:136
-#: ../app/controllers/course/dates.php:442
-#: ../app/controllers/course/statusgroups.php:50
-#: ../app/controllers/contact.php:245
-#: ../app/views/course/ilias_interface/add_groups.php:17
-#: ../app/views/course/dates/index.php:42
-#: ../app/views/course/dates/index.php:82
-msgid "Gruppen"
-msgstr "Groups"
-
-#: ../lib/modules/CoreParticipants.class.php:142
-#: ../app/controllers/course/grouping.php:150
-msgid "Teilnehmende in Unterveranstaltungen"
-msgstr "Participants in sub-courses"
-
-#: ../lib/modules/CoreParticipants.class.php:158
-#: ../lib/modules/CoreParticipants.class.php:174
-msgid "Liste aller Teilnehmenden einschließlich Nachrichtenfunktionen"
-msgstr "List of participants"
-
-#: ../lib/modules/CoreParticipants.class.php:159
-msgid ""
-"Die Teilnehmenden werden gruppiert nach ihrer jeweiligen Funktion in einer "
-"Tabelle gelistet. Für Lehrende werden sowohl das Anmeldedatum als auch der "
-"Studiengang mit Semesterangabe dargestellt. Die Liste kann in verschiedene "
-"Formate exportiert werden. Außerdem gibt es die Möglichkeiten, eine Rundmail "
-"an alle zu schreiben (nur Lehrende) bzw. einzelne Teilnehmende separat "
-"anzuschreiben."
-msgstr ""
-"Participants are listed in order of their role. Lecturers can export the "
-"list and additional information. Lecturers are allowed to write newsletters. "
-
-#: ../lib/modules/CoreParticipants.class.php:167
-msgid ""
-"Rundmail an einzelne, mehrere oder alle Teilnehmenden;\n"
-"                            Gruppierung nach Lehrenden, Tutor/-innen und "
-"Studierenden (Autor/-innen);\n"
-"                            Aufnahme neuer Studierender (Autor/-innen) und "
-"Tutor/-innen;\n"
-"                            Import einer Teilnehmendenliste;\n"
-"                            Export der Teilnehmendenliste;\n"
-"                            Einrichten von Gruppen;\n"
-"                            Anzeige Studiengang und Fachsemester"
-msgstr ""
-"Mail to all or a selection of participants; \n"
-"Group by role; \n"
-"Add students or tutors;\n"
-"import ;\n"
-"Export;\n"
-"Create groups;\n"
-"Show degree program;"
-
-#: ../lib/modules/CoreParticipants.class.php:175
-msgid ""
-"Die Teilnehmenden werden gruppiert nach ihrer jeweiligen Rolle in einer "
-"Tabelle gelistet. Für Lehrende werden sowohl das Anmeldedatum als auch der "
-"Studiengang mit Semesterangabe der Studierenden dargestellt. Die Liste kann "
-"in verschiedene Formate exportiert werden. Außerdem gibt es die "
-"Möglichkeiten für Lehrende, allen eine Rundmail zukommen zu lassen bzw. "
-"einzelne Teilnehmende separat anzuschreiben."
-msgstr ""
-"The participants will be listed in a table, grouped by their role. Lecturers "
-"will see the enrolment date of the participant as well as the course of "
-"study with the semester. The list can be exported into different formats. "
-"Furthermore lecturers can mail all participants or single participants "
-"separately."
-
-#: ../lib/modules/CoreParticipants.class.php:186
-msgid "Liste aller Teilnehmenden einer Veranstaltung"
-msgstr "Participants list"
-
-#: ../lib/modules/CoreParticipants.class.php:187
-msgid "Rundmail an alle Teilnehmdenden einer Veranstaltung"
-msgstr "Mail to all participants of a course"
-
-#: ../lib/modules/LtiToolModule.class.php:24
-msgid "LTI-Tools"
-msgstr "LTI tools"
-
-#: ../lib/modules/LtiToolModule.class.php:67
-#: ../app/controllers/course/lti.php:571
-#: ../app/views/course/lti/grades_user.php:3
-#: ../app/views/course/lti/grades.php:3
-#: ../app/views/course/feedback/_results.php:3
-#: ../app/views/evaluation/_buttons.php:5
-msgid "Ergebnisse"
-msgstr "Results"
-
-#: ../lib/modules/LtiToolModule.class.php:91
-msgid "LTI-Ergebnisse"
-msgstr "LTI results"
-
-#: ../lib/modules/LtiToolModule.class.php:100
-msgid "Verlinkung auf Inhalte in externen Anwendungen (LTI-Tool)"
-msgstr "Linking to content in external applications (LTI tool)"
-
-#: ../lib/modules/LtiToolModule.class.php:101
-msgid ""
-"Dieses Modul bietet eine Möglichkeit zur Einbindung von externen Tools, "
-"sofern diese den LTI-Standard unterstützen. Ähnlich wie bei der Seite "
-"\"Informationen\" kann ein Titel sowie ein freier Text angegeben werden, der "
-"den Nutzern zur Erläuterung angezeigt wird. Zur Einbindung von Inhalten aus "
-"Fremdsystemen wird die LTI-Schnittstelle in der Version 1.x unterstützt."
-msgstr ""
-"This module provides a possibility to include external tools, if they "
-"support the LTI standard. Similar to the \"information\" page, a title and a "
-"text can be specified that will be displayed to the users. To include "
-"contents from other systems, the LTI interface in the version 1.x is "
-"supported."
-
-#: ../lib/modules/LtiToolModule.class.php:107
-msgid "Einbindung von LTI-Tools (Version 1.x)"
-msgstr "LTI tool inclusion (version 1.x)"
-
-#: ../lib/modules/CoreElearningInterface.class.php:46
-#, php-format
-msgid "%1$d Lernmodul, %2$d neues"
-msgid_plural "%1$d Lernmodule, %2$d neue"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/CoreElearningInterface.class.php:58
-#, php-format
-msgid "%d Lernmodul"
-msgid_plural "%d Lernmodule"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/CoreElearningInterface.class.php:86
-msgid "Lernmodule dieser Veranstaltung"
-msgstr "Learning modules for this course"
-
-#: ../lib/modules/CoreElearningInterface.class.php:89
-msgid "Lernmodule dieser Einrichtung"
-msgstr "Learning modules for this institute"
-
-#: ../lib/modules/CoreElearningInterface.class.php:96
-#: ../templates/elearning/elearning_interface_edit.php:2
-#: ../app/views/course/elearning/edit.php:2
-msgid "Lernmodule hinzufügen / entfernen"
-msgstr "Add / remove learning modules"
-
-#: ../lib/modules/CoreElearningInterface.class.php:108
-#: ../lib/modules/CoreElearningInterface.class.php:122
-msgid "Zugang zu extern erstellten Lernmodulen"
-msgstr "Add and access learning objects"
-
-#: ../lib/modules/CoreElearningInterface.class.php:109
-#: ../lib/modules/CoreElearningInterface.class.php:123
-msgid ""
-"Über diese Schnittstelle ist es möglich, Selbstlerneinheiten, die in "
-"externen Programmen erstellt werden, in Stud.IP zur Verfügung zu stellen. "
-"Ein häufig angebundenes System ist ILIAS. Besteht eine Anbindung zu einem "
-"ILIAS-System, haben Lehrende die Möglichkeit, in ILIAS Selbstlerneinheiten "
-"zu erstellen und in Stud.IP bereit zu stellen."
-msgstr ""
-"Search, add or create elearning objects in a connected learning content "
-"system like ILIAS."
-
-#: ../lib/modules/CoreElearningInterface.class.php:116
-msgid "Lernmodulschnittstelle"
-msgstr "Learning module interface"
-
-#: ../lib/modules/CoreElearningInterface.class.php:118
-msgid ""
-"Einbindung z. B. von ILIAS-Lerneinheiten;\n"
-"                            Zugang zu externen Lernplattformen;\n"
-"                            Aufgaben- und Test-Erstellung"
-msgstr ""
-"Connected learning modules, e.g. in ILIAS;\n"
-"Access to external platforms;\n"
-"Tests & Assessments"
-
-#: ../lib/modules/CoreOverview.class.php:49
-#, php-format
-msgid "%1$d Ankündigung, %2$d neue"
-msgid_plural "%1$d Ankündigungen, %2$d neue"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/CoreOverview.class.php:62
-#, php-format
-msgid "%d Ankündigung"
-msgid_plural "%d Ankündigungen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/modules/CoreOverview.class.php:91
-#: ../lib/modules/CoreOverview.class.php:99
-#: ../app/controllers/course/overview.php:32
-#: ../app/controllers/institute/overview.php:57
-msgid "Kurzinfo"
-msgstr "Brief information"
-
-#: ../lib/modules/CoreOverview.class.php:93
-#: ../lib/navigation/BrowseNavigation.php:72
-#: ../app/controllers/admin/courseplanning.php:45
-#: ../app/controllers/admin/courseplanning.php:63
-#: ../app/controllers/admin/courseplanning.php:102
-#: ../app/controllers/calendar/instschedule.php:68
-msgid "Veranstaltungs-Stundenplan"
-msgstr "Course timetable"
-
-#: ../lib/modules/CoreOverview.class.php:96
-msgid "Administration der Einrichtung"
-msgstr "Manage institutes"
-
-#: ../lib/modules/CoreOverview.class.php:101
-#: ../app/controllers/course/details.php:201
-#: ../app/views/resources/_common/_resource_tr.php:164
-#: ../app/views/materialien/files/range.php:79
-#: ../app/views/admin/cronjobs/schedules/edit.php:28
-#: ../app/views/wiki/info.php:8 ../app/views/event_log/show.php:31
-msgid "Details"
-msgstr "Details"
-
-#: ../lib/visual.inc.php:526
-msgid "Objekt aufklappen"
-msgstr "Open object"
-
-#: ../lib/visual.inc.php:527
-msgid "Objekt zuklappen"
-msgstr "Close object"
-
-#: ../lib/visual.inc.php:563
-msgid "Bewertungsbereich öffnen"
-msgstr "Open rating area"
-
-#: ../lib/visual.inc.php:712 ../app/controllers/shared/contacts.php:837
-#: ../app/views/shared/version/_version.php:37
-#: ../app/views/shared/studiengang/_stgteilversion.php:29
-#: ../app/views/smileys/index.php:75
-#: ../app/views/studiengaenge/versionen/version.php:85
-msgid "Code"
-msgstr "C0de"
-
-#: ../lib/visual.inc.php:717
-msgid "Stack trace"
-msgstr "Stack trace"
-
-#: ../lib/visual.inc.php:721
-msgid "Vorherige Exception:"
-msgstr "Previous Exception:"
-
-#: ../lib/user_visible.inc.php:202
-msgid "global"
-msgstr "global"
-
-#: ../lib/user_visible.inc.php:203 ../app/views/settings/messaging.php:6
-msgid "immer"
-msgstr "always"
-
-#: ../lib/user_visible.inc.php:207 ../app/views/admin/user/new.php:53
-msgid "niemals"
-msgstr "never"
-
-#: ../lib/user_visible.inc.php:241
-msgid "Bitte wählen Sie Ihren Sichtbarkeitsstatus aus!"
-msgstr "Please select your visibility level!"
-
-#: ../lib/export/export_xml_func.inc.php:54
-#: ../app/controllers/search/globalsearch.php:142
-msgid "Alle Einrichtungen"
-msgstr "All institutes"
-
-#: ../lib/export/export_studipdata_func.inc.php:279
-msgid "Der gewählte Exportmodus wird nicht unterstützt."
-msgstr "The selected export module is not supported."
-
-#: ../lib/export/export_studipdata_func.inc.php:489
-msgid "max."
-msgstr "max."
-
-#: ../lib/export/export_studipdata_func.inc.php:489
-msgid "erw."
-msgstr "exp."
-
-#: ../lib/export/export_studipdata_func.inc.php:578
-msgid "keiner Funktion oder Gruppe zugeordnet"
-msgstr "not assigned to any function or group"
-
-#: ../lib/export/export_studipdata_func.inc.php:590
-msgid "Anmeldeliste"
-msgstr "Registration list"
-
-#: ../lib/export/export_run_xslt.inc.php:63
-#: ../lib/export/export_run_fop.inc.php:57
-msgid "Fehlende Parameter!"
-msgstr "Missing parameter!"
-
-#: ../lib/export/export_run_xslt.inc.php:72
-#: ../lib/export/export_choose_xslt.inc.php:86
-#: ../lib/export/export_xml.inc.php:73
-msgid "Unzulässiger Seitenaufruf!"
-msgstr "Invalid page call!"
-
-#: ../lib/export/export_run_xslt.inc.php:106
-msgid "Download der Ausgabedatei"
-msgstr "Download output file"
-
-#: ../lib/export/export_run_xslt.inc.php:112
-#: ../lib/export/export_xml.inc.php:81 ../lib/export/export_run_fop.inc.php:69
-msgid "Die Parameter, mit denen diese Seite aufgerufen wurde, sind fehlerhaft."
-msgstr "Invalid parameter values of this page call."
-
-#: ../lib/export/export_run_xslt.inc.php:143
-#, php-format
-msgid ""
-"Die Daten wurden erfolgreich konvertiert. %s Sie k&ouml;nnen die "
-"Ausgabedatei jetzt herunterladen. %s"
-msgstr ""
-"Data successfully converted. %s You can now download the output file. %s"
-
-#: ../lib/export/export_run_xslt.inc.php:144
-msgid "Die Daten sind nun im gew&auml;hlten Format verf&uuml;gbar."
-msgstr "Now the data are available in the selected format."
-
-#: ../lib/export/export_run_xslt.inc.php:151
-#, php-format
-msgid ""
-"Bei der Konvertierung ist ein Fehler aufgetreten. %sDer XSLT-Prozessor "
-"meldet den Fehler  %s %s"
-msgstr ""
-"An error occurred during conversion. %sThe XSLT processor reported the "
-"error  %s %s"
-
-#: ../lib/export/export_run_xslt.inc.php:152
-msgid "Bei der Konvertierung ist ein Fehler aufgetreten."
-msgstr "Error occurred while converting."
-
-#: ../lib/export/export_run_xslt.inc.php:186
-#: ../lib/export/export_run_fop.inc.php:92
-msgid "Ausgabe-Datei: "
-msgstr "Output file:"
-
-#: ../lib/export/export_run_xslt.inc.php:196
-#: ../lib/export/export_choose_xslt.inc.php:205
-#: ../lib/export/export_xml.inc.php:154
-#: ../lib/export/export_run_fop.inc.php:118
-msgid "XML-Daten"
-msgstr "XML data"
-
-#: ../lib/export/export_run_xslt.inc.php:197
-#: ../lib/export/export_choose_xslt.inc.php:206
-#: ../lib/export/export_xml.inc.php:155
-#: ../lib/export/export_run_fop.inc.php:119
-msgid ""
-"In dieser Datei sind die Daten als XML-Tags gespeichert. Diese Tags können "
-"mit einem XSLT-Script verarbeitet werden."
-msgstr ""
-"In this file the data are saved as XML tags. These tags can be processed "
-"with an XSLT script."
-
-#: ../lib/export/export_run_xslt.inc.php:203
-#: ../lib/export/export_choose_xslt.inc.php:212
-msgid "XSLT-Datei"
-msgstr "XSLT file"
-
-#: ../lib/export/export_run_xslt.inc.php:204
-#: ../lib/export/export_choose_xslt.inc.php:213
-msgid ""
-"Dies ist das XSLT-Script zur Konvertierung der Daten. Klicken Sie auf den "
-"Dateinamen, um die Datei zu öffnen."
-msgstr ""
-"This is the XSLT script for data conversion. Click on the file name to open "
-"the file."
-
-#: ../lib/export/export_run_xslt.inc.php:211
-msgid "Ausgabe-Datei"
-msgstr "Output file"
-
-#: ../lib/export/export_run_xslt.inc.php:212
-msgid "Dies ist die fertige Ausgabedatei."
-msgstr "This is the completed output file."
-
-#: ../lib/export/export_choose_xslt.inc.php:69
-msgid ""
-"Für dieses Format sind keine Ausgabemodule installiert.<br>Bitte wählen Sie "
-"ein anderes Ausgabeformat."
-msgstr ""
-"There is no export module installed for this format.<br>Please select a "
-"different export format."
-
-#: ../lib/export/export_choose_xslt.inc.php:91
-msgid "Konvertierung der Daten: "
-msgstr "Data conversion: "
-
-#: ../lib/export/export_choose_xslt.inc.php:97
-msgid ""
-"Die Parameter, mit denen diese Seite aufgerufen wurde, sind fehlerhaft oder "
-"unvollständig."
-msgstr "The parameter values of this page call are invalid or incomplete."
-
-#: ../lib/export/export_choose_xslt.inc.php:108
-msgid "Auswahl des Dateiformats"
-msgstr "Selection of file format"
-
-#: ../lib/export/export_choose_xslt.inc.php:119
-msgid "Bitte wählen Sie, in welchem Format die Daten ausgegeben werden sollen!"
-msgstr "Please select data export format!"
-
-#: ../lib/export/export_choose_xslt.inc.php:122
-msgid "Ausgabeformat:"
-msgstr "Export format:"
-
-#: ../lib/export/export_choose_xslt.inc.php:132
-msgid "Name der Datei (z.B. &raquo;Test&laquo;):"
-msgstr "File name (e.g &raquo;Test&laquo;):"
-
-#: ../lib/export/export_choose_xslt.inc.php:156
-msgid "Auswahl des Ausgabemoduls"
-msgstr "Selection of export module"
-
-#: ../lib/export/export_choose_xslt.inc.php:159
-msgid "Ausgabemodul"
-msgstr "Export module"
-
-#: ../lib/export/export_choose_xslt.inc.php:196
-msgid "Download der Dateien"
-msgstr "Download files"
-
-#: ../lib/export/export_choose_xslt.inc.php:197
-msgid "Die benötigten Dateien liegen nun zum Download bereit."
-msgstr "Ready to download the required files."
-
-#: ../lib/export/export_choose_xslt.inc.php:231
-msgid ""
-"Um die Daten mit dem installierten XSLT-Prozessor in das gewünschte Format "
-"zu bringen, klicken Sie bitte auf 'weiter'"
-msgstr ""
-"Please click on 'continue' in order to convert the data to the required "
-"format through the installed XSLT processor"
-
-#: ../lib/export/export_choose_xslt.inc.php:240
-#, php-format
-msgid "Diese Seite bereitet die Datenausgabe vor. %s Schritt 3/3 %s"
-msgstr "On this page the data export is prepared. %s Step 3/3 %s"
-
-#: ../lib/export/export_xml.inc.php:45
-msgid "Datenexport"
-msgstr "Data export"
-
-#: ../lib/export/export_xml.inc.php:121
-msgid "Es wurden keine Daten gefunden!"
-msgstr "No data found!"
-
-#: ../lib/export/export_xml.inc.php:122
-msgid ""
-"Es wurden keine Daten gefunden! Die übergebene ID ist mit keinen "
-"Veranstaltungs- / Personendaten verbunden."
-msgstr ""
-"No data could be found! The specified ID is not associated with any course "
-"resp. user data."
-
-#: ../lib/export/export_xml.inc.php:129
-msgid "Die Daten wurden erfolgreich exportiert."
-msgstr "Data successfully exported."
-
-#: ../lib/export/export_xml.inc.php:131
-#, php-format
-msgid "%s Objekt wurde verarbeitet."
-msgstr "%s object processed."
-
-#: ../lib/export/export_xml.inc.php:133
-#, php-format
-msgid "%s Objekte wurden verarbeitet."
-msgstr "%s objects processed."
-
-#: ../lib/export/export_xml.inc.php:163
-#, php-format
-msgid "Um die XML-Datei jetzt herunterzuladen klicken Sie %s hier %s."
-msgstr "Click %shere%s for downloading the XML file."
-
-#: ../lib/export/export_linking_func.inc.php:44
-msgid "Diese Daten exportieren: "
-msgstr "Export these data:"
-
-#: ../lib/export/export_linking_func.inc.php:103
-msgid "Daten Exportieren"
-msgstr "Export data"
-
-#: ../lib/export/export_start.inc.php:43
-msgid "Datenexport - Startseite"
-msgstr "Data export - start page"
-
-#: ../lib/export/export_start.inc.php:50
-msgid "Bitte wählen Sie Datenart und Einrichtung."
-msgstr "Please select data type and institute."
-
-#: ../lib/export/export_start.inc.php:51
-msgid "Bitte wählen Sie eine Einrichtung: "
-msgstr "Please select an institute: "
-
-#: ../lib/export/export_start.inc.php:94
-msgid "Art der auszugebenden Daten: "
-msgstr "Type of data to be exported: "
-
-#: ../lib/export/export_start.inc.php:105
-msgid "MitarbeiterInnendaten"
-msgstr "Staff details"
-
-#: ../lib/export/export_start.inc.php:109
-msgid ""
-"Aus welchem Semester sollen die Daten exportiert werden (für "
-"Veranstaltungsexport): "
-msgstr "From which semester should the data be exported (for course export): "
-
-#: ../lib/export/export_start.inc.php:116
-msgid "Welche Arten von Veranstaltungen sollen exportiert werden? "
-msgstr "Which type of course should be exported? "
-
-#: ../lib/export/export_run_fop.inc.php:73
-msgid ""
-"Die Erweiterung zum Erzeugen von PDF-Dateien ist nicht aktiviert, es konnten "
-"daher nur Formatting Objects erzeugt werden."
-msgstr ""
-"The extension for generating PDF files is not activated, and therefore "
-"formatting objects could be created, only."
-
-#: ../lib/export/export_run_fop.inc.php:76
-msgid "Download der PDF-Datei"
-msgstr "Download PDF file"
-
-#: ../lib/export/export_run_fop.inc.php:100
-msgid "PDF-Datei"
-msgstr "PDF file"
-
-#: ../lib/export/export_run_fop.inc.php:101
-msgid "Dies ist die fertige PDF-Datei."
-msgstr "This is the resulting PDF file."
-
-#: ../lib/export/export_run_fop.inc.php:110
-#, php-format
-msgid ""
-"Bei der Erzeugung der PDF-Datei ist ein Fehler aufgetreten. "
-"<br>Fehlermeldung: %s <br>Datei: %s"
-msgstr ""
-"Error occurred while generating PDF file. <br>Error message: %s<br>file: %s"
-
-#: ../lib/export/export_run_fop.inc.php:125
-msgid "Formatting-Objects-Datei"
-msgstr "Formatting object file"
-
-#: ../lib/export/export_run_fop.inc.php:126
-msgid ""
-"In dieser Datei sind die Formatting Objects zur Erzeugung der PDF-Datei "
-"gespeichert."
-msgstr ""
-"In this file, the formatting objects for generating a PDF file are saved. "
-
-#: ../lib/export/export_run_fop.inc.php:129
-#, php-format
-msgid "Um die Ausgabe-Datei herunterzuladen, klicken Sie %s hier %s."
-msgstr "Click %shere%s to download the output file."
-
-#: ../lib/export/export_xslt_vars.inc.php:20
-#: ../lib/export/export_xslt_vars.inc.php:42
-#: ../lib/export/export_xslt_vars.inc.php:82
-#: ../lib/export/export_xslt_vars.inc.php:123
-#: ../lib/export/export_xslt_vars.inc.php:168
-#: ../lib/export/export_xslt_vars.inc.php:180
-msgid "Standardmodul"
-msgstr "Standard module"
-
-#: ../lib/export/export_xslt_vars.inc.php:21
-msgid ""
-"Standardmodul zur Ausgabe von Personen- oder Veranstaltungsdaten im "
-"Textformat. Die Daten werden nur mit Tabulatoren und Bindestrichen "
-"formatiert. Die Ausgabe-Datei kann in einer Textverarbeitung bearbeitet "
-"werden."
-msgstr ""
-"Standard module for output of user or course details in a text format. The "
-"data will be formatted with tabs and hyphens, only. The output file can be "
-"edited in any text editor."
-
-#: ../lib/export/export_xslt_vars.inc.php:27
-msgid "Unformatierte Ausgabe"
-msgstr "Unformatted output"
-
-#: ../lib/export/export_xslt_vars.inc.php:28
-msgid ""
-"Modul zur Ausgabe von Personen- oder Veranstaltungsdaten im Textformat. Die "
-"Daten werden nicht formatiert. Die Ausgabe-Datei kann in einer "
-"Textverarbeitung bearbeitet werden."
-msgstr ""
-"Module for output of user or course details in a text format. The data will "
-"not be formatted. The output file can be edited in any text editor."
-
-#: ../lib/export/export_xslt_vars.inc.php:34
-msgid "Unformatiert mit Veranstaltungsnummern"
-msgstr "Unformatted with course numbers"
-
-#: ../lib/export/export_xslt_vars.inc.php:35
-msgid ""
-"Modul zur Ausgabe von Personen- oder Veranstaltungsdaten im Textformat. Die "
-"Daten werden nicht formatiert. Es werden auch die Veranstaltungsnummern "
-"ausgegeben. Die Ausgabe-Datei kann in einer Textverarbeitung bearbeitet "
-"werden."
-msgstr ""
-"Module for output of user or course details in a text format. The data will "
-"not be formatted. The course numbers will be exported, too. The output file "
-"can be edited in any text editor."
-
-#: ../lib/export/export_xslt_vars.inc.php:43
-msgid ""
-"Standardmodul zur Ausgabe von Personen- oder Veranstaltungsdaten als HTML-"
-"Seite. Personendaten werden als Tabelle angezeigt. Die Ausgabe-Datei kann in "
-"einem Web-Browser angezeigt werden."
-msgstr ""
-"Standard module the output of user or course details as HTML page. User "
-"details will be displayed as tables. The output file can be displayed in any "
-"web browser."
-
-#: ../lib/export/export_xslt_vars.inc.php:50
-msgid "Druckmodul"
-msgstr "Print module"
-
-#: ../lib/export/export_xslt_vars.inc.php:51
-msgid ""
-"Modul zur Ausgabe von Personen- oder Veranstaltungsdaten als HTML-Seite. Es "
-"wird eine druckbare HTML-Seite ohne Farben erzeugt. Die Ausgabe-Datei kann "
-"in einem Web-Browser angezeigt und ausgedruckt werden."
-msgstr ""
-"Module for output of user or course details as HTML page. A printable HTML "
-"page without colours will be generated. The output file can be displayed and "
-"printed in any web browser."
-
-#: ../lib/export/export_xslt_vars.inc.php:59
-msgid ""
-"Modul zur Ausgabe von Personen- oder Veranstaltungsdaten als HTML-Seite. Es "
-"werden nur die Veranstaltungs-Grunddaten bzw. Namen, Telefonnummern und E-"
-"Mail-Adressen in eine Tabelle geschrieben. Die Ausgabe-Datei kann in einem "
-"Web-Browser angezeigt werden."
-msgstr ""
-"Module to output user or course data as HTML page. Only the basic course "
-"details likc names, telephone numbers and e-mail addresses will be written "
-"to a table. The output file can be displayed in a web browser."
-
-#: ../lib/export/export_xslt_vars.inc.php:66
-msgid "Standardmodul mit Veranstaltungsnummern"
-msgstr "Standard module with course numbers"
-
-#: ../lib/export/export_xslt_vars.inc.php:67
-msgid ""
-"Standardmodul zur Ausgabe von Veranstaltungsdaten als HTML-Seite. Es werden "
-"auch die Veranstaltungsnummern ausgegeben. Die Ausgabe-Datei kann in einem "
-"Web-Browser angezeigt werden."
-msgstr ""
-"Standard module for output of course details as HTML page. The course "
-"numbers will be exported, too. The output file can be displayed in any web "
-"browser."
-
-#: ../lib/export/export_xslt_vars.inc.php:73
-#: ../lib/export/export_xslt_vars.inc.php:108
-#: ../lib/export/export_xslt_vars.inc.php:153
-msgid "Teilnehmendenliste"
-msgstr "List of participants"
-
-#: ../lib/export/export_xslt_vars.inc.php:74
-msgid ""
-"Modul zur Ausgabe von Personendaten als HTML-Seite. Es werden die Grunddaten "
-"der Teilnehmenden einer einzelnen Veranstaltung in eine Tabelle geschrieben. "
-"Die Ausgabe-Datei kann in einem Web-Browser angezeigt werden."
-msgstr ""
-"Module for output of user details as HTML page. The basic details of the "
-"participants of an individual course will be written to a table. The output "
-"file can be displayed in any web browser."
-
-#: ../lib/export/export_xslt_vars.inc.php:83
-msgid ""
-"Standardmodul zur Ausgabe von Personen- oder Veranstaltungsdaten als RTF-"
-"Datei. Die Ausgabe-Datei kann in einer Textverarbeitung bearbeitet werden."
-msgstr ""
-"Standard module for output of user or course details as RTF files. The "
-"output file can be edited in a word processor."
-
-#: ../lib/export/export_xslt_vars.inc.php:90
-msgid ""
-"Modul zur Ausgabe von Personen- oder Veranstaltungsdaten als RTF-Datei. Es "
-"werden nur die Grunddaten in eine Tabelle geschrieben (Lehrende, Titel, "
-"Status, Termin und Raum bzw.Name, Telefon, Sprechzeiten, Raum, E-Mail). Ein "
-"Deckblatt wird automatisch erzeugt. Die Ausgabe-Datei kann in einer "
-"Textverarbeitung bearbeitet werden."
-msgstr ""
-"Module for output of user or course details as RTF files. Only the basic "
-"details(lecturers, title, status, course dates and rooms respectively name, "
-"telephone, office hours, room and e-mail address) will be written to a "
-"table. A title page will automatically be generated. The output file can be "
-"edited in a word processor."
-
-#: ../lib/export/export_xslt_vars.inc.php:96
-#: ../lib/export/export_xslt_vars.inc.php:130
-msgid "Vorlesungskommentar"
-msgstr "Course commentary"
-
-#: ../lib/export/export_xslt_vars.inc.php:97
-msgid ""
-"Modul zur Ausgabe von Veranstaltungsdaten als Vorlesungskommentar im Rich-"
-"Text-Format. Der Kommentar enthält die Veranstaltungsdetails. Es wird "
-"automatisch ein Deckblatt generiert. Die Ausgabe-Datei kann in einer "
-"Textverarbeitung bearbeitet werden."
-msgstr ""
-"Module for output of user or course details as course commentary in RTF "
-"format. The commentary includes the course details. A title page will "
-"automatically be generated. The output file can be edited in a word "
-"processor."
-
-#: ../lib/export/export_xslt_vars.inc.php:102
-#: ../lib/export/export_xslt_vars.inc.php:136
-msgid "Vorlesungskommentar mit Veranstaltungsnummern"
-msgstr "Course commentary with course numbers"
-
-#: ../lib/export/export_xslt_vars.inc.php:103
-msgid ""
-"Modul zur Ausgabe von Veranstaltungsdaten als Vorlesungskommentar im Rich-"
-"Text-Format. Der Kommentar enthält die Veranstaltungs-Details. Es wird "
-"automatisch ein Deckblatt generiert. Die Ausgabe-Datei kann in einer "
-"Textverarbeitung bearbeitet werden."
-msgstr ""
-"Module for output of user or course details as course commentary in RTF "
-"format. The commentary includes the course details. A title page will "
-"automatically be generated. The output file can be edited in a word "
-"processor."
-
-#: ../lib/export/export_xslt_vars.inc.php:109
-msgid ""
-"Modul zur Ausgabe von Personendaten als RTF-Datei. Personendaten inkl. "
-"Studiengänge und Kontingente werden in eine Tabelle geschrieben. Die Ausgabe-"
-"Datei kann in einer Textverarbeitung bearbeitet werden."
-msgstr ""
-"Module for output of user details as RTF file. The basic details of the "
-"participants of an individual course will be written to a table. Quotas and "
-"courses of study will be exported, too. The output file can be edited in a "
-"word processor."
-
-#: ../lib/export/export_xslt_vars.inc.php:113
-msgid "Liste der Guppen und Funktionen"
-msgstr "List of groups and function"
-
-#: ../lib/export/export_xslt_vars.inc.php:114
-msgid ""
-"Modul zur Ausgabe von Personendaten als RTF-Datei. Personendaten werden in "
-"eine Tabelle geschrieben. Die Ausgabe-Datei kann in einer Textverarbeitung "
-"bearbeitet werden."
-msgstr ""
-"Module to output user data as RTF file. User data will be written in a "
-"table. The output file can be edited in an editor."
-
-#: ../lib/export/export_xslt_vars.inc.php:118
-#: ../lib/export/export_xslt_vars.inc.php:158
-#: ../app/controllers/admission/courseset.php:403
-#: ../app/controllers/course/members.php:157
-#: ../app/views/admission/courseset/configure_courses.php:13
-#: ../app/views/admission/restricted_courses/index.php:12
-#: ../app/views/admin/courses/courses.php:157
-msgid "Warteliste"
-msgstr "Waiting list"
-
-#: ../lib/export/export_xslt_vars.inc.php:119
-msgid ""
-"Modul zur Ausgabe von Personendaten als RTF-Datei. Personen der Warteliste "
-"einer einzelnen Veranstaltung in eine Tabelle geschrieben. Es werden auch "
-"die Kontingente und Studiengänge ausgegeben. Die Ausgabe-Datei kann in einer "
-"Textverarbeitung bearbeitet werden."
-msgstr ""
-"Module to output user data as RTF file. Persons on the wait list of a single "
-"course will be written in a table. Contingents and courses of studies will "
-"be output, too. The output file can be edited in an editor."
-
-#: ../lib/export/export_xslt_vars.inc.php:124
-msgid ""
-"Standardmodul zur Ausgabe von Veranstaltungs- und Personendaten als "
-"Vorlesungskommentar bzw. MitarbeiterInnenlisten mit Seitenzahlen im Adobe "
-"PDF-Format. Die Datei kann mit dem Acrobat PDF-Reader gelesen werden."
-msgstr ""
-"Standard module to output course and user data as course commentary or staff "
-"lists with page numbers in the Adobe PDF format. The file can be read using "
-"the Acrobat PDF Reader."
-
-#: ../lib/export/export_xslt_vars.inc.php:131
-msgid ""
-"Modul zur Ausgabe von Veranstaltungsdaten als Vorlesungskommentar im Adobe "
-"PDF-Format. Die Seiten enthalten eine Kopfzeile und eine Fußzeile mit der "
-"Seitenzahl. Deckblatt und Inhaltsverzeichnis werden automatisch generiert. "
-"Die Datei kann mit dem Acrobat PDF-Reader gelesen werden."
-msgstr ""
-"Module for output of user or course details as course commentary in Adobe "
-"PDF format. The pages include header and footer with page numbers. Title "
-"page and table of contents will automatically be generated. The output file "
-"can be displayed in Acrobat PDF Reader."
-
-#: ../lib/export/export_xslt_vars.inc.php:137
-msgid ""
-"Modul zur Ausgabe von Veranstaltungsdaten als Vorlesungskommentar im Adobe "
-"PDF-Format. Die Seiten enthalten eine Kopfzeile und eine Fußzeile mit der "
-"Seitenzahl. Deckblatt und Inhaltsverzeichnis werden automatisch generiert. "
-"Es werden auch die Veranstaltungsnummern ausgegeben. Die Datei kann mit dem "
-"Acrobat PDF-Reader gelesen werden."
-msgstr ""
-"Module for output of course details as course commentary in Adobe PDF "
-"format. The pages include header and footer with the page numbers. Title "
-"page and table of contents will automatically be generated. Course numbers "
-"will be exported, too. The output file can be displayed in Acrobat PDF "
-"Reader."
-
-#: ../lib/export/export_xslt_vars.inc.php:142
-msgid "MitarbeiterInnenlisten"
-msgstr "Staff lists"
-
-#: ../lib/export/export_xslt_vars.inc.php:143
-msgid ""
-"Modul zur Ausgabe von Personendaten als MitarbeiterInnenlisten im Adobe PDF-"
-"Format. Die Grunddaten der Personen (Name, Telefon, Sprechzeiten, Raum, E-"
-"Mail-Adresse) werden in einer Tabelle angezeigt. Die Seiten enthalten eine "
-"Kopfzeile und eine Fußzeile mit der Seitenzahl. Es wird automatisch ein "
-"Deckblatt und ein Inhaltsverzeichnis generiert. Die Datei kann mit dem PDF-"
-"Acrobat Reader gelesen werden."
-msgstr ""
-"Module for output of user details as staff lists in Adobe PDF format. "
-"Personal basic details (name, telephone, office hours, room, e-mail address) "
-"will be displayed in a table. The pages include header and footer with page "
-"numbers. Title page and table of contents will automatically be generated. "
-"The file can be displayed in Acrobat PDF reader."
-
-#: ../lib/export/export_xslt_vars.inc.php:149
-msgid ""
-"Modul zur Ausgabe von Veranstaltungsdaten als Vorlesungsverzeichnis im Adobe "
-"PDF-Format. Die Grunddaten der Veranstaltungen (Lehrende, Titel, Status, "
-"erster Termin und Raum) werden in einer Tabelle angezeigt. Es wird "
-"automatisch ein Deckblatt und ein Inhaltsverzeichnis generiert. Die Datei "
-"kann mit dem Acrobat Reader gelesen werden."
-msgstr ""
-"Module for outputting course data as course directory in the Adobe PDF "
-"format. The basic data of the courses (lecturers, title, status, first date "
-"and room) will be displayed in a table. A covering page and an index will be "
-"generated automatically. The file can be read with the Acrobat Reader."
-
-#: ../lib/export/export_xslt_vars.inc.php:154
-msgid ""
-"Modul zur Ausgabe von Personendaten als CSV-Datei. Es werden die Grunddaten "
-"der Personen in eine Tabelle geschrieben. Es werden auch die Kontingente und "
-"Studiengänge ausgegeben. Die Ausgabe-Datei kann in Excel bearbeitet werden."
-msgstr "CSV-Export including name, contingent, field of study. "
-
-#: ../lib/export/export_xslt_vars.inc.php:159
-msgid ""
-"Modul zur Ausgabe von Personendaten als CSV-Datei. Es werden die Grunddaten "
-"der Personen auf der Warteliste einer einzelnen Veranstaltung in eine "
-"Tabelle geschrieben. Es werden auch die Kontingente und Studiengänge "
-"ausgegeben. Die Ausgabe-Datei kann in Excel bearbeitet werden."
-msgstr ""
-"Module for output of user details as CSV file. The basic details of "
-"participants entered on the waiting list of an individual course will be "
-"written to a table. Quotas and courses of study will be exported, too. The "
-"output file can be edited as Excel spreadsheet in Excel or OpenOffice."
-
-#: ../lib/export/export_xslt_vars.inc.php:163
-msgid "Liste der Teilnehmenden mit Gruppen"
-msgstr "List of participants and groups"
-
-#: ../lib/export/export_xslt_vars.inc.php:164
-msgid ""
-"Modul zur Ausgabe von Personendaten mit Gruppenzugehörigkeit als CSV-Datei. "
-"Es werden die Grunddaten der Teilnehmenden einer einzelnen Veranstaltung in "
-"eine Tabelle geschrieben. Es werden auch die Kontingente und Studiengänge "
-"ausgegeben. Die Ausgabe-Datei kann in Excel bearbeitet werden."
-msgstr ""
-"A module to output personal data with group memberships as CSV file. The "
-"basic data of the participants of a single course are written into a table. "
-"Also the contingents and the courses of study are written. The output file "
-"can be edited in Excel."
-
-#: ../lib/export/export_xslt_vars.inc.php:169
-msgid ""
-"Standardmodul zur Ausgabe von Personendaten als CSV-Datei. Die Ausgabe-Datei "
-"kann in Excel oder OpenOffice angezeigt werden."
-msgstr ""
-"Standard module for output of user details as CSV files. The output file can "
-"be edited as Excel spreadsheet in Excel or OpenOffice."
-
-#: ../lib/export/export_xslt_vars.inc.php:175
-msgid ""
-"Modul zur Ausgabe von Personendaten als CSV-Datei. Es werden nur Name, "
-"Telefonnummern und E-Mail-Adressen gespeichert. Die Ausgabe-Datei kann in "
-"Excel oder OpenOffice angezeigt werden."
-msgstr ""
-"Module for output of user details as CSV file. Names, telephone numbers and "
-"e-mail addresses will be exported, only. The output file can be edited as "
-"Excel spreadsheet in Excel or OpenOffice."
-
-#: ../lib/export/export_xslt_vars.inc.php:181
-msgid ""
-"Standardmodul zur Ausgabe von Veranstaltungsdaten als CSV-Datei. Die Ausgabe-"
-"Datei kann in Excel oder OpenOffice angezeigt werden."
-msgstr ""
-"Standard module for output of course details as CSV files. The output file "
-"can be edited as Excel spreadsheet in Excel or OpenOffice."
-
-#: ../lib/export/export_xslt_vars.inc.php:187
-msgid ""
-"Modul zur Ausgabe von Veranstaltungsdaten als CSV-Datei. Die Ausgabe-Datei "
-"kann in Excel oder OpenOffice angezeigt werden."
-msgstr ""
-"Standard module for output of course details as CSV file. The output file "
-"can be edited as Excel spreadsheet in Excel or OpenOffice."
-
-#: ../lib/plugins/core/StudIPPlugin.class.php:166
-msgid "unbekannte Plugin-Aktion: "
-msgstr "unknown plug-in action:"
-
-#: ../lib/plugins/engine/PluginManager.class.php:440
-msgid "Plugin implementiert kein gültiges Interface."
-msgstr "Plug-in does not implement any valid interface."
-
-#: ../lib/plugins/engine/PluginRepository.class.php:72
-#, php-format
-msgid "Fehler beim Zugriff auf %s"
-msgstr "Error while accessing %s"
-
-#: ../lib/plugins/engine/PluginRepository.class.php:82
-msgid "Keine Plugin Meta-Daten gefunden"
-msgstr "No plug-in meta data found"
-
-#: ../lib/plugins/engine/PluginEngine.class.php:23
-#: ../lib/plugins/engine/PluginEngine.class.php:131
-msgid "Es wurde kein Plugin gewählt."
-msgstr "No plug-in selected."
-
-#: ../lib/raumzeit/Issue.class.php:182 ../lib/raumzeit/Issue.class.php:184
-#: ../lib/filesystem/CourseTopicFolder.php:63
-msgid "(Thema gelöscht)"
-msgstr "(Topic deleted)"
-
-#: ../lib/raumzeit/Issue.class.php:186
-msgid "Dateiordner bezieht sich auf ein nicht mehr vorhandenes Thema."
-msgstr "The document folder refers to a topic which has been deleted."
-
-#: ../lib/raumzeit/Issue.class.php:238
-#, php-format
-msgid "Dateiordner für das Thema \"%s\" angelegt."
-msgstr "Document folder for topic \"%s\" created."
-
-#: ../lib/raumzeit/Issue.class.php:260
-#, php-format
-msgid "Ordner im Forum für das Thema \"%s\" angelegt."
-msgstr "Folder for topic \"%s\" created."
-
-#: ../lib/raumzeit/raumzeit_functions.inc.php:56
-#, php-format
-msgid "[%s] Terminausfall"
-msgstr "[%s] Date cancellation"
-
-#: ../lib/raumzeit/raumzeit_functions.inc.php:59
-#, php-format
-msgid "In der Veranstaltung %s fällt der/die folgende(n) Termine aus:"
-msgstr "The following date(s) have been cancelled for the course %s:"
-
-#: ../lib/raumzeit/SingleDate.class.php:476
-#, php-format
-msgid "Vom %1$s, %2$s Uhr bis zum %3$s, %4$s Uhr (Sperrzeit)"
-msgstr "From %1$s, %2$s until %3$s, %4$s (locked)"
-
-#: ../lib/raumzeit/SingleDate.class.php:499
-#: ../lib/raumzeit/SingleDate.class.php:517
-#, php-format
-msgid "Am %1$s von %2$s bis %3$s Uhr durch Veranstaltung %4$s"
-msgstr "On %1$s from %2$s until %3$s by course %4$s"
-
-#: ../lib/raumzeit/SingleDate.class.php:530
-#, php-format
-msgid "Am %1$s von %2$s bis %3$s Uhr belegt von \"%4$s\""
-msgstr "Booked by \"%4$s\" on %1$s from %2$s to %3$s"
-
-#: ../lib/raumzeit/SingleDate.class.php:576
-#: ../lib/raumzeit/SingleDate.class.php:699
-#, php-format
-msgid "Für den Termin %1$s wurde der Raum %2$s gebucht."
-msgstr "The room %2$s has been booked for the date %1$s."
-
-#: ../lib/raumzeit/SingleDate.class.php:583
-msgid "Fehler beim Verknüpfen der Raumbelegung mit dem Einzeltermin!"
-msgstr "Error while assigning the room booking with the single date!"
-
-#: ../lib/raumzeit/SingleDate.class.php:587
-#: ../lib/raumzeit/SingleDate.class.php:663
-#, php-format
-msgid ""
-"Für den Termin %1$s konnte der Raum %2$s nicht gebucht werden, da es "
-"Überschneidungen mit folgenden Terminen gibt:"
-msgstr ""
-"The room %2$s could not be booked for the date %1$s since overlaps occurred "
-"with the following dates:"
-
-#: ../lib/raumzeit/SingleDate.class.php:636
-#: ../app/controllers/resources/room_request.php:805
-#: ../app/controllers/resources/room_request.php:1023
-#: ../app/controllers/course/room_requests.php:473
-#: ../app/controllers/course/room_requests.php:861
-#: ../app/controllers/course/timesrooms.php:421
-#: ../app/controllers/course/timesrooms.php:869
-#, php-format
-msgid ""
-"Die eingegebene Rüstzeit überschreitet das erlaubte Maximum von %d Minuten!"
-msgstr ""
-"The specified preparation time is longer than the allowed maximum of %d "
-"minutes!"
-
-#: ../lib/raumzeit/SingleDate.class.php:796
-msgid "Die Endzeitpunkt darf nicht vor dem Anfangszeitpunkt liegen!"
-msgstr "Final date may not be prior to starting date!"
-
-#: ../lib/raumzeit/SingleDate.class.php:976
-msgid "Die beteiligten Gruppen wurden zurückgesetzt!"
-msgstr "Groups reset!"
-
-#: ../lib/include/header.php:44 ../templates/layouts/base.php:158
-msgid "öffentliche Einrichtung"
-msgstr "public institute"
-
-#: ../lib/include/header.php:46 ../templates/layouts/base.php:160
-msgid "öffentliche Veranstaltung"
-msgstr "public course"
-
-#: ../lib/messaging.inc.php:233
-#, php-format
-msgid "Stud.IP für %s"
-msgstr "Stud.IP on behalf of %s"
-
-#: ../lib/messaging.inc.php:278
-msgid "Ohne Betreff"
-msgstr "Without subject"
-
-#: ../lib/messaging.inc.php:299 ../templates/mail/notification_html.php:46
-#: ../templates/mail/notification_text.php:30
-msgid ""
-"Diese Nachricht wurde automatisch vom Stud.IP-System generiert. Sie können "
-"darauf nicht antworten."
-msgstr ""
-"This message has automatically been generated by the Stud.IP system. You "
-"cannot reply to it."
-
-#: ../lib/messaging.inc.php:405
-#, php-format
-msgid "Sie haben eine Nachricht von %s erhalten!"
-msgstr "You have received a message from %s!"
-
-#: ../lib/exceptions/MethodNotAllowedException.php:21
-msgid "Unzulässige Request-Methode beim Aufruf."
-msgstr "Incorrect request method during invocation."
-
-#: ../lib/exceptions/AccessDeniedException.php:25
-msgid ""
-"Sie haben nicht die Berechtigung, diese Aktion auszuführen bzw. diesen Teil "
-"des Systems zu betreten."
-msgstr ""
-"You do not have the permissions to perform this action or to access this "
-"part of Stud.IP."
-
-#: ../lib/exceptions/SessionRequiredException.php:24
-msgid "Fehlende Session."
-msgstr "Missing session."
-
-#: ../lib/exceptions/InvalidSecurityTokenException.php:24
-msgid "Ungültiges oder fehlendes Sicherheits-Token."
-msgstr "Invalid or missing security token."
-
-#: ../lib/phplib/Seminar_Perm.class.php:59
-msgid ""
-"Sie sind nicht im System angemeldet und können daher nicht auf diesen Teil "
-"des Systems zugreifen. Um den vollen Funktionsumfang des Systems benutzen zu "
-"können, müssen Sie sich mit Ihrem Nutzernamen und Passwort anmelden."
-msgstr ""
-"You are not registered in the system and therefore cannot access this part "
-"of the system. To be able to use the full range of features of the system, "
-"you must register with your username and password."
-
-#: ../lib/phplib/Seminar_Register_Auth.class.php:50
-msgid "Registrierung"
-msgstr "Registration"
-
-#: ../lib/phplib/Seminar_Register_Auth.class.php:88
-msgid "Der gewählte Benutzername ist zu kurz!"
-msgstr "The selected username is too short!"
-
-#: ../lib/phplib/Seminar_Register_Auth.class.php:94
-msgid "Das Passwort ist zu kurz!"
-msgstr "The password is too short! "
-
-#: ../lib/phplib/Seminar_Register_Auth.class.php:99
-#: ../app/controllers/settings/account.php:93
-msgid "Der Vorname fehlt oder ist unsinnig!"
-msgstr "Missing or absurd first name!"
-
-#: ../lib/phplib/Seminar_Register_Auth.class.php:103
-#: ../app/controllers/settings/account.php:105
-msgid "Der Nachname fehlt oder ist unsinnig!"
-msgstr "Missing or absurd last name!"
-
-#: ../lib/phplib/Seminar_Register_Auth.class.php:115
-msgid ""
-"Der Mailserver ist nicht erreichbar, bitte überprüfen Sie, ob Sie E-Mails "
-"mit der angegebenen Adresse verschicken und empfangen können!"
-msgstr ""
-"The mail server is not reachable. Please check whether you can send and "
-"receive e-mails with the specified address!"
-
-#: ../lib/phplib/Seminar_Register_Auth.class.php:120
-msgid ""
-"Die angegebene E-Mail-Adresse ist nicht erreichbar, bitte überprüfen Sie "
-"Ihre Angaben!"
-msgstr ""
-"The specified e-mail address is not accessible. Please check your data!"
-
-#: ../lib/phplib/Seminar_Register_Auth.class.php:130
-msgid "Der gewählte Benutzername ist bereits vorhanden!"
-msgstr "The selected username has already been taken!"
-
-#: ../lib/phplib/Seminar_Register_Auth.class.php:135
-msgid ""
-"Die angegebene E-Mail-Adresse wird bereits von einem anderen Benutzer "
-"verwendet. Sie müssen eine andere E-Mail-Adresse angeben!"
-msgstr ""
-"The given e-mail address has already been taken by another user. You must "
-"enter a different e-mail address!"
-
-#: ../lib/phplib/Seminar_Auth.class.php:278
-msgid ""
-"Das System befindet sich im Wartungsmodus. Zur Zeit ist kein Zugriff möglich."
-msgstr "The system is in maintenance mode. No access possible at the moment."
-
-#: ../lib/phplib/Seminar_Auth.class.php:302
-msgid ""
-"Dieses Benutzerkonto ist abgelaufen. Wenden Sie sich bitte an die "
-"Administration."
-msgstr "This user account has expired. Please contact the administration."
-
-#: ../lib/phplib/Seminar_Auth.class.php:362
-#: ../lib/navigation/StudipNavigation.php:159
-#: ../lib/navigation/StudipNavigation.php:168
-#: ../lib/navigation/LoginNavigation.php:26
-#: ../lib/navigation/LoginNavigation.php:31 ../templates/loginform.php:71
-#: ../app/views/settings/account/logout.php:5
-#: ../app/views/my_ilias_accounts/new_account.php:4
-#: ../app/views/my_ilias_accounts/index.php:95
-msgid "Login"
-msgstr "Login"
-
-#: ../lib/seminar_open.php:138 ../lib/seminar_open.php:145
-#: ../lib/seminar_open.php:151
-msgid "Mehr …"
-msgstr "More …"
-
-#: ../lib/seminar_open.php:139
-msgid "Mehr Stud.IP-Funktionen für Ihre Veranstaltung"
-msgstr "Add features and functionality to your course"
-
-#: ../lib/seminar_open.php:146
-msgid "Mehr Stud.IP-Funktionen für Ihre Einrichtung"
-msgstr ""
-
-#: ../lib/seminar_open.php:152
-msgid "Mehr Stud.IP-Funktionen für Ihr Profil"
-msgstr "Add more features to your profile. "
-
-#: ../lib/seminar_open.php:183
-#, php-format
-msgid "Es gibt %u noch nicht ausgeführte Migration(en)."
-msgstr "There are %u migration(s) that aren't applied yet."
-
-#: ../lib/seminar_open.php:189
-#, php-format
-msgid "Zur %sMigrationsseite%s"
-msgstr "To the %smigration page%s"
-
-#: ../lib/seminar_open.php:196
-msgid "Diese Nachricht bis zum nächsten Login nicht mehr anzeigen"
-msgstr "Do not display this message until the next login"
-
-#: ../lib/calendar/CalendarExport.class.php:63
-msgid "Es wurden keine Termine exportiert."
-msgstr "No dates have been exported."
-
-#: ../lib/calendar/CalendarExport.class.php:65
-#, php-format
-msgid "Es wurde 1 Termin exportiert"
-msgid_plural "Es wurden %s Termine exportiert"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../lib/calendar/CalendarExportFile.class.php:65
-#: ../lib/calendar/CalendarExportFile.class.php:109
-msgid "Die Export-Datei konnte nicht erstellt werden!"
-msgstr "Export file cannot be generated!"
-
-#: ../lib/calendar/CalendarExportFile.class.php:95
-msgid "Das Export-Verzeichnis konnte nicht angelegt werden!"
-msgstr "Export folder cannot be generated!"
-
-#: ../lib/calendar/CalendarExportFile.class.php:98
-msgid ""
-"Die Zugriffsrechte auf das Export-Verzeichnis konnten nicht geändert werden!"
-msgstr "Access permission to the export folder cannot be changed!"
-
-#: ../lib/calendar/CalendarExportFile.class.php:104
-msgid "Eine bestehende Export-Datei konnte nicht gelöscht werden!"
-msgstr "An existing export file cannot be deleted!"
-
-#: ../lib/calendar/CalendarParserICalendar.class.php:68
-msgid "Die Import-Datei ist keine gültige iCalendar-Datei!"
-msgstr "The file is not a valid iCalendar file!"
-
-#: ../lib/calendar/CalendarParserICalendar.class.php:79
-msgid "Die importierte Datei enthält keine Termine."
-msgstr "The file does not contain any date."
-
-#: ../lib/calendar/CalendarParserICalendar.class.php:289
-#: ../lib/calendar/CalendarParserICalendar.class.php:317
-#: ../lib/calendar/CalendarParserICalendar.class.php:611
-#: ../lib/calendar/CalendarParserICalendar.class.php:614
-msgid "Die Datei ist keine gültige iCalendar-Datei!"
-msgstr "The file is not a valid iCalendar file!"
-
-#: ../lib/calendar/CalendarParserICalendar.class.php:501
-#: ../lib/calendar/CalendarParserICalendar.class.php:523
-#: ../lib/calendar/CalendarParserICalendar.class.php:572
-msgid ""
-"Der Import enthält Kalenderdaten, die Stud.IP nicht korrekt darstellen kann."
-msgstr ""
-"The import file contains calendar data that Stud.IP cannot display correctly."
-
-#: ../lib/calendar/CalendarImportFile.class.php:42
-msgid "Die Import-Datei konnte nicht geöffnet werden!"
-msgstr "Import file cannot be opened!"
-
-#: ../lib/calendar/CalendarImportFile.class.php:98
-#: ../lib/calendar/CalendarImportFile.class.php:113
-msgid "Die Datei konnte nicht gelesen werden!"
-msgstr "The file cannot be read!"
-
-#: ../lib/calendar/CalendarImportFile.class.php:122
-msgid "Die Datei konnte nicht gelöscht werden!"
-msgstr "File could not be deleted!"
-
-#: ../lib/calendar/CalendarView.class.php:162
-msgid ""
-"Es existiert noch keine Spalte in der Ansicht, zu der der Eintrag "
-"hinzugefügt werden kann."
-msgstr "In this view there exists no column this entry can be added to."
-
-#: ../lib/calendar/CalendarParser.class.php:90
-msgid "Die Import-Daten konnten nicht verarbeitet werden!"
-msgstr "The import file cannot be processed!"
-
-#: ../lib/functions.php:161
-#, php-format
-msgid "Das Inhaltselement \"%s\" ist für dieses Objekt leider nicht verfügbar."
-msgstr ""
-"For this object the content element \"%s\" unfortunately is not available."
-
-#: ../lib/functions.php:492 ../lib/functions.php:496
-#: ../app/views/admin/banner/datetime-picker.php:11
-msgid "mm"
-msgstr "mm"
-
-#: ../lib/functions.php:493
-msgid "tt"
-msgstr "dd"
-
-#: ../lib/functions.php:494
-msgid "jjjj"
-msgstr "yyyy"
-
-#: ../lib/functions.php:499 ../app/views/admin/banner/datetime-picker.php:7
-msgid "hh"
-msgstr "hh"
-
-#: ../lib/functions.php:1328
-#, php-format
-msgid "%u Sekunde"
-msgstr "%u second"
-
-#: ../lib/functions.php:1328
-#, php-format
-msgid "%u Sekunden"
-msgstr "%u seconds"
-
-#: ../lib/functions.php:1329
-#, php-format
-msgid "%u Minute"
-msgstr "%u minute"
-
-#: ../lib/functions.php:1329
-#, php-format
-msgid "%u Minuten"
-msgstr "%u minutes"
-
-#: ../lib/functions.php:1330
-#, php-format
-msgid "%u Stunde"
-msgstr "%u hour"
-
-#: ../lib/functions.php:1330
-#, php-format
-msgid "%u Stunden"
-msgstr "%u hours"
-
-#: ../lib/functions.php:1331
-#, php-format
-msgid "%u Tag"
-msgstr "%u day"
-
-#: ../lib/functions.php:1331
-#, php-format
-msgid "%u Tagen"
-msgstr "%u days"
-
-#: ../lib/functions.php:1332
-#, php-format
-msgid "%u Monat"
-msgstr "%u month"
-
-#: ../lib/functions.php:1332
-#, php-format
-msgid "%u Monaten"
-msgstr "%u months"
-
-#: ../lib/functions.php:1333
-#, php-format
-msgid "%u Jahr"
-msgstr "%u year"
-
-#: ../lib/functions.php:1333
-#, php-format
-msgid "%u Jahren"
-msgstr "%u years"
-
-#: ../lib/functions.php:1338
-#, php-format
-msgid "%us"
-msgstr "%us"
-
-#: ../lib/functions.php:1339
-#, php-format
-msgid "%umin"
-msgstr "%umin"
-
-#: ../lib/functions.php:1340
-#, php-format
-msgid "%uh"
-msgstr "%uh"
-
-#: ../lib/functions.php:1341
-#, php-format
-msgid "%ud"
-msgstr "%ud"
-
-#: ../lib/functions.php:1342
-#, php-format
-msgid "%uM"
-msgstr "%uM"
-
-#: ../lib/functions.php:1343
-#, php-format
-msgid "%uy"
-msgstr "%uy"
-
-#: ../lib/functions.php:1351
-msgid "jetzt"
-msgstr "now"
-
-#: ../lib/functions.php:1374
-#, php-format
-msgid "vor %s"
-msgstr "%s ago"
-
-#: ../lib/functions.php:1374
-#, php-format
-msgid "in %s"
-msgstr "in %s"
-
-#: ../lib/functions.php:1533 ../templates/access_denied_exception.php:5
-#: ../app/controllers/wysiwyg.php:319
-msgid "Zugriff verweigert"
-msgstr "Access denied"
-
-#: ../lib/archiv.inc.php:179
-msgid "in der Kategorie"
-msgstr "in the category"
-
-#: ../lib/archiv.inc.php:181 ../app/controllers/search/globalsearch.php:89
-#: ../app/controllers/course/basicdata.php:54
-#: ../app/controllers/course/archive.php:73
-msgid "Typ der Veranstaltung"
-msgstr "Type of course"
-
-#: ../lib/archiv.inc.php:185
-msgid "VeranstaltungsNummer"
-msgstr "CourseNumber"
-
-#: ../lib/archiv.inc.php:211
-msgid "Fakultät(en)"
-msgstr "Faculties"
-
-#: ../lib/archiv.inc.php:225 ../app/controllers/course/basicdata.php:126
-#: ../app/views/course/details/index.php:83
-msgid "Heimat-Einrichtung"
-msgstr "Home institute"
-
-#: ../lib/archiv.inc.php:236
-msgid "Beteiligte Einrichtung"
-msgstr "Involved institute"
-
-#: ../lib/archiv.inc.php:237 ../app/views/module/module/modul.php:309
-#: ../app/views/course/wizard/steps/basicdata/index.php:78
-msgid "Beteiligte Einrichtungen"
-msgstr "Associated institutions"
-
-#: ../lib/archiv.inc.php:242
-msgid "max. Personenanzahl"
-msgstr "max. amount of persons"
-
-#: ../lib/archiv.inc.php:249
-msgid "Anzahl der angemeldeten Personen"
-msgstr "Amount of enroled people"
-
-#: ../lib/archiv.inc.php:330
-msgid ""
-"Hinweis: Diese Datei wurde nicht archiviert, da sie lediglich verlinkt wurde."
-msgstr "Note: This file was not archived because it was just linked."
-
-#: ../lib/archiv.inc.php:409
-msgid "(unsichtbareR NutzerIn)"
-msgstr "(invisible user)"
-
-#: ../lib/archiv.inc.php:463
-msgid "zusätzliche Termine"
-msgstr "additional dates"
-
-#: ../lib/filesystem/VirtualFolderType.php:54
-msgid "Virtueller Ordner"
-msgstr "Virtual folder"
-
-#: ../lib/filesystem/CourseDateFolder.php:24
-#, php-format
-msgid "%'.02d. %s am %s"
-msgstr "%'.02d. %s on %s"
-
-#: ../lib/filesystem/CourseDateFolder.php:33
-msgid "Sitzungs-Ordner"
-msgstr "Session folder"
-
-#: ../lib/filesystem/CourseDateFolder.php:71
-msgid "(Termin gelöscht)"
-msgstr "(Date deleted)"
-
-#: ../lib/filesystem/CourseDateFolder.php:109
-msgid "Es wurde kein Termin ausgewählt."
-msgstr "No date has been selected."
-
-#: ../lib/filesystem/InstitutePublicFolder.php:23
-#: ../lib/filesystem/CoursePublicFolder.php:27
-msgid "Ordner für öffentlich zugängliche Dateien"
-msgstr "Folder for publicly accessible files"
-
-#: ../lib/filesystem/InstitutePublicFolder.php:78
-msgid ""
-"Dateien aus diesem Ordner sind auch für Personen sichtbar, die nicht der "
-"Einrichtung zugeordnet sind."
-msgstr ""
-"Files from this folder are visible for persons who are not assigned to the "
-"institute."
-
-#: ../lib/filesystem/MaterialFolder.php:53
-msgid "Materialordner zum Anbieten von Inhalten zum Download"
-msgstr "Material folder to offer content for downloading"
-
-#: ../lib/filesystem/PermissionEnabledFolder.php:28
-msgid "Ordner mit Zugangsbeschränkung"
-msgstr "Folder with access restrictions"
-
-#: ../lib/filesystem/PermissionEnabledFolder.php:109
-msgid "Der Dateiordner ist nicht beschreibbar."
-msgstr "The folder is not writeable."
-
-#: ../lib/filesystem/FileArchiveManager.class.php:114
-#: ../lib/filesystem/FileArchiveManager.class.php:144
-#: ../lib/filesystem/FileArchiveManager.class.php:178
-#, php-format
-msgid "Das ZIP-Archiv ist zu groß! Die maximal erlaubte Größe ist %d bytes!"
-msgstr "The ZIP archive is too big! Maximum allowed size is %d bytes!"
-
-#: ../lib/filesystem/FileArchiveManager.class.php:168
-#, php-format
-msgid ""
-"Das Archiv beinhaltet zu viele Dateibereich-Objekte! Die Obergrenze liegt "
-"bei %d Objekten!"
-msgstr ""
-"The archive contains too many file area objects! The limit is %d objects!"
-
-#: ../lib/filesystem/FileArchiveManager.class.php:375
-#: ../lib/filesystem/FileArchiveManager.class.php:504
-msgid "Der Zielpfad für das Archiv wurde nicht angegeben!"
-msgstr "The destination path for the archive has not been provided!"
-
-#: ../lib/filesystem/FileArchiveManager.class.php:383
-msgid "Es wurden keine Dateien ausgewählt!"
-msgstr "No files have been selected!"
-
-#: ../lib/filesystem/FileArchiveManager.class.php:457
-#: ../app/views/oer/mymaterial/_material_list.php:7
-#: ../app/views/files/_files_thead.php:37 ../app/views/file/_file_aside.php:15
-msgid "Downloads"
-msgstr "Downloads"
-
-#: ../lib/filesystem/FileArchiveManager.class.php:459
-#: ../app/views/my_ilias_accounts/_ilias_module.php:52
-#: ../app/views/file/file_details.php:8
-msgid "Pfad"
-msgstr "Path"
-
-#: ../lib/filesystem/FileArchiveManager.class.php:476
-msgid "Das ZIP Archiv enthält keine Dateien!"
-msgstr "The ZIP archive doesn't contain any file!"
-
-#: ../lib/filesystem/FileArchiveManager.class.php:734
-msgid "Der Ordner wurde im Dateisystem des Servers nicht gefunden!"
-msgstr "The folder could not be found in the server's file system!"
-
-#: ../lib/filesystem/MessageFolder.php:132
-msgid "Nachrichtenordner"
-msgstr "Message folder"
-
-#: ../lib/filesystem/CourseGroupFolder.php:33
-msgid "Gruppenordner"
-msgstr "Group folder"
-
-#: ../lib/filesystem/CourseGroupFolder.php:137
-msgid "Es wurde keine gültige Gruppe ausgewählt."
-msgstr "No valid group has been selected."
-
-#: ../lib/filesystem/HiddenFolder.php:37
-msgid "Unsichtbarer Ordner"
-msgstr "Invisible folder"
-
-#: ../lib/filesystem/InboxFolder.php:27
-msgid "Alle Anhänge eingegangener Nachrichten"
-msgstr "All attachments of incoming messages"
-
-#: ../lib/filesystem/InboxFolder.php:77
-msgid "Eingehende Dateianhänge"
-msgstr "Incoming file attachments"
-
-#: ../lib/filesystem/RootFolder.php:23 ../app/controllers/oer/addfile.php:82
-#: ../app/controllers/file.php:832 ../app/controllers/file.php:1397
-msgid "Hauptordner"
-msgstr "Main folder"
-
-#: ../lib/filesystem/HomeworkFolder.php:31
-msgid "Ordner für Hausarbeiten"
-msgstr "Homework folder"
-
-#: ../lib/filesystem/StandardFile.php:47
-#, php-format
-msgid "Die maximale Dateigröße von %s wurde überschritten!"
-msgstr "The maximum file size of %s has been exceeded!"
-
-#: ../lib/filesystem/StandardFile.php:50 ../lib/filesystem/FileManager.php:286
-#: ../lib/filesystem/FileManager.php:289
-#, php-format
-msgid "Ein Systemfehler ist beim Upload aufgetreten. Fehlercode: %s."
-msgstr "A system error occurred during upload. Error code: %s."
-
-#: ../lib/filesystem/StandardFile.php:235
-#: ../lib/filesystem/FilesystemVueDataManager.php:63
-#: ../lib/filesystem/LibraryFile.class.php:208
-#: ../templates/sidebar/room-clipboard-item.php:56
-#: ../app/controllers/files_dashboard/helpers.php:25
-#: ../app/views/admission/courseset/configure.php:5
-#: ../app/views/admission/courseset/index.php:3
-#: ../app/views/admission/courseset/index.php:4
-#: ../app/views/admission/user_list/configure.php:4
-#: ../app/views/admission/user_list/configure.php:7
-#: ../app/views/admission/user_list/index.php:2
-#: ../app/views/admission/user_list/index.php:7
-#: ../app/views/shared/log_event/show.php:31
-#: ../app/views/files/_folder_tr.php:76
-#: ../app/views/course/ilias_interface/add_object.php:101
-#: ../app/views/course/ilias_interface/add_object.php:104
-#: ../app/views/course/ilias_interface/index.php:41
-#: ../app/views/course/ilias_interface/index.php:43
-#: ../app/views/admin/login_style/index.php:14
-#: ../app/views/event_log/show.php:91
-#: ../app/views/my_ilias_accounts/index.php:38
-#: ../app/views/my_ilias_accounts/index.php:40
-msgid "Info"
-msgstr "Information"
-
-#: ../lib/filesystem/StandardFile.php:244
-#: ../lib/filesystem/StandardFile.php:250
-#: ../app/controllers/files_dashboard/helpers.php:35
-#: ../app/views/file/folder_details.php:34
-msgid "Ordner öffnen"
-msgstr "Open folder"
-
-#: ../lib/filesystem/StandardFile.php:258 ../lib/filesystem/URLFile.php:83
-#: ../app/controllers/files_dashboard/helpers.php:43
-#: ../app/views/file/edit.php:10 ../app/views/file/edit_urlfile.php:10
-msgid "Datei bearbeiten"
-msgstr "Edit file"
-
-#: ../lib/filesystem/StandardFile.php:265
-#: ../app/controllers/files_dashboard/helpers.php:49
-msgid "Datei aktualisieren"
-msgstr "Update file"
-
-#: ../lib/filesystem/StandardFile.php:274
-#: ../app/controllers/files_dashboard/helpers.php:58
-msgid "Datei verschieben"
-msgstr "Move file"
-
-#: ../lib/filesystem/StandardFile.php:283
-#: ../app/controllers/files_dashboard/helpers.php:67
-msgid "Datei kopieren"
-msgstr "Copy file"
-
-#: ../lib/filesystem/StandardFile.php:290
-msgid "Link kopieren"
-msgstr "Copy link"
-
-#: ../lib/filesystem/StandardFile.php:300
-#: ../app/controllers/course/feedback.php:49
-#: ../app/controllers/course/feedback.php:186
-#: ../app/controllers/course/files.php:93 ../app/views/files/_folder_tr.php:111
-#: ../app/views/course/feedback/index_for.php:11
-msgid "Neues Feedback-Element"
-msgstr "New feedback element"
-
-#: ../lib/filesystem/StandardFile.php:309
-#: ../lib/filesystem/LibraryFile.class.php:246
-#: ../app/controllers/files_dashboard/helpers.php:76
-msgid "Datei löschen"
-msgstr "Delete file"
-
-#: ../lib/filesystem/StandardFile.php:313
-#: ../lib/filesystem/LibraryFile.class.php:253
-#: ../app/controllers/files_dashboard/helpers.php:78
-#, php-format
-msgid "Soll die Datei \"%s\" wirklich gelöscht werden?"
-msgstr "Do you really want to delete the file \"%s\"?"
-
-#: ../lib/filesystem/StandardFile.php:334
-#: ../lib/filesystem/LibraryFile.class.php:283
-#: ../app/views/oer/market/details.php:50
-#: ../app/views/oer/market/details.php:345
-#: ../app/views/profile/public_files.php:31
-#: ../app/views/resources/resource/files.php:41 ../app/views/files/flat.php:21
-#: ../app/views/files/index.php:43 ../app/views/files/_flat_tfoot.php:15
-#: ../app/views/course/dates/details.php:83
-#: ../app/views/admin/plugin/index.php:121
-#: ../app/views/admin/plugin/index.php:122
-msgid "Herunterladen"
-msgstr "Download"
-
-#: ../lib/filesystem/CoursePublicFolder.php:107
-msgid ""
-"Dateien aus diesem Ordner werden auf der Detailseite der Veranstaltung zum "
-"Download angeboten."
-msgstr ""
-"Files from this folder will be made available for downloading on the details "
-"page of the course."
-
-#: ../lib/filesystem/PublicFolder.php:27
-msgid "Ein Ordner für öffentlich zugängliche Daten"
-msgstr "A folder for files which are open to the public"
-
-#: ../lib/filesystem/PublicFolder.php:113
-msgid ""
-"Dateien aus diesem Ordner werden auf Ihrer Profilseite zum Download "
-"angeboten."
-msgstr ""
-"Files from this folder will be made available for download on your profile "
-"page."
-
-#: ../lib/filesystem/PublicFolder.php:114
-msgid "Dateien aus diesem Ordner sind für alle Stud.IP Nutzer zugreifbar."
-msgstr "Files from this folder are accessible for all Stud.IP users."
-
-#: ../lib/filesystem/FileManager.php:201
-msgid "Geschützte Dateisammlung"
-msgstr "Protected document collection"
-
-#: ../lib/filesystem/FileManager.php:201
-msgid "Dateisammlung"
-msgstr "Document collection"
-
-#: ../lib/filesystem/FileManager.php:321
-msgid "Keine Schreibrechte für Zielordner!"
-msgstr "No write permissions for destination folder!"
-
-#: ../lib/filesystem/FileManager.php:351 ../app/controllers/messages.php:862
-#: ../app/controllers/materialien/files.php:379 ../app/controllers/file.php:122
-msgid "Ein Systemfehler ist beim Upload aufgetreten."
-msgstr "A system error occurred during upload."
-
-#: ../lib/filesystem/FileManager.php:403
-#, php-format
-msgid "Sie sind nicht dazu berechtigt, die Datei %s zu aktualisieren!"
-msgstr "You are not allowed to update the file %s!"
-
-#: ../lib/filesystem/FileManager.php:430 ../lib/filesystem/FileManager.php:436
-#: ../lib/filesystem/FileManager.php:451 ../lib/filesystem/FileManager.php:480
-msgid ""
-"Aktualisierte Datei konnte nicht ins Stud.IP Dateisystem übernommen werden!"
-msgstr "Updated file could not be inserted in the Stud.IP file system!"
-
-#: ../lib/filesystem/FileManager.php:573
-msgid "Dateireferenz ist keinem Ordner zugeordnet!"
-msgstr "File reference is not assigned to a folder!"
-
-#: ../lib/filesystem/FileManager.php:578
-msgid "Ordnertyp konnte nicht ermittelt werden!"
-msgstr "Folder type could not be determined!"
-
-#: ../lib/filesystem/FileManager.php:583
-#, php-format
-msgid "Ungenügende Berechtigungen zum Bearbeiten der Datei %s!"
-msgstr "Insufficient privileges for modifying file %s!"
-
-#: ../lib/filesystem/FileManager.php:598
-#, php-format
-msgid "Verzeichnis von Datei %s nicht gefunden!"
-msgstr "Directory of file %s not found!"
-
-#: ../lib/filesystem/FileManager.php:615
-#, php-format
-msgid "Inhalts-Nutzungsbedingungen mit ID %s nicht gefunden!"
-msgstr "Content terms of use with ID %s not found!"
-
-#: ../lib/filesystem/FileManager.php:640
-#, php-format
-msgid "Fehler beim Speichern der Änderungen bei Datei %s"
-msgstr "Error while saving the changes in file %s"
-
-#: ../lib/filesystem/FileManager.php:669 ../lib/filesystem/FileManager.php:708
-#: ../lib/filesystem/FileManager.php:772
-msgid "Ordnertyp des Quellordners konnte nicht ermittelt werden!"
-msgstr "Folder type of the source folder could not be determined!"
-
-#: ../lib/filesystem/FileManager.php:677 ../lib/filesystem/FileManager.php:716
-#, php-format
-msgid "Ungenügende Berechtigungen zum Kopieren der Datei %s in Ordner %s!"
-msgstr "Insufficient permissions to copy the file %s into folder %s!"
-
-#: ../lib/filesystem/FileManager.php:742
-msgid "Datei konnte nicht gespeichert werden."
-msgstr "File could not be saved."
-
-#: ../lib/filesystem/FileManager.php:777
-#: ../lib/filesystem/StandardFolder.php:354
-#, php-format
-msgid "Ungenügende Berechtigungen zum Löschen der Datei %s in Ordner %s!"
-msgstr "Insufficient permissions to delete the file %s in folder %s!"
-
-#: ../lib/filesystem/FileManager.php:786
-msgid "Dateireferenz konnte nicht gelöscht werden."
-msgstr "File reference could not be deleted."
-
-#: ../lib/filesystem/FileManager.php:816
-msgid "Es wurde kein Ordnertyp angegeben!"
-msgstr "No folder type has been specified!"
-
-#: ../lib/filesystem/FileManager.php:822
-#, php-format
-msgid "Die Klasse %s ist nicht von FolderType abgeleitet!"
-msgstr "The class %s is not derived from FolderType!"
-
-#: ../lib/filesystem/FileManager.php:829
-msgid "Es wurde kein Ordnername angegeben!"
-msgstr "No folder name has been provided!"
-
-#: ../lib/filesystem/FileManager.php:847
-#, php-format
-msgid ""
-"Ein Ordner vom Typ %s kann nicht in einem Ordner vom Typ %s erzeugt werden!"
-msgstr "A folder of type %s cannot be created inside a folder of type %s!"
-
-#: ../lib/filesystem/FileManager.php:855
-msgid "Sie sind nicht dazu berechtigt, einen Unterordner zu erstellen!"
-msgstr "You are not allowed to create a subfolder!"
-
-#: ../lib/filesystem/FileManager.php:901
-#, php-format
-msgid "Unzureichende Berechtigungen zum Kopieren von Ordner %s in Ordner %s!"
-msgstr "Insufficient permissions to copy the folder %s into folder %s!"
-
-#: ../lib/filesystem/FileManager.php:912
-#, php-format
-msgid ""
-"Unzureichende Berechtigungen zum Kopieren von Veranstaltungsordner %s in "
-"Ordner %s!"
-msgstr "Insufficient permissions to copy the course folder %s into folder %s!"
-
-#: ../lib/filesystem/FileManager.php:946
-msgid ""
-"Ein Ordner kann nicht in sich selbst oder einen seiner Unterordner kopiert "
-"werden!"
-msgstr "A folder cannot be copied into itself or one of its subfolders!"
-
-#: ../lib/filesystem/FileManager.php:1009
-#, php-format
-msgid ""
-"Unzureichende Berechtigungen zum Verschieben von Ordner %s in Ordner %s!"
-msgstr "Insufficient permissions to move the folder %s into folder %s!"
-
-#: ../lib/filesystem/FileManager.php:1034
-msgid ""
-"Ein Ordner kann nicht in sich selbst oder einen seiner Unterordner "
-"verschoben werden!"
-msgstr "A folder cannot be moved into itself or one of its subfolders!"
-
-#: ../lib/filesystem/FileManager.php:1067
-msgid "Fehler beim Verschieben des Ordners."
-msgstr "Error while moving the folder."
-
-#: ../lib/filesystem/FileManager.php:1109
-#, php-format
-msgid "Unzureichende Berechtigungen zum Löschen von Ordner %s!"
-msgstr "Insufficient permissions to delete folder %s!"
-
-#: ../lib/filesystem/FileManager.php:1122
-#, php-format
-msgid "Fehler beim Löschvorgang von Ordner %s!"
-msgstr "Error while deleting folder %s!"
-
-#: ../lib/filesystem/UnknownFileType.php:104
-msgid "Unbekannter Dateityp"
-msgstr "Unknown file type"
-
-#: ../lib/filesystem/FilesystemVueDataManager.php:70
-#: ../app/controllers/course/files.php:58
-#: ../app/controllers/institute/files.php:59 ../app/controllers/files.php:90
-#: ../app/views/files/_folder_tr.php:83
-msgid "Ordner bearbeiten"
-msgstr "Edit folder"
-
-#: ../lib/filesystem/FilesystemVueDataManager.php:78
-#: ../app/views/files/_folder_tr.php:91
-msgid "Ordner herunterladen"
-msgstr "Download folder"
-
-#: ../lib/filesystem/FilesystemVueDataManager.php:85
-#: ../app/views/files/_folder_tr.php:98
-msgid "Ordner verschieben"
-msgstr "Move folder"
-
-#: ../lib/filesystem/FilesystemVueDataManager.php:91
-#: ../app/views/files/_folder_tr.php:104
-msgid "Ordner kopieren"
-msgstr "Copy folder"
-
-#: ../lib/filesystem/FilesystemVueDataManager.php:97
-#: ../app/views/files/_folder_tr.php:118
-msgid "Ordner löschen"
-msgstr "Delete folder"
-
-#: ../lib/filesystem/FilesystemVueDataManager.php:99
-#: ../app/views/files/_folder_tr.php:120
-#, php-format
-msgid "Soll der Ordner \"%s\" wirklich gelöscht werden?"
-msgstr "Do you really want to delete the folder \"%s\"?"
-
-#: ../lib/filesystem/StandardFolder.php:49
-msgid "Ordner"
-msgstr "Folder"
-
-#: ../lib/filesystem/StandardFolder.php:214
-#: ../lib/filesystem/CourseTopicFolder.php:105
-msgid "Die Bezeichnung des Ordners fehlt."
-msgstr "The folder's description is missing."
-
-#: ../lib/filesystem/StandardFolder.php:244
-#, php-format
-msgid "Die maximale Größe für einen Upload (%s) wurde überschritten."
-msgstr "The maximal size for an upload (%s) has been exceeded."
-
-#: ../lib/filesystem/StandardFolder.php:254
-#: ../app/views/file/add_files_window.php:89
-#, php-format
-msgid "Sie dürfen nur die Dateitypen %s hochladen!"
-msgstr "You may only upload the file types %s!"
-
-#: ../lib/filesystem/StandardFolder.php:260
-#, php-format
-msgid "Sie dürfen den Dateityp %s nicht hochladen!"
-msgstr "You are not allowed to upload the file type %s!"
-
-#: ../lib/filesystem/TimedFolder.php:54
-msgid "Zeitgesteuerter Ordner"
-msgstr "Time-controlled folder"
-
-#: ../lib/filesystem/TimedFolder.php:183
-msgid "Bitte geben Sie eine Start- und/oder Endzeit an."
-msgstr "Please specify a start and/or end time."
-
-#: ../lib/filesystem/TimedFolder.php:190
-msgid "Die Startzeit muss kleiner als die Endzeit sein."
-msgstr "The start time must be earlier than the end time."
-
-#: ../lib/filesystem/CourseTopicFolder.php:25
-msgid "Themen-Ordner"
-msgstr "Topic folder"
-
-#: ../lib/filesystem/CourseTopicFolder.php:101
-msgid "Es wurde kein Thema ausgewählt."
-msgstr "No topic has been selected."
-
-#: ../lib/filesystem/OutboxFolder.php:28
-msgid "Alle Anhänge gesendeter Nachrichten"
-msgstr "All attachments of sent messages"
-
-#: ../lib/filesystem/OutboxFolder.php:89
-msgid "Ausgehende Dateianhänge"
-msgstr "Outgoing file attachments"
-
-#: ../lib/filesystem/ResourceFolder.class.php:14
-msgid "Ressourcen-Dateiordner"
-msgstr "Resource folder"
-
-#: ../lib/filesystem/ResourceFolder.class.php:119
-msgid "Ressourcenordner dürfen nicht geändert werden!"
-msgstr "Resource folders must not be modified!"
-
-#: ../lib/filesystem/LibraryFile.class.php:156
-#: ../templates/library/library_document_info.php:12
-msgid "Suche in der Bibliothek"
-msgstr "Library search"
-
-#: ../lib/filesystem/LibraryFile.class.php:283
-#: ../lib/filesystem/URLFile.php:105
-msgid "Öffnen"
-msgstr "Open"
-
-#: ../lib/filesystem/LibraryFile.class.php:328
-msgid "Fehler beim Speichern der Datei!"
-msgstr "Error while saving the file!"
-
-#: ../lib/filesystem/LibraryFile.class.php:334
-msgid "Es gibt kein Dateiobjekt zum Bibliothekseintrag!"
-msgstr "No file object exists for the library entry!"
-
-#: ../lib/filesystem/LibraryFile.class.php:343
-msgid "Das Dateiobjekt zum Bibliothekseintrag hat keine Metadaten!"
-msgstr "The file object for the library entry does not have metadata!"
-
-#: ../lib/filesystem/LibraryFile.class.php:349
-msgid "Die neue Datei konnte nicht gespeichert werden!"
-msgstr "The new file could not be saved!"
-
-#: ../lib/filesystem/LibraryFile.class.php:358
-msgid ""
-"Die Verknüfpung der Datei mit dem Bibliothekseintrag konnte nicht "
-"gespeichert werden!"
-msgstr "The link of the file with the library entry could not be saved!"
-
-#: ../lib/filesystem/LibraryFile.class.php:363
-msgid "Der Bibliothekseintrag ist nicht mit einer virtuellen Datei verknüpft!"
-msgstr "The library entry is not linked to a virtual file!"
-
-#: ../lib/filesystem/MVVFolder.php:56
-msgid "Ein Ordner für Studiengänge"
-msgstr "A folder for courses of study"
-
-#: ../lib/filesystem/MVVFolder.php:66
-msgid ""
-"Dateien aus diesem Ordner werden durch den Studiengang zum Download "
-"angeboten."
-msgstr ""
-"Files of this folder are available for downloading by the course of study."
-
-#: ../lib/filesystem/InboxOutboxFolder.php:49
-msgid "InboxOutboxFolder"
-msgstr "InboxOutboxFolder"
-
-#: ../lib/filesystem/InboxOutboxFolder.php:175
-msgid "InboxOutbox-Ordner können nicht bearbeitet werden!"
-msgstr "InboxOutbox folders cannot be edited!"
-
-#: ../lib/filesystem/InboxOutboxFolder.php:210
-msgid ""
-"In InboxOutbox-Ordnern können keine nutzerdefinierten Unterordner erzeugt "
-"werden!"
-msgstr "No user-defined subfolders can be created in InboxOutbox folders!"
-
-#: ../lib/filesystem/UnknownFolderType.php:43
-msgid "Unbekannter Ordner Typ"
-msgstr "Unknown folder type"
-
-#: ../lib/filesystem/UnknownFolderType.php:80
-#, php-format
-msgid " (unbekannter Typ: %s)"
-msgstr " (unknown type: %s)"
-
-#: ../lib/navigation/AvatarNavigation.php:15
-msgid "Avatar-Menü"
-msgstr "Avatar menu"
-
-#: ../lib/navigation/AvatarNavigation.php:33
-#: ../lib/navigation/ProfileNavigation.php:63
-msgid "Persönliche Angaben"
-msgstr "Personal details"
-
-#: ../lib/navigation/AvatarNavigation.php:44
-msgid "Logout"
-msgstr "Logout"
-
-#: ../lib/navigation/AdminNavigation.php:26
-msgid "Zu Ihrer Administrationsseite"
-msgstr "To your administration page"
-
-#: ../lib/navigation/AdminNavigation.php:41
-msgid "zurück zur ausgewählten Einrichtung"
-msgstr "back to selected institute"
-
-#: ../lib/navigation/AdminNavigation.php:43
-msgid "zur ausgewählten Einrichtung"
-msgstr "to selected institute"
-
-#: ../lib/navigation/AdminNavigation.php:47
-msgid "zurück zur ausgewählten Veranstaltung"
-msgstr "back to selected course"
-
-#: ../lib/navigation/AdminNavigation.php:49
-msgid "zur neu angelegten Veranstaltung"
-msgstr "to newly created course"
-
-#: ../lib/navigation/AdminNavigation.php:51
-msgid "zur ausgewählten Veranstaltung"
-msgstr "to selected course"
-
-#: ../lib/navigation/AdminNavigation.php:64
-#: ../lib/navigation/ProfileNavigation.php:80
-#: ../app/views/admin/user/edit.php:512
-msgid "Nutzerdomänen"
-msgstr "User domains"
-
-#: ../lib/navigation/AdminNavigation.php:65
-msgid "Automatisiertes Eintragen"
-msgstr "Automatic enrolment"
-
-#: ../lib/navigation/AdminNavigation.php:76
-msgid "Funktionen / Gruppen"
-msgstr "Functions / Groups"
-
-#: ../lib/navigation/AdminNavigation.php:83
-#: ../lib/navigation/AdminNavigation.php:113
-msgid "Externe Seiten"
-msgstr "External pages"
-
-#: ../lib/navigation/AdminNavigation.php:87
-msgid "Neue Einrichtung anlegen"
-msgstr "Enter a new institute"
-
-#: ../lib/navigation/AdminNavigation.php:94
-msgid "Einrichtungshierarchie"
-msgstr "Institute hierarchy"
-
-#: ../lib/navigation/AdminNavigation.php:98
-msgid "Veranstaltungshierarchie"
-msgstr "Course hierarchy"
-
-#: ../lib/navigation/AdminNavigation.php:102
-#: ../app/controllers/admin/courses.php:983
-msgid "Sperrebenen"
-msgstr "Locking levels"
-
-#: ../lib/navigation/AdminNavigation.php:109
-#: ../app/views/admin/holidays/index.php:5
-msgid "Ferien"
-msgstr "Vacation period"
-
-#: ../lib/navigation/AdminNavigation.php:116
-#: ../app/controllers/admin/sem_classes.php:20
-msgid "Veranstaltungskategorien"
-msgstr "Course categories"
-
-#: ../lib/navigation/AdminNavigation.php:117
-msgid "Startbildschirm"
-msgstr "Start screen"
-
-#: ../lib/navigation/AdminNavigation.php:121
-#: ../app/controllers/admin/content_terms_of_use.php:46
-#: ../app/views/admin/content_terms_of_use/index.php:2
-msgid "Inhalts-Nutzungsbedingungen"
-msgstr "Content terms of use"
-
-#: ../lib/navigation/AdminNavigation.php:128
-#: ../app/views/admin/licenses/index.php:3
-msgid "Lizenzen"
-msgstr ""
-
-#: ../lib/navigation/AdminNavigation.php:134
-msgid "Werbebanner"
-msgstr "Advertising banner"
-
-#: ../lib/navigation/AdminNavigation.php:153
-#: ../app/views/admin/role/index.php:11
-#: ../app/views/admin/sem_classes/details.php:244
-msgid "Plugins"
-msgstr "Plug-ins"
-
-#: ../lib/navigation/AdminNavigation.php:154
-#: ../app/views/admin/user/index.php:188
-msgid "Rollen"
-msgstr "Roles"
-
-#: ../lib/navigation/AdminNavigation.php:159
-msgid "Anlegeassistent"
-msgstr "Course set-up wizard"
-
-#: ../lib/navigation/AdminNavigation.php:160
-#: ../lib/navigation/CommunityNavigation.php:71
-#: ../lib/navigation/StartNavigation.php:237
-msgid "Studiengruppen"
-msgstr "Study groups"
-
-#: ../lib/navigation/AdminNavigation.php:167
-#: ../lib/navigation/ToolsNavigation.php:97
-#: ../app/views/tour/admin_overview.php:23
-msgid "Touren"
-msgstr "Tours"
-
-#: ../lib/navigation/AdminNavigation.php:169
-#: ../lib/navigation/ToolsNavigation.php:99
-msgid "Hilfe-Texte"
-msgstr "Help texts"
-
-#: ../lib/navigation/AdminNavigation.php:176
-msgid "Webservices"
-msgstr "Web services"
-
-#: ../lib/navigation/AdminNavigation.php:180
-#: ../app/controllers/admin/cronjobs/schedules.php:27
-msgid "Cronjobs"
-msgstr "Cronjobs"
-
-#: ../lib/navigation/AdminNavigation.php:184
-msgid "Pers. Dateibereich"
-msgstr "Personal file area"
-
-#: ../lib/navigation/AdminNavigation.php:188
-#: ../app/views/admission/courseset/configure.php:152
-#: ../app/views/course/admission/index.php:4
-#: ../app/views/course/details/index.php:436
-#: ../app/views/admin/semester/lock.php:13
-msgid "Anmelderegeln"
-msgstr "Admission settings"
-
-#: ../lib/navigation/AdminNavigation.php:191
-msgid "API"
-msgstr "API"
-
-#: ../lib/navigation/AdminNavigation.php:194
-#: ../lib/navigation/SearchNavigation.php:43
-#: ../app/controllers/search/globalsearch.php:27
-msgid "Globale Suche"
-msgstr "Global search"
-
-#: ../lib/navigation/AdminNavigation.php:195
-#: ../app/controllers/admin/cache.php:29
-msgid "Cache"
-msgstr ""
-
-#: ../lib/navigation/AdminNavigation.php:205
-#: ../lib/navigation/AdminNavigation.php:206
-msgid "Log"
-msgstr "Log"
-
-#: ../lib/navigation/AdminNavigation.php:221
-msgid "Admin-Plugins"
-msgstr "Admin plug-ins"
-
-#: ../lib/navigation/BrowseNavigation.php:30
-#: ../lib/navigation/CourseNavigation.php:28
-msgid "Meine Veranstaltungen & Einrichtungen"
-msgstr "My courses and institutes"
-
-#: ../lib/navigation/BrowseNavigation.php:36
-#: ../lib/navigation/CourseNavigation.php:31
-msgid "Freie"
-msgstr "Public"
-
-#: ../lib/navigation/BrowseNavigation.php:37
-#: ../lib/navigation/CourseNavigation.php:32
-msgid "Freie Veranstaltungen"
-msgstr "Public courses"
-
-#: ../lib/navigation/BrowseNavigation.php:68
-msgid "Veranstaltungsadministration"
-msgstr "Course administration"
-
-#: ../lib/navigation/BrowseNavigation.php:68
-msgid "Aktuelle Veranstaltungen"
-msgstr "Current courses"
-
-#: ../lib/navigation/BrowseNavigation.php:71
-msgid "Überschneidungsfreiheit"
-msgstr "Conflicting courses"
-
-#: ../lib/navigation/BrowseNavigation.php:80
-#: ../lib/navigation/BrowseNavigation.php:82
-#: ../lib/navigation/CommunityNavigation.php:74
-#: ../app/controllers/my_studygroups.php:16
-#: ../app/views/my_studygroups/index.php:4
-msgid "Meine Studiengruppen"
-msgstr "My study groups"
-
-#: ../lib/navigation/BrowseNavigation.php:81
-#: ../lib/navigation/CommunityNavigation.php:72
-msgid "Studiengruppensuche"
-msgstr "Search study groups"
-
-#: ../lib/navigation/BrowseNavigation.php:87 ../app/controllers/news.php:294
-#: ../app/controllers/my_institutes.php:14
-#: ../app/views/my_institutes/index.php:24
-#: ../app/views/my_institutes/index.php:26
-#: ../app/views/file/choose_destination.php:51
-msgid "Meine Einrichtungen"
-msgstr "My institutes"
-
-#: ../lib/navigation/ToolsNavigation.php:29
-#: ../lib/navigation/ToolsNavigation.php:31
-#: ../lib/navigation/StartNavigation.php:277
-msgid "Tools"
-msgstr "Tools"
-
-#: ../lib/navigation/ToolsNavigation.php:63
-#: ../app/controllers/questionnaire.php:646
-msgid "Fragebögen zuordnen"
-msgstr "Assign questionnaires"
-
-#: ../lib/navigation/ToolsNavigation.php:86
-#: ../app/controllers/admission/courseset.php:29
-#: ../app/controllers/admission/rule.php:29
-msgid "Anmeldesets"
-msgstr "Admissions"
-
-#: ../lib/navigation/ToolsNavigation.php:88
-msgid "Anmeldesets verwalten"
-msgstr "Manage admissions"
-
-#: ../lib/navigation/ToolsNavigation.php:89
-#: ../app/controllers/admission/userlist.php:27
-msgid "Personenlisten"
-msgstr "Participant lists"
-
-#: ../lib/navigation/ToolsNavigation.php:90
-msgid "teilnahmebeschränkte Veranstaltungen"
-msgstr "restricted courses"
-
-#: ../lib/navigation/ToolsNavigation.php:94
-#: ../lib/navigation/StartNavigation.php:307
-#: ../lib/navigation/LoginNavigation.php:54
-#: ../app/views/admin/install/layout.php:60
-msgid "Hilfe"
-msgstr "Help"
-
-#: ../lib/navigation/ConsultationNavigation.php:72
-msgid "Meine Buchungen"
-msgstr "My bookings"
-
-#: ../lib/navigation/OERNavigation.php:28
-#: ../lib/navigation/ContentsNavigation.php:46
-msgid "OER Campus"
-msgstr ""
-
-#: ../lib/navigation/OERNavigation.php:44
-msgid "Meine Materialien"
-msgstr ""
-
-#: ../lib/navigation/CommunityNavigation.php:30
-msgid "Nur Sie sind online"
-msgstr "No one else is online"
-
-#: ../lib/navigation/CommunityNavigation.php:36
-msgid "Außer Ihnen ist eine Person online"
-msgstr "There is another one user online"
-
-#: ../lib/navigation/CommunityNavigation.php:38
-#, php-format
-msgid "Es sind außer Ihnen %d Personen online"
-msgstr "Another %d users are online"
-
-#: ../lib/navigation/CommunityNavigation.php:62
-#: ../lib/navigation/StartNavigation.php:233
-#: ../app/controllers/notifications.php:34 ../app/controllers/online.php:29
-#: ../app/controllers/online.php:31
-msgid "Wer ist online?"
-msgstr "Who is online?"
-
-#: ../lib/navigation/CommunityNavigation.php:66
-#: ../app/controllers/contact.php:35 ../app/controllers/contact.php:112
-#: ../app/controllers/contact.php:184 ../app/views/online/index.php:5
-#: ../app/views/blubber/compose.php:10 ../app/views/blubber/compose.php:45
-msgid "Kontakte"
-msgstr "Contacts"
-
-#: ../lib/navigation/CommunityNavigation.php:81
-#: ../lib/navigation/StartNavigation.php:241 ../app/controllers/score.php:51
-msgid "Rangliste"
-msgstr "High score list "
-
-#: ../lib/navigation/FooterNavigation.php:23
-#: ../lib/navigation/StudipNavigation.php:165
-msgid "Footer"
-msgstr "Footer"
-
-#: ../lib/navigation/FooterNavigation.php:32 ../app/controllers/sitemap.php:28
-msgid "Sitemap"
-msgstr "Sitemap"
-
-#: ../lib/navigation/FooterNavigation.php:39 ../app/controllers/siteinfo.php:36
-msgid "Impressum"
-msgstr "Legal information"
-
-#: ../lib/navigation/FooterNavigation.php:42 ../app/controllers/privacy.php:38
-#: ../app/controllers/privacy.php:101 ../app/controllers/profile.php:318
-#: ../app/controllers/admin/user.php:1628
-msgid "Datenschutz"
-msgstr "Data protection"
-
-#: ../lib/navigation/MVVNavigation.php:45
-#: ../app/views/shared/studiengang/_studiengang.php:66
-#: ../app/views/studiengaenge/faecher/index.php:11
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:201
-#: ../app/views/studiengaenge/studiengaenge/approve.php:5
-#: ../app/views/studiengaenge/studiengaenge/export.php:40
-msgid "Studiengangteile"
-msgstr "Components"
-
-#: ../lib/navigation/MVVNavigation.php:48
-#: ../app/views/settings/studies/studiengang.php:20
-#: ../app/views/studiengaenge/studiengangteile/index.php:14
-msgid "Versionen"
-msgstr "Versions"
-
-#: ../lib/navigation/MVVNavigation.php:51
-#: ../app/views/studiengaenge/stgteilbezeichnungen/index.php:6
-msgid "Studiengangteil-Bezeichnungen"
-msgstr "Component descriptions"
-
-#: ../lib/navigation/MVVNavigation.php:54
-msgid "Studiengangsinformationen"
-msgstr "Course of study information"
-
-#: ../lib/navigation/MVVNavigation.php:66
-#: ../app/controllers/course/lvgselector.php:54
-#: ../app/views/course/wizard/steps/lvgroups/index.php:2
-#: ../app/views/course/lvgselector/index.php:4
-#: ../app/views/lvgruppen/lvgruppen/index.php:5
-msgid "Lehrveranstaltungsgruppen"
-msgstr "Course groups"
-
-#: ../lib/navigation/MVVNavigation.php:70
-msgid "Fächer/Abschlüsse"
-msgstr "Subjects/degrees"
-
-#: ../lib/navigation/MVVNavigation.php:72
-#: ../app/controllers/search/module.php:176
-#: ../app/views/search/studiengaenge/mehrfach.php:11
-#: ../app/views/fachabschluss/faecher/fachbereiche.php:8
-msgid "Fächer"
-msgstr "Fields of study"
-
-#: ../lib/navigation/MVVNavigation.php:78
-#: ../app/controllers/fachabschluss/kategorien.php:44
-#: ../app/views/search/studiengaenge/index.php:3
-msgid "Abschluss-Kategorien"
-msgstr "Categories of degrees"
-
-#: ../lib/navigation/MVVNavigation.php:82
-msgid "Materialien/Dokumente"
-msgstr "Materials/Documents"
-
-#: ../lib/navigation/MVVNavigation.php:91
-#: ../lib/navigation/MVVNavigation.php:93
-#: ../app/views/module/module/modul.php:454
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:88
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:327
-msgid "Ansprechpartner"
-msgstr "Contact person"
-
-#: ../lib/navigation/CalendarNavigation.php:25
-msgid "Planer"
-msgstr "Planner"
-
-#: ../lib/navigation/CalendarNavigation.php:28
-#: ../lib/navigation/CalendarNavigation.php:48
-#: ../lib/navigation/StartNavigation.php:262
-msgid "Stundenplan"
-msgstr "Timetable"
-
-#: ../lib/navigation/CalendarNavigation.php:55
-#: ../lib/navigation/ProfileNavigation.php:98
-#: ../lib/navigation/StartNavigation.php:258
-msgid "Terminkalender"
-msgstr "Date calendar"
-
-#: ../lib/navigation/SearchNavigation.php:54
-msgid "Veranstaltungsverzeichnis"
-msgstr "Course directory"
-
-#: ../lib/navigation/SearchNavigation.php:71 ../app/controllers/archive.php:26
-#: ../app/views/lvgruppen/lvgruppen/index.php:12
-msgid "Archiv"
-msgstr "Archive"
-
-#: ../lib/navigation/SearchNavigation.php:78
-#: ../lib/navigation/ResourceNavigation.php:107
-#: ../app/controllers/resources/room_request.php:484
-#: ../app/views/resources/building/index.php:95
-#: ../app/views/resources/room_group/permissions.php:3
-#: ../app/views/resources/export/select_booking_sources.php:43
-msgid "Räume"
-msgstr "Rooms"
-
-#: ../lib/navigation/ContentsNavigation.php:22
-#: ../lib/navigation/ContentsNavigation.php:24
-#: ../app/controllers/privacy.php:441 ../app/views/module/module/modul.php:493
-#: ../app/views/admin/datafields/config.php:8
-msgid "Inhalte"
-msgstr "Contents"
-
-#: ../lib/navigation/ContentsNavigation.php:38
-#, fuzzy
-msgid "Projekte"
-msgstr "Project"
-
-#: ../lib/navigation/ContentsNavigation.php:41
-#, fuzzy
-msgid "Lesezeichen"
-msgstr "Last sign of life"
-
-#: ../lib/navigation/MessagingNavigation.php:49
-#, php-format
-msgid "Sie haben %d neue ungelesene Nachricht"
-msgid_plural "Sie haben %d neue ungelesene Nachrichten"
-msgstr[0] "You have %d new unread message"
-msgstr[1] "You have %d new unread messages"
-
-#: ../lib/navigation/MessagingNavigation.php:52
-#, php-format
-msgid "Sie haben %d ungelesene Nachricht"
-msgid_plural "Sie haben %d ungelesene Nachrichten"
-msgstr[0] "You have %d unread message"
-msgstr[1] "You have %d unread messages"
-
-#: ../lib/navigation/MessagingNavigation.php:55
-#, php-format
-msgid "Sie haben %d alte empfangene Nachricht"
-msgid_plural "Sie haben %d alte empfangene Nachrichten"
-msgstr[0] "You have %d old received message"
-msgstr[1] "You have %d old received messages"
-
-#: ../lib/navigation/MessagingNavigation.php:58
-msgid "Sie haben keine alten empfangenen Nachrichten"
-msgstr "You do not have any old received messages"
-
-#: ../lib/navigation/MessagingNavigation.php:74
-#: ../app/views/messages/overview.php:13
-msgid "Eingang"
-msgstr "Received mails"
-
-#: ../lib/navigation/MessagingNavigation.php:76
-#: ../lib/navigation/StartNavigation.php:228
-#: ../app/views/messages/overview.php:13
-msgid "Gesendet"
-msgstr "Sent"
-
-#: ../lib/navigation/ProfileNavigation.php:68
-#: ../app/controllers/settings/password.php:38
-#: ../app/controllers/settings/password.php:40
-#: ../app/views/settings/password.php:8
-msgid "Passwort ändern"
-msgstr "Change password"
-
-#: ../lib/navigation/ProfileNavigation.php:72
-#: ../app/views/admission/courseset/configure.php:180
-#: ../app/views/course/block_appointments/index.php:81
-msgid "Weitere Daten"
-msgstr "More details"
-
-#: ../lib/navigation/ProfileNavigation.php:75
-#: ../app/views/admin/user/edit.php:331
-msgid "Studiendaten"
-msgstr "Study details"
-
-#: ../lib/navigation/ProfileNavigation.php:93
-msgid "Allgemeines"
-msgstr "General"
-
-#: ../lib/navigation/ProfileNavigation.php:94
-#: ../app/controllers/settings/privacy.php:32
-#: ../app/controllers/settings/privacy.php:36
-#: ../app/views/settings/privacy.php:11 ../app/views/settings/privacy.php:105
-msgid "Privatsphäre"
-msgstr "Privacy"
-
-#: ../lib/navigation/ProfileNavigation.php:102
-msgid "Benachrichtigung"
-msgstr "Notification"
-
-#: ../lib/navigation/ProfileNavigation.php:106
-#: ../app/controllers/settings/deputies.php:32
-#: ../app/controllers/settings/deputies.php:34
-msgid "Standardvertretung"
-msgstr "Default substitute"
-
-#: ../lib/navigation/ProfileNavigation.php:110
-msgid "API-Berechtigungen"
-msgstr "API permissions"
-
-#: ../lib/navigation/ProfileNavigation.php:114 ../templates/tfa-validate.php:4
-#: ../app/controllers/tfa.php:9
-msgid "Zwei-Faktor-Authentifizierung"
-msgstr "Two-factor authentication"
-
-#: ../lib/navigation/ProfileNavigation.php:121
-#: ../app/controllers/course/plus.php:199
-#: ../app/controllers/profilemodules.php:129
-#: ../app/views/oer/market/_searchform.php:60
-msgid "Kategorien"
-msgstr "Categories"
-
-#: ../lib/navigation/ResourceNavigation.php:27
-#: ../lib/navigation/ResourceNavigation.php:40
-#: ../lib/navigation/StartNavigation.php:190
-msgid "Raumverwaltung"
-msgstr "Room management"
-
-#: ../lib/navigation/ResourceNavigation.php:81
-#: ../lib/navigation/ResourceNavigation.php:113
-#: ../lib/navigation/StartNavigation.php:217
-#: ../app/controllers/room_management/overview.php:321
-msgid "Meine Räume"
-msgstr "My rooms"
-
-#: ../lib/navigation/ResourceNavigation.php:96
-msgid "Standorte"
-msgstr "Locations"
-
-#: ../lib/navigation/ResourceNavigation.php:121
-#: ../app/controllers/room_management/overview.php:449
-msgid "Öffentlich zugängliche Raumpläne"
-msgstr "Room plans accessible to the public"
-
-#: ../lib/navigation/ResourceNavigation.php:133
-#: ../lib/navigation/ResourceNavigation.php:151
-#: ../lib/navigation/ResourceNavigation.php:158
-#: ../lib/navigation/StartNavigation.php:201
-#: ../app/views/room_management/overview/index.php:4
-msgid "Raumplanung"
-msgstr "Room management"
-
-#: ../lib/navigation/ResourceNavigation.php:139
-#: ../app/controllers/resources/room_request.php:384
-#: ../app/controllers/resources/room_request.php:2302
-#: ../app/views/room_management/overview/index.php:10
-msgid "Anfragenliste"
-msgstr "List of requests"
-
-#: ../lib/navigation/ResourceNavigation.php:145
-msgid "Anfragenplan"
-msgstr "List of requests"
-
-#: ../lib/navigation/ResourceNavigation.php:164
-#: ../lib/navigation/ResourceNavigation.php:204
-#: ../app/controllers/room_management/planning.php:1062
-#: ../app/controllers/room_management/planning.php:1130
-msgid "Buchungen mit Kommentaren"
-msgstr "Bookings with comments"
-
-#: ../lib/navigation/ResourceNavigation.php:171
-#: ../app/controllers/resources/room_planning.php:89
-#: ../app/controllers/resources/room.php:101
-#: ../app/controllers/resources/resource.php:195
-#: ../app/views/resources/room/index.php:83
-#: ../app/views/resources/print/individual_booking_plan.php:10
-#: ../app/views/resources/resource/booking_plan.php:9
-#: ../app/views/resources/room_planning/booking_plan.php:47
-#: ../app/views/resources/_common/_resource_tr.php:171
-#: ../app/views/resources/_common/_room_search_result.php:36
-#: ../app/views/room_management/overview/index.php:17
-#: ../app/views/room_management/planning/index.php:38
-msgid "Belegungsplan"
-msgstr "Booking plan"
-
-#: ../lib/navigation/ResourceNavigation.php:177
-#: ../app/views/resources/_common/_resource_tr.php:177
-msgid "Semester-Belegungsplan"
-msgstr "Semester booking plan"
-
-#: ../lib/navigation/ResourceNavigation.php:183
-#: ../app/controllers/room_management/planning.php:27
-#: ../app/controllers/room_management/planning.php:107
-msgid "Raumgruppen-Belegungsplan"
-msgstr "Room group booking plan"
-
-#: ../lib/navigation/ResourceNavigation.php:193
-#: ../app/controllers/room_management/planning.php:267
-#: ../app/controllers/room_management/planning.php:401
-msgid "Raumgruppen-Semester-Belegungsplan"
-msgstr "Room group semester booking plan"
-
-#: ../lib/navigation/ResourceNavigation.php:214
-#: ../app/views/room_management/overview/index.php:23
-#: ../app/views/my_ilias_accounts/_ilias_module.php:59
-msgid "Struktur"
-msgstr "Structure"
-
-#: ../lib/navigation/ResourceNavigation.php:228
-#: ../app/controllers/resources/resource.php:585
-#: ../app/views/room_management/planning/copy_bookings.php:90
-msgid "Buchungen"
-msgstr "Bookings"
-
-#: ../lib/navigation/ResourceNavigation.php:240
-#: ../app/controllers/resources/print.php:117
-msgid "Belegungsplan-Seriendruck"
-msgstr "Booking plan serial print"
-
-#: ../lib/navigation/ResourceNavigation.php:253
-#: ../lib/navigation/ResourceNavigation.php:259
-msgid "Rundmails"
-msgstr "Circular mails"
-
-#: ../lib/navigation/ResourceNavigation.php:272
-#: ../app/controllers/resources/resource.php:621
-#: ../app/views/room_management/overview/index.php:61
-msgid "Globale Berechtigungen verwalten"
-msgstr "Manage global permissions"
-
-#: ../lib/navigation/ResourceNavigation.php:278
-#: ../app/controllers/resources/admin.php:82
-#: ../app/views/room_management/overview/index.php:67
-msgid "Globale Sperren verwalten"
-msgstr "Manage global locks"
-
-#: ../lib/navigation/ResourceNavigation.php:284
-#: ../app/controllers/resources/admin.php:122
-msgid "Berechtigungs-Übersicht"
-msgstr "Permission overview"
-
-#: ../lib/navigation/ResourceNavigation.php:290
-#: ../app/controllers/resources/admin.php:263
-msgid "Kategorien verwalten"
-msgstr "Manage categories"
-
-#: ../lib/navigation/ResourceNavigation.php:296
-#: ../app/controllers/resources/admin.php:298
-msgid "Eigenschaften verwalten"
-msgstr "Manage properties"
-
-#: ../lib/navigation/ResourceNavigation.php:302
-#: ../app/controllers/resources/admin.php:358
-msgid "Eigenschaftsgruppen verwalten"
-msgstr "Manage property groups"
-
-#: ../lib/navigation/ResourceNavigation.php:308
-#: ../app/controllers/resources/admin.php:737
-msgid "Teilbare Räume verwalten"
-msgstr "Manage separable rooms"
-
-#: ../lib/navigation/ResourceNavigation.php:315
-#: ../app/controllers/resources/admin.php:1023
-#: ../app/views/room_management/overview/index.php:80
-msgid "Konfigurationsoptionen"
-msgstr "Configuration options"
-
-#: ../lib/navigation/FilesNavigation.php:28
-#: ../app/controllers/course/files.php:123
-#: ../app/controllers/institute/files.php:95 ../app/controllers/files.php:170
-#: ../app/controllers/files.php:267 ../app/controllers/files.php:432
-#: ../app/views/files/all_files.php:17 ../app/views/files/flat.php:92
-#: ../app/views/files/_overview.php:23
-msgid "Alle Dateien"
-msgstr "All documents"
-
-#: ../lib/navigation/FilesNavigation.php:48 ../app/controllers/files.php:547
-msgid "Persönliche Dateien"
-msgstr "Personal files"
-
-#: ../lib/navigation/CourseNavigation.php:101
-msgid "Funktionen / Gruppen verwalten"
-msgstr "Manage function / groups"
-
-#: ../lib/navigation/StudipNavigation.php:47
-msgid "Belegungspläne"
-msgstr "Booking plans"
-
-#: ../lib/navigation/StudipNavigation.php:152
-msgid "Login CAS"
-msgstr "Login CAS"
-
-#: ../lib/navigation/StudipNavigation.php:156
-msgid "Login Shibboleth"
-msgstr "Login Shibboleth"
-
-#: ../lib/navigation/StartNavigation.php:71
-msgid "Zur Startseite"
-msgstr "To the start page"
-
-#: ../lib/navigation/StartNavigation.php:74
-#, php-format
-msgid "%u neue Ankündigung"
-msgid_plural "%u neue Ankündigungen"
-msgstr[0] "%u new announcement"
-msgstr[1] "%u new announcements"
-
-#: ../lib/navigation/StartNavigation.php:78
-#, php-format
-msgid "%u neuer Fragebogen"
-msgid_plural "%u neue Fragebögen"
-msgstr[0] "%u new questionnaire"
-msgstr[1] "%u new questionnaires"
-
-#: ../lib/navigation/StartNavigation.php:114
-#: ../app/controllers/shared/modul.php:104
-msgid "Veranstaltungsübersicht"
-msgstr "Course overview"
-
-#: ../lib/navigation/StartNavigation.php:116
-msgid "Veranstaltungen an meinen Einrichtungen"
-msgstr "Courses at my institutes"
-
-#: ../lib/navigation/StartNavigation.php:121
-#: ../app/controllers/my_courses.php:932
-msgid "Veranstaltung hinzufügen"
-msgstr "Add a course"
-
-#: ../lib/navigation/StartNavigation.php:124
-#: ../lib/navigation/StartNavigation.php:131
-#: ../lib/navigation/StartNavigation.php:148
-msgid "Studiengruppe anlegen"
-msgstr "Create study group"
-
-#: ../lib/navigation/StartNavigation.php:128
-#: ../lib/navigation/StartNavigation.php:144
-#: ../app/controllers/course/wizard.php:38
-#: ../app/controllers/course/wizard.php:40
-#: ../app/controllers/my_courses.php:925
-#: ../app/controllers/admin/courses.php:223
-msgid "Neue Veranstaltung anlegen"
-msgstr "Set up new course"
-
-#: ../lib/navigation/StartNavigation.php:141
-msgid "Verwaltung von Veranstaltungen"
-msgstr "Course management"
-
-#: ../lib/navigation/StartNavigation.php:156
-msgid "Verwaltung von Einrichtungen"
-msgstr "Institute management"
-
-#: ../lib/navigation/StartNavigation.php:162
-msgid "Globale Benutzerverwaltung"
-msgstr "Global user management"
-
-#: ../lib/navigation/StartNavigation.php:168
-#: ../app/controllers/admin/plugin.php:34
-#: ../app/views/admin/plugin/index.php:35
-msgid "Verwaltung von Plugins"
-msgstr "Plug-in management"
-
-#: ../lib/navigation/StartNavigation.php:169
-#: ../app/controllers/admin/role.php:44
-msgid "Verwaltung von Rollen"
-msgstr "Role management"
-
-#: ../lib/navigation/StartNavigation.php:208
-msgid "Ressourcenkategorien anpassen"
-msgstr "Modify resource categories"
-
-#: ../lib/navigation/StartNavigation.php:227
-msgid "Posteingang"
-msgstr "Mail inbox"
-
-#: ../lib/navigation/StartNavigation.php:234
-msgid "Meine Kontakte"
-msgstr "My contacts"
-
-#: ../lib/navigation/StartNavigation.php:247 ../app/controllers/profile.php:40
-msgid "Mein Profil"
-msgstr "My profile"
-
-#: ../lib/navigation/StartNavigation.php:255
-msgid "Mein Planer"
-msgstr "My planner"
-
-#: ../lib/navigation/StartNavigation.php:272
-#: ../app/views/course/room_requests/_request_form_footer.php:4
-msgid "Räume suchen"
-msgstr "Search rooms"
-
-#: ../lib/navigation/StartNavigation.php:308
-msgid "Schnelleinstieg"
-msgstr "Quick access"
-
-#: ../lib/navigation/LoginNavigation.php:27
-msgid "für registrierte NutzerInnen"
-msgstr "for registered users"
-
-#: ../lib/navigation/LoginNavigation.php:32
-msgid "für Single Sign On mit CAS"
-msgstr "for single sign on using CAS"
-
-#: ../lib/navigation/LoginNavigation.php:37
-msgid "Shibboleth Login"
-msgstr "Login via Shibboleth"
-
-#: ../lib/navigation/LoginNavigation.php:38
-msgid "für Single Sign On mit Shibboleth"
-msgstr "via Single Sign On using Shibboleth"
-
-#: ../lib/navigation/LoginNavigation.php:43 ../templates/register/form.php:169
-#: ../templates/loginform.php:86 ../app/views/admin/plugin/unregistered.php:11
-msgid "Registrieren"
-msgstr "Register"
-
-#: ../lib/navigation/LoginNavigation.php:44
-msgid "um NutzerIn zu werden"
-msgstr "for becoming a user"
-
-#: ../lib/navigation/LoginNavigation.php:49
-msgid "Freier Zugang"
-msgstr "Open access"
-
-#: ../lib/navigation/LoginNavigation.php:50
-msgid "ohne Registrierung"
-msgstr "without registration"
-
-#: ../lib/navigation/LoginNavigation.php:55
-msgid "zu Bedienung und Funktionsumfang"
-msgstr "to use and range of features"
-
-#: ../lib/soap/StudipSoapClient.class.php:34
-#: ../lib/soap/StudipSoapClient.class.php:40
-#: ../lib/soap/StudipSoapClient_PHP5.class.php:36
-#, php-format
-msgid "SOAP-Fehler, Funktion \"%s\":"
-msgstr "SOAP error, function \"%s\":"
-
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:88
-#: ../lib/elearning/Ilias3ConnectedLink.class.php:113
-#: ../lib/elearning/PmWikiConnectedLink.class.php:116
-#: ../lib/elearning/ConnectedLink.class.php:97
-#: ../templates/elearning/loncapa_connected_link_edit.php:10
-#: ../app/views/course/ilias_interface/index.php:70
-#: ../app/views/course/ilias_interface/index.php:72
-#: ../app/views/course/ilias_interface/index.php:113
-#: ../app/views/course/ilias_interface/index.php:115
-#: ../app/views/course/ilias_interface/view_object.php:14
-#: ../app/views/course/statusgroups/_askdelete_members.php:13
-#: ../app/views/admin/statusgroups/delete.php:14
-#: ../app/views/start/_widget.php:26
-msgid "Entfernen"
-msgstr "Remove"
-
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:93
-msgid "Als Kopie anlegen"
-msgstr "Create copy"
-
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:94
-msgid ""
-"Wenn Sie diese Option wählen, wird eine identische Kopie als eigenständige "
-"Instanz des Lernmoduls erstellt. Anderenfalls wird ein Link zum Lernmodul "
-"gesetzt."
-msgstr ""
-"Selection of this option will create an identical copy a different instance "
-"of the learning module. Otherwise, a link to the learning module will be set."
-
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:98
-msgid "Keine Schreibrechte"
-msgstr "No write access"
-
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:99
-msgid ""
-"Nur der/die BesitzerIn des Lernmoduls hat Schreibzugriff für Inhalte und "
-"Struktur des Lernmoduls. Tutor/-innen und Lehrende können die Verknüpfung "
-"zur Veranstaltung wieder löschen."
-msgstr ""
-"Only the owner of the learning module has write access for the content and "
-"structure of the learning module. Tutors and lecturers may delete the link "
-"to the course."
-
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:102
-msgid "Mit Schreibrechten für alle Lehrenden dieser Veranstaltung"
-msgstr "With write access for all lecturers of this course"
-
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:103
-msgid ""
-"Lehrende haben Schreibzugriff für Inhalte und Struktur des Lernmoduls. "
-"Tutor/-innen und Lehrende können die Verknüpfung zur Veranstaltung wieder "
-"löschen."
-msgstr ""
-"Lecturers have write access for the content and structure of the learning "
-"module. Tutors and lecturers may delete the link to the course."
-
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:106
-msgid ""
-"Mit Schreibrechten für alle Lehrenden und Tutor/-innen dieser Veranstaltung"
-msgstr "With write access for all lecturers/tutors of this course"
-
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:107
-msgid ""
-"Lehrende und Tutor/-innen haben Schreibzugriff für Inhalte und Struktur des "
-"Lernmoduls. Tutor/-innen und Lehrende können die Verknüpfung zur "
-"Veranstaltung wieder löschen."
-msgstr ""
-"Lecturers and tutors have write access for the content and structure of the "
-"learning module. Tutors and lecturers may delete the link to the course."
-
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:110
-msgid "Mit Schreibrechten für alle Personen dieser Veranstaltung"
-msgstr "With write access for all participants of this course"
-
-#: ../lib/elearning/Ilias4ConnectedLink.class.php:111
-msgid ""
-"Lehrende, Tutor/-innen und Teilnehmende haben Schreibzugriff für Inhalte und "
-"Struktur des Lernmoduls. Tutor/-innen und Lehrende können die Verknüpfung "
-"zur Veranstaltung wieder löschen."
-msgstr ""
-"Lecturers, tutors and participants have write permissions for the content "
-"and the structure of the learning module. Tutors and lecturers can remove "
-"the link to the course."
-
-#: ../lib/elearning/ContentModuleView.class.php:119
-msgid "kein Lesezugriff"
-msgstr "no read access"
-
-#: ../lib/elearning/Ilias3ConnectedLink.class.php:57
-#: ../lib/elearning/LonCapaConnectedLink.class.php:24
-#: ../lib/elearning/PmWikiConnectedLink.class.php:80
-#: ../lib/elearning/ConnectedLink.class.php:59
-#: ../templates/elearning/loncapa_connected_link.php:2
-#: ../app/views/web_migrate/history.php:74
-#: ../app/views/web_migrate/index.php:84
-#: ../app/views/course/ilias_interface/view_object.php:16
-#: ../app/views/admin/plugin/update_info.php:25
-#: ../app/views/my_ilias_accounts/view_object.php:6
-#: ../app/views/questionnaire/evaluate.php:52
-#: ../app/views/questionnaire/answer.php:56
-msgid "Starten"
-msgstr "Start"
-
-#: ../lib/elearning/Ilias3ConnectedLink.class.php:117
-msgid ""
-"Mit Schreibrechten für alle Lehrenden/Tutoren und Tutorinnen dieser "
-"Veranstaltung"
-msgstr "With write access for all lecturers/tutors of this course"
-
-#: ../lib/elearning/Ilias3ConnectedLink.class.php:119
-msgid "Mit Schreibrechten für alle Teilnehmenden dieser Veranstaltung"
-msgstr "With write permissions for all participants of this course"
-
-#: ../lib/elearning/Ilias3ConnectedLink.class.php:152
-msgid "Neu anlegen"
-msgstr "Create new"
-
-#: ../lib/elearning/ELearningUtils.class.php:114
-#, php-format
-msgid ""
-"Die ELearning-Schnittstelle ist nicht korrekt konfiguriert. Die Variable \"%s"
-"\" muss in der Konfigurationsdatei von Stud.IP erst mit den Verbindungsdaten "
-"angebundener Learning-Content-Management-Systeme aufgefüllt werden. Solange "
-"dies nicht geschehen ist, setzen Sie die Variable \"%s\" auf FALSE!"
-msgstr ""
-"The e-learning interface is not correctly configured. The variable \"%s\" in "
-"the Stud.IP configuration file must be filled with the connection "
-"information about the coupled learning content management systems. As long "
-"as this has not been done, please set variable \"%s\" to FALSE!"
-
-#: ../lib/elearning/ELearningUtils.class.php:258
-msgid "Das Passwort muss mindestens 6 Zeichen lang sein!"
-msgstr "Your password must comprise at least 6 characters!"
-
-#: ../lib/elearning/ELearningUtils.class.php:262
-msgid "Das Passwort entspricht nicht der Passwort-Wiederholung!"
-msgstr "Password and re-type password don't match!"
-
-#: ../lib/elearning/ELearningUtils.class.php:272
-msgid "Der Account wurde zugeordnet."
-msgstr "Account has been associated."
-
-#: ../lib/elearning/ELearningUtils.class.php:284
-msgid "Die eingegebenen Login-Daten sind nicht korrekt."
-msgstr "The login details entered are not correct."
-
-#: ../lib/elearning/ELearningUtils.class.php:313
-#, php-format
-msgid "Der Account wurde erzeugt und zugeordnet. Ihr Loginname ist %s."
-msgstr "The account has been created and associated. Your username is %s."
-
-#: ../lib/elearning/ELearningUtils.class.php:323
-#, php-format
-msgid ""
-"Sie versuchen zum erstem Mal ein Lernmodul des angebundenen Systems %s zu "
-"starten. Bevor Sie das Modul nutzen können, muss Ihrem Stud.IP-"
-"Benutzeraccount ein Account im angebundenen System zugeordnet werden."
-msgstr ""
-"For the first time you are trying to start a learning module in the coupled "
-"system %s. In order to be able to use the module you have to associate your "
-"Stud.IP account with an account in the coupled system."
-
-#: ../lib/elearning/ELearningUtils.class.php:488
-#: ../templates/elearning/elearning_interface_show.php:16
-#: ../templates/elearning/elearning_interface_show.php:32
-#: ../templates/elearning/elearning_interface_edit.php:8
-#: ../templates/elearning/elearning_interface_edit.php:26
-#: ../app/controllers/course/ilias_interface.php:145
-#: ../app/views/course/ilias_interface/index.php:96
-#: ../app/views/course/elearning/show.php:17
-#: ../app/views/course/elearning/show.php:35
-#: ../app/views/course/elearning/edit.php:12
-#, php-format
-msgid "Kurs in %s"
-msgstr "Course in %s"
-
-#: ../lib/elearning/ELearningUtils.class.php:502
-msgid ""
-"Diese Veranstaltung ist mit folgenden Ilias-Kursen verknüpft. Hier gelangen "
-"Sie direkt in den jeweiligen Kurs: "
-msgstr ""
-"This course is associated with the following ILIAS-courses. This directly "
-"takes you to the respective course: "
-
-#: ../lib/elearning/ELearningUtils.class.php:504
-msgid ""
-"Diese Veranstaltung ist mit einem Ilias-Kurs verknüpft. Hier gelangen Sie "
-"direkt in den Kurs: "
-msgstr ""
-"This course is associated with an ILIAS-course. This directly takes you to "
-"the course: "
-
-#: ../lib/elearning/ELearningUtils.class.php:505
-msgid ""
-"Hier können Sie die Zuordnungen zu den verknüpften Kursen aktualisieren."
-msgstr "Here you can update the associations with the coupled courses."
-
-#: ../lib/elearning/ELearningUtils.class.php:549
-#, php-format
-msgid ""
-"Durch das Löschen der Daten zum System mit dem Index \"%s\" werden %s "
-"Konfigurationseinträge und Verknüpfungen von Stud.IP-Veranstaltungen und -"
-"User-Accounts unwiederbringlich aus der Stud.IP-Datenbank entfernt. Wollen "
-"Sie diese Daten jetzt löschen?"
-msgstr ""
-"Deleting the data about the system with index \"%s\" will cause %s "
-"configuration values and associations of Stud.IP courses and user-ID's to be "
-"irrevocably deleted from the Stud.IP database. Are you sure to delete the "
-"data?"
-
-#: ../lib/elearning/ELearningUtils.class.php:551
-msgid "Alle löschen"
-msgstr "Delete all"
-
-#: ../lib/elearning/ELearningUtils.class.php:560
-msgid "Daten wurden gelöscht."
-msgstr "Data have been deleted."
-
-#: ../lib/elearning/ELearningUtils.class.php:569
-#, php-format
-msgid "Die Schnittstelle zum System %s ist aktiv."
-msgstr "Interface to system %s activated."
-
-#: ../lib/elearning/ELearningUtils.class.php:573
-#, php-format
-msgid "Die Schnittstelle für das System %s wurde noch nicht eingerichtet."
-msgstr "The interface to system %s has not been set up yet."
-
-#: ../lib/elearning/ELearningUtils.class.php:575
-#, php-format
-msgid "Die Schnittstelle wurde noch nicht aktiviert."
-msgstr "The interface has not been activated yet."
-
-#: ../lib/elearning/ELearningUtils.class.php:578
-#, php-format
-msgid "%s Stud.IP-User-Accounts sind mit Accounts im System %s verknüpft."
-msgstr ""
-"%s Stud.IP user accounts have been associated with accounts in system %s."
-
-#: ../lib/elearning/ELearningUtils.class.php:580
-#: ../lib/elearning/ELearningUtils.class.php:599
-#, php-format
-msgid "%s Objekte sind Stud.IP-Veranstaltungen oder -Einrichtungen zugeordnet."
-msgstr "%s objects are associated with Stud.IP courses or institutes."
-
-#: ../lib/elearning/ELearningUtils.class.php:582
-#: ../lib/elearning/ELearningUtils.class.php:601
-#, php-format
-msgid "%s Einträge in der config-Tabelle der Stud.IP-Datenbank."
-msgstr "%s entries in the configuration table of the Stud.IP database."
-
-#: ../lib/elearning/ELearningUtils.class.php:593
-#, php-format
-msgid ""
-"Für das System mit dem Index \"%s\" existieren keine Voreinstellungen in den "
-"Konfigurationsdateien mehr."
-msgstr ""
-"No presetting for system with index \"%s\" left in the configuration files."
-
-#: ../lib/elearning/ELearningUtils.class.php:595
-msgid ""
-"In der Stud.IP-Datenbank sind noch folgende Informationen zu diesem System "
-"gespeichert:"
-msgstr ""
-"In the Stud.IP database the following information about this system are "
-"still saved:"
-
-#: ../lib/elearning/ELearningUtils.class.php:597
-#, php-format
-msgid ""
-"%s Stud.IP-User-Accounts sind mit externen Accounts mit dem Index \"%s\" "
-"verknüpft."
-msgstr ""
-"%s Stud.IP user accounts are associated to external accounts with index \"%s"
-"\"."
-
-#: ../lib/elearning/Ilias4ContentModule.class.php:74
-msgid "Zuordnungs-Fehler: Objekt konnte nicht angelegt werden."
-msgstr "Association error: Object could not be created."
-
-#: ../lib/elearning/Ilias4ContentModule.class.php:102
-#: ../lib/elearning/Ilias3ContentModule.class.php:205
-msgid "Die Zuordnung konnte nicht gespeichert werden."
-msgstr "The association could not be saved."
-
-#: ../lib/elearning/Ilias3ConnectedPermissions.class.php:171
-#: ../lib/elearning/Ilias4ConnectedPermissions.class.php:122
-msgid ""
-"Für den zugeordneten ILIAS-Kurs konnten keine Berechtigungen ermittelt "
-"werden."
-msgstr "No permissions could be determined for the associated ILIAS-course."
-
-#: ../lib/elearning/Ilias3ContentModule.class.php:96
-msgid "Sie haben keine Leseberechtigung für dieses Modul."
-msgstr "You do not have read access to this module. "
-
-#: ../lib/elearning/Ilias3ContentModule.class.php:101
-msgid ""
-"Sie haben zur Zeit noch keinen Zugriff auf deses Modul (fehlende "
-"Vorbedingungen)."
-msgstr ""
-"At present you do not have any access to this module (missing pre-"
-"requisites)."
-
-#: ../lib/elearning/Ilias3ContentModule.class.php:105
-msgid "Dieses Modul ist momentan offline oder durch Payment-Regeln gesperrt."
-msgstr "At present this module is offline or locked by payment rules."
-
-#: ../lib/elearning/Ilias3ContentModule.class.php:109
-msgid "Sie haben keinen Zugriff auf die übergeordneten Objekte dieses Moduls."
-msgstr "You do not have access to subordinated objects of this module."
-
-#: ../lib/elearning/Ilias3ContentModule.class.php:169
-#: ../lib/elearning/Ilias4ConnectedCMS.class.php:169
-msgid "Zuordnungs-Fehler: Kurs konnte nicht angelegt werden."
-msgstr "Association error: The course could not be created."
-
-#: ../lib/elearning/Ilias3ContentModule.class.php:227
-msgid "Die Zuordnung konnte nicht entfernt werden."
-msgstr "The association could not be removed."
-
-#: ../lib/elearning/ContentModule.class.php:351
-msgid "--- Keine Lese-Berechtigung! ---"
-msgstr "--- No read access! ---"
-
-#: ../lib/elearning/ContentModule.class.php:352
-#, php-format
-msgid ""
-"Sie haben im System \"%s\" keine Lese-Berechtigung für das Lernmodul, das "
-"dieser Veranstaltung / Einrichtung an dieser Stelle zugeordnet ist."
-msgstr ""
-"You do not have read permissions in the system \"%s\" for the learning "
-"module that is assigned to this course / institute at this place."
-
-#: ../lib/elearning/ContentModule.class.php:355
-msgid ""
-"--- Dieses Content-Modul existiert nicht mehr im angebundenen System! ---"
-msgstr ""
-"--- This content module does not exist any longer in the coupled system! ---"
-
-#: ../lib/elearning/ContentModule.class.php:356
-#, php-format
-msgid ""
-"Das Lernmodul, das dieser Veranstaltung / Einrichtung an dieser Stelle "
-"zugeordnet war, existiert nicht mehr. Dieser Fehler tritt auf, wenn das "
-"angebundene LCMS \"%s\" nicht erreichbar ist oder wenn das Lernmodul "
-"innerhalb des angebundenen Systems gelöscht wurde."
-msgstr ""
-"The learning module associated with this course resp. institute here does "
-"not exist any longer. This error occurs because the coupled LCMS \"%s\" is "
-"not accessible or because the learning module has been deleted from the "
-"coupled system."
-
-#: ../lib/elearning/ContentModule.class.php:359
-msgid "--- Dieses Content-Modul wurde im angebundenen System gelöscht! ---"
-msgstr "--- The content module has been deleted from the coupled system! ---"
-
-#: ../lib/elearning/ContentModule.class.php:360
-#, php-format
-msgid ""
-"Das Lernmodul, das dieser Veranstaltung / Einrichtung an dieser Stelle "
-"zugeordnet war, wurde gelöscht."
-msgstr ""
-"The learning module thas has been associated with this course / institute "
-"has been deleted."
-
-#: ../lib/elearning/ContentModule.class.php:363
-msgid "--- Es ist ein unbekannter Fehler aufgetreten! ---"
-msgstr "--- An unknown error has occurred! ---"
-
-#: ../lib/elearning/ContentModule.class.php:364
-#, php-format
-msgid ""
-"Unbekannter Fehler beim Lernmodul mit der Referenz-ID \"%s\" im LCMS \"%s\""
-msgstr ""
-"Unknown error in the learning module with the reference-ID \"%s\" in LCMS "
-"\"%s\""
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:92
-#: ../lib/elearning/Ilias4ConnectedCMS.class.php:198
-#, php-format
-msgid "Das Objekt mit dem Namen \"%s\" wurde im System %s nicht gefunden."
-msgstr "No object named \"%s\" found in system %s."
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:133
-msgid "SOAP-Verbindung: "
-msgstr "SOAP connection:"
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:137
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:17
-#, php-format
-msgid "Beim Herstellen der SOAP-Verbindung trat folgender Fehler auf:"
-msgstr "The following error occurred while establishing the SOAP connection:"
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:139
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:19
-#, php-format
-msgid ""
-"Die SOAP-Verbindung zum Klienten \"%s\" wurde hergestellt, der Name des "
-"Administrator-Accounts ist \"%s\"."
-msgstr ""
-"SOAP connection to client \"%s\" established, %s is the name of the "
-"administrator account."
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:148
-msgid ""
-"Geben Sie hier den Namen einer bestehenden ILIAS 3 - Kategorie ein, in der "
-"die Lernmodule und User-Kategorien abgelegt werden sollen."
-msgstr ""
-"Enter here the name of an existing ILIAS 3 category where the learning "
-"modules and the user categories are to be saved."
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:152
-msgid "Beschreibung: "
-msgstr "Description:"
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:159
-msgid "Rollen-Template für die persönliche Kategorie: "
-msgstr "Role template for personal categories:"
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:162
-msgid ""
-"Geben Sie den Namen des Rollen-Templates ein, das für die persönliche "
-"Kategorie von Lehrenden verwendet werden soll (z.B. \\\"Author\\\")."
-msgstr ""
-"Enter the name of the role template to be used for the personal category of "
-"lecturers (e.g. \\\"author\\\")."
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:170
-msgid "Passwörter: "
-msgstr "Passwords:"
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:175
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:62
-msgid "ILIAS-Passwörter verschlüsselt speichern."
-msgstr "Encrypt ILIAS passwords to be saved."
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:176
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:63
-msgid ""
-"Wählen Sie diese Option, wenn die ILIAS-Passwörter der zugeordneten Accounts "
-"verschlüsselt in der Stud.IP-Datenbank abgelegt werden sollen."
-msgstr ""
-"Choose this option to encrypt the ILIAS passwords of the associated accounts "
-"while saving them in the Stud.IP database."
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:182
-msgid "Style / Skin: "
-msgstr "Style / skin:"
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:187
-msgid "Stud.IP-Style für neue Nutzer-Accounts voreinstellen."
-msgstr "Preset Stud.IP style for new user accounts."
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:188
-msgid ""
-"Wählen Sie diese Option, wenn für alle von Stud.IP angelegten ILIAS-Accounts "
-"das Stud.IP-Layout als System-Style eingetragen werden soll. ILIAS-seitig "
-"angelegte Accounts erhalten weiterhin den Standard-Style."
-msgstr ""
-"Choose this option to apply the Stud.IP layout as system style for all ILIAS "
-"accounts created by Stud.IP. However, the default style will be used for "
-"accounts created by ILIAS."
-
-#: ../lib/elearning/Ilias3ConnectedCMS.class.php:198
-msgid "übernehmen"
-msgstr "apply"
-
-#: ../lib/elearning/Ilias3ConnectedUser.class.php:167
-#: ../lib/elearning/Ilias4ConnectedUser.class.php:137
-#, php-format
-msgid "Ihre persönliche Kategorie wurde bereits angelegt."
-msgstr "Your personal category has already been created."
-
-#: ../lib/elearning/Ilias3ConnectedUser.class.php:186
-#: ../lib/elearning/Ilias4ConnectedUser.class.php:153
-#, php-format
-msgid "Ihre persönliche Userrolle wurde bereits angelegt."
-msgstr "Your personal user role was already generated."
-
-#: ../lib/elearning/Ilias3ConnectedUser.class.php:209
-#, php-format
-msgid "Es existiert bereits ein Account mit dem Benutzernamen \"%s\"."
-msgstr "An account with username \"%s\" already exists."
-
-#: ../lib/elearning/Ilias4ConnectedCMS.class.php:215
-msgid "Die Kategorie für User-Daten konnte nicht angelegt werden."
-msgstr "The category for user details cannot be created."
-
-#: ../lib/elearning/ConnectedCMS.class.php:146
-#, php-format
-msgid "Eine Authentifizierung ist für dieses System nicht vorgesehen."
-msgstr "No designated authentication available in this system."
-
-#: ../lib/elearning/ConnectedCMS.class.php:157
-#: ../lib/elearning/ConnectedCMS.class.php:180
-#, php-format
-msgid "Die %s-Installation wurde gefunden."
-msgstr "Installation %s found."
-
-#: ../lib/elearning/ConnectedCMS.class.php:161
-#, php-format
-msgid ""
-"Das Stud.IP-Modul für die SOAP-Schnittstelle ist nicht aktiviert. Ändern Sie "
-"den entsprechenden Eintrag in der Konfigurationsdatei \"local.inc\"."
-msgstr ""
-"The Stud.IP module for the SOAP interface is not activated. Change the "
-"according entry in the configuration file \"local.inc\"."
-
-#: ../lib/elearning/ConnectedCMS.class.php:164
-#, php-format
-msgid ""
-"Die SOAP-Verbindungsdaten sind für dieses System nicht gesetzt. Ergänzen Sie "
-"die Einstellungen für dieses Systems um den Eintrag \"soap_data\" in der "
-"Konfigurationsdatei \"local.inc\"."
-msgstr ""
-"For this system no SOAP connection information are available. Complete the "
-"settings of this system by adding the entry \"soap_data\" to the "
-"configuration file \"local.inc\"."
-
-#: ../lib/elearning/ConnectedCMS.class.php:169
-#, php-format
-msgid "Das SOAP-Modul ist aktiv."
-msgstr "SOAP module active."
-
-#: ../lib/elearning/ConnectedCMS.class.php:186
-#, php-format
-msgid ""
-"Die Zieldatei \"%s\" liegt nicht im Hauptverzeichnis der %s-Installation."
-msgstr "Target file \"%s\" is not in the main folder of installation %s."
-
-#: ../lib/elearning/ConnectedCMS.class.php:191
-#, php-format
-msgid "Die Zieldatei ist vorhanden."
-msgstr "Target file exists."
-
-#: ../lib/elearning/ConnectedCMS.class.php:199
-#: ../lib/elearning/ConnectedCMS.class.php:202
-#: ../lib/elearning/ConnectedCMS.class.php:205
-#: ../lib/elearning/ConnectedCMS.class.php:208
-#: ../lib/elearning/ConnectedCMS.class.php:211
-#, php-format
-msgid "Die Datei \"%s\" existiert nicht."
-msgstr "File \"%s\" does not exist."
-
-#: ../lib/elearning/ConnectedCMS.class.php:220
-#, php-format
-msgid "Die Klassen der Schnittstelle zum System \"%s\" wurden geladen."
-msgstr "The classes of the interface to system %s have been loaded."
-
-#: ../lib/elearning/ConnectedCMS.class.php:224
-#, php-format
-msgid "Die Klassen der Schnittstelle zum System \"%s\" wurden nicht geladen."
-msgstr "The classes of the interface to system %s have not been loaded."
-
-#: ../lib/elearning/ConnectedCMS.class.php:240
-msgid "Angebundene Lernmodul-Typen: "
-msgstr "Associated learning module types:"
-
-#: ../lib/elearning/ConnectedCMS.class.php:249
-msgid "Verwendete DB-Zugriffs-Klassen: "
-msgstr "Used DB access classes:"
-
-#: ../lib/elearning/Ilias4ConnectedUser.class.php:66
-#, php-format
-msgid ""
-"Es existiert bereits ein Account mit dem Benutzernamen \"%s\" (Account ID "
-"%s)."
-msgstr "An account with username \"%s\" (account ID %s) already exists."
-
-#: ../lib/admissionrules/timedadmission/templates/configure.php:3
-#: ../lib/admissionrules/passwordadmission/templates/configure.php:3
-#: ../lib/admissionrules/lockedadmission/templates/configure.php:3
-#: ../templates/admission/rules/configure.php:2
-msgid "Nachricht bei fehlgeschlagener Anmeldung"
-msgstr "Message in case of failed enrolment"
-
-#: ../lib/admissionrules/timedadmission/templates/configure.php:8
-msgid "Start des Anmeldezeitraums"
-msgstr "Start of admission"
-
-#: ../lib/admissionrules/timedadmission/templates/configure.php:18
-#: ../lib/admissionrules/timedadmission/templates/configure.php:36
-#: ../lib/admissionrules/participantrestrictedadmission/templates/configure.php:14
-#: ../templates/datafields/time.php:12
-#: ../app/controllers/resources/room_request.php:1861
-#: ../app/views/consultation/overview/index.php:16
-#: ../app/views/consultation/overview/booked.php:16
-#: ../app/views/consultation/admin/index.php:33
-#: ../app/views/admin/cronjobs/schedules/edit.php:231
-#: ../app/views/calendar/single/edit.php:37
-#: ../app/views/calendar/single/edit.php:68
-msgid "Uhrzeit"
-msgstr "Time"
-
-#: ../lib/admissionrules/timedadmission/templates/configure.php:25
-msgid "Ende des Anmeldezeitraums"
-msgstr "End of admission"
-
-#: ../lib/admissionrules/timedadmission/templates/info.php:4
-#, php-format
-msgid "Die Anmeldung ist möglich ab %s."
-msgstr "The enrolment is possible from %s."
-
-#: ../lib/admissionrules/timedadmission/templates/info.php:7
-#, php-format
-msgid "Die Anmeldung ist möglich bis %s."
-msgstr "The enrolment is possible until %s."
-
-#: ../lib/admissionrules/timedadmission/templates/info.php:10
-#, php-format
-msgid "Die Anmeldung ist möglich von %s bis %s."
-msgstr "The enrolment is possible from %s to %s."
-
-#: ../lib/admissionrules/timedadmission/TimedAdmission.class.php:42
-msgid "Sie befinden sich nicht innerhalb des Anmeldezeitraums."
-msgstr "Now is no admission period."
-
-#: ../lib/admissionrules/timedadmission/TimedAdmission.class.php:66
-msgid ""
-"Anmelderegeln dieses Typs legen ein Zeitfenster fest, in dem die Anmeldung "
-"zu Veranstaltungen möglich ist. Es kann auch nur ein Start- oder "
-"Endzeitpunkt angegeben werden."
-msgstr "These settings define the admission period. "
-
-#: ../lib/admissionrules/timedadmission/TimedAdmission.class.php:85
-#: ../app/views/course/admission/index.php:35
-msgid "Zeitgesteuerte Anmeldung"
-msgstr "Scheduled admission"
-
-#: ../lib/admissionrules/timedadmission/TimedAdmission.class.php:233
-msgid "Bitte geben Sie entweder ein Start- oder Enddatum an."
-msgstr "Start or End date required."
-
-#: ../lib/admissionrules/preferentialadmission/PreferentialAdmission.class.php:230
-msgid ""
-"Sie können hier festlegen, dass bestimmte Studiengänge, Fachsemester etc. "
-"bei der Platzverteilung zu Veranstaltungen bevorzugt behandelt werden sollen."
-msgstr ""
-"You may define here that specific courses of study, semesters etc. are going "
-"to be preferred at allocation."
-
-#: ../lib/admissionrules/preferentialadmission/PreferentialAdmission.class.php:250
-msgid "Bevorzugte Anmeldung"
-msgstr "Preferred enrolment"
-
-#: ../lib/admissionrules/preferentialadmission/PreferentialAdmission.class.php:523
-#: ../lib/admissionrules/conditionaladmission/ConditionalAdmission.class.php:493
-msgid "Es muss mindestens eine Auswahlbedingung angegeben werden."
-msgstr "Add at least one condition."
-
-#: ../lib/admissionrules/preferentialadmission/templates/configure.php:3
-msgid "Folgende Personen bei der Platzverteilung bevorzugen:"
-msgstr "Prefer the following people during seat allocation:"
-
-#: ../lib/admissionrules/preferentialadmission/templates/configure.php:7
-msgid "Sie haben noch keine Auswahl festgelegt."
-msgstr "You have not made a selection yet."
-
-#: ../lib/admissionrules/preferentialadmission/templates/configure.php:30
-#: ../lib/admissionrules/preferentialadmission/templates/configure.php:31
-#: ../lib/admissionrules/conditionaladmission/templates/configure.php:15
-#: ../lib/admissionrules/conditionaladmission/templates/configure.php:16
-msgid "Bedingung hinzufügen"
-msgstr "Add condition"
-
-#: ../lib/admissionrules/preferentialadmission/templates/configure.php:37
-msgid "Höhere Fachsemester bevorzugen"
-msgstr "Prefer higher semesters"
-
-#: ../lib/admissionrules/preferentialadmission/templates/info.php:1
-msgid "Folgende Personenkreise werden bei der Platzverteilung bevorzugt:"
-msgstr ""
-"The following categories of people are preferred during seat allocation:"
-
-#: ../lib/admissionrules/preferentialadmission/templates/info.php:15
-msgid "Höhere Fachsemester werden bevorzugt behandelt."
-msgstr "Higher semesters will be preferred."
-
-#: ../lib/admissionrules/termsadmission/TermsAdmission.class.php:57
-msgid ""
-"Mit dieser Anmelderegel können Sie einen Kurs mit spezifischen "
-"Teilnahmebedingungen realisieren. Die Anmeldung ist erst möglich, nachdem "
-"diese akzeptiert wurden."
-msgstr ""
-"With this registration rule you can set specific terms of use for your "
-"course. Registration is only possible after these have been accepted."
-
-#: ../lib/admissionrules/termsadmission/TermsAdmission.class.php:80
-msgid "Kurs mit Teilnahmebedingungen"
-msgstr "Course with terms of use"
-
-#: ../lib/admissionrules/termsadmission/TermsAdmission.class.php:112
-msgid "Um sich anzumelden, müssen Sie die Teilnahmebedingungen akzeptieren."
-msgstr "You need to accept the terms of use."
-
-#: ../lib/admissionrules/termsadmission/templates/configure.php:2
-msgid "Teilnahmebedingungen"
-msgstr "Terms of use"
-
-#: ../lib/admissionrules/termsadmission/templates/configure.php:3
-msgid "Formulieren Sie hier die Teilnahmebedingungen."
-msgstr "Enter your terms of use here."
-
-#: ../lib/admissionrules/termsadmission/templates/info.php:1
-msgid ""
-"Eine Anmeldung ist erst nach Akzeptieren der Teilnahmebedingungen möglich:"
-msgstr "Registration is only possible after accepting the terms of use:"
-
-#: ../lib/admissionrules/termsadmission/templates/input.php:9
-msgid "Hiermit akzeptiere ich die oben angezeigten Teilnahmebedingungen"
-msgstr "I hereby accept the terms of use shown above"
-
-#: ../lib/admissionrules/coursememberadmission/CourseMemberAdmission.class.php:39
-#, php-format
-msgid "Sie sind nicht in der Veranstaltung \"%s\" eingetragen."
-msgstr "You are not enroled into the course \"%s\"."
-
-#: ../lib/admissionrules/coursememberadmission/CourseMemberAdmission.class.php:40
-#, php-format
-msgid "Sie dürfen nicht in der Veranstaltung \"%s\" eingetragen sein."
-msgstr "You are not allowed to be enroled into the course \"%s\"."
-
-#: ../lib/admissionrules/coursememberadmission/CourseMemberAdmission.class.php:64
-msgid ""
-"Anmelderegeln dieses Typs legen eine Veranstaltung fest, in der die Nutzer "
-"bereits eingetragen sein müssen, oder in der sie nicht eingetragen sein "
-"dürfen, um sich zu Veranstaltungen des Anmeldesets anmelden zu können."
-msgstr ""
-"This admission configures a course to which a user has to be enroled OR does "
-"not has to be enroled to subscribe to courses bundled in this admission."
-
-#: ../lib/admissionrules/coursememberadmission/CourseMemberAdmission.class.php:71
-msgid "Veranstaltungsbezogene Anmeldung"
-msgstr "Course admission"
-
-#: ../lib/admissionrules/coursememberadmission/CourseMemberAdmission.class.php:182
-msgid "Bitte wählen Sie eine Veranstaltung aus."
-msgstr "Please select a course."
-
-#: ../lib/admissionrules/coursememberadmission/templates/configure.php:8
-msgid "Mitgliedschaft in folgender Veranstaltung überprüfen"
-msgstr "Check enrolment in the following course"
-
-#: ../lib/admissionrules/coursememberadmission/templates/configure.php:16
-#: ../lib/admissionrules/coursememberadmission/templates/info.php:19
-msgid "Veranstaltungsdetails aufrufen"
-msgstr "Display course details"
-
-#: ../lib/admissionrules/coursememberadmission/templates/configure.php:23
-#: ../app/views/course/feedback/index.php:35
-msgid "Modus"
-msgstr "Mode"
-
-#: ../lib/admissionrules/coursememberadmission/templates/configure.php:28
-msgid "Mitgliedschaft ist notwendig"
-msgstr "Membership is required"
-
-#: ../lib/admissionrules/coursememberadmission/templates/configure.php:32
-msgid "Mitgliedschaft ist verboten"
-msgstr "Membership is prohibited"
-
-#: ../lib/admissionrules/coursememberadmission/templates/info.php:3
-#: ../lib/admissionrules/conditionaladmission/templates/info.php:3
-#: ../lib/admissionrules/limitedadmission/templates/info.php:3
-#, php-format
-msgid "Diese Regel gilt von %s bis %s."
-msgstr "This setting is active from %s to %s."
-
-#: ../lib/admissionrules/coursememberadmission/templates/info.php:6
-#: ../lib/admissionrules/conditionaladmission/templates/info.php:7
-#: ../lib/admissionrules/limitedadmission/templates/info.php:6
-#, php-format
-msgid "Diese Regel gilt ab %s."
-msgstr "This setting is active from %s."
-
-#: ../lib/admissionrules/coursememberadmission/templates/info.php:8
-#: ../lib/admissionrules/conditionaladmission/templates/info.php:10
-#: ../lib/admissionrules/limitedadmission/templates/info.php:8
-#, php-format
-msgid "Diese Regel gilt bis %s."
-msgstr "This setting is active until %s."
-
-#: ../lib/admissionrules/coursememberadmission/templates/info.php:13
-#, php-format
-msgid ""
-"Die Anmeldung ist nur Teilnehmenden der Veranstaltung: <b>%s</b> %s erlaubt."
-msgstr ""
-"The enrolment is only permitted for participants of the course: <b>%s</b> %s."
-
-#: ../lib/admissionrules/coursememberadmission/templates/info.php:14
-#, php-format
-msgid ""
-"Die Anmeldung ist für Teilnehmende der Veranstaltung: <b>%s</b> %s verboten."
-msgstr ""
-"The enrolment is forbidden for participants of the course: <b>%s</b> %s."
-
-#: ../lib/admissionrules/conditionaladmission/ConditionalAdmission.class.php:65
-#, php-format
-msgid "Sie erfüllen nicht die Bedingung: %s"
-msgstr "You do not fulfil the condition %s"
-
-#: ../lib/admissionrules/conditionaladmission/ConditionalAdmission.class.php:185
-msgid ""
-"Über eine Menge von Bedingungen kann festgelegt werden, wer zur Anmeldung zu "
-"den Veranstaltungen des Anmeldesets zugelassen ist. Es muss nur eine der "
-"Bedingungen erfüllt sein, innerhalb einer Bedingung müssen aber alle "
-"Datenfelder zutreffen."
-msgstr ""
-"Using a set of conditions one can define here who is allowed to enrol into "
-"the courses. Only one condition must be fulfilled but inside a condition all "
-"data fields must match."
-
-#: ../lib/admissionrules/conditionaladmission/ConditionalAdmission.class.php:197
-msgid "Bedingte Anmeldung"
-msgstr "Conditional Admission"
-
-#: ../lib/admissionrules/conditionaladmission/ConditionalAdmission.class.php:517
-#, php-format
-msgid ""
-"Es müssen entweder alle Bedingungen Teil einer Gruppe sein, oder keine. %s "
-"Bedingungen sind keiner Gruppe zugeordnet."
-msgstr ""
-"Either all conditions must be part of a group or none of them. %s conditions "
-"are not assigned to a group."
-
-#: ../lib/admissionrules/conditionaladmission/ConditionalAdmission.class.php:519
-msgid "Die Gesamtsumme der Kontingente muss 100 Prozent betragen."
-msgstr "The total of the contingents must be 100 percent."
-
-#: ../lib/admissionrules/conditionaladmission/ConditionalAdmission.class.php:521
-#, php-format
-msgid "Für %s Gruppen muss noch ein Kontingent festgelegt werden."
-msgstr "For %s groups a contingent must be set."
-
-#: ../lib/admissionrules/conditionaladmission/templates/configure.php:9
-msgid "Anmeldebedingungen"
-msgstr "Conditions: "
-
-#: ../lib/admissionrules/conditionaladmission/templates/configure.php:23
-msgid "Sie haben noch keine Bedingungen festgelegt."
-msgstr "You did not yet define conditions."
-
-#: ../lib/admissionrules/conditionaladmission/templates/configure.php:29
-#: ../lib/admissionrules/conditionaladmission/templates/configure.php:61
-msgid "Kontingent:"
-msgstr "Contingent:"
-
-#: ../lib/admissionrules/conditionaladmission/templates/configure.php:31
-#: ../lib/admissionrules/conditionaladmission/templates/configure.php:75
-msgid "Kontingent aufheben"
-msgstr "Void contingent"
-
-#: ../lib/admissionrules/conditionaladmission/templates/configure.php:57
-msgid "Kontingent erstellen"
-msgstr "Create contingent"
-
-#: ../lib/admissionrules/conditionaladmission/templates/info.php:15
-msgid "Folgende Bedingung muss zur Anmeldung erfüllt sein:"
-msgstr "The following conditions must be met for enrolment:"
-
-#: ../lib/admissionrules/conditionaladmission/templates/info.php:27
-#: ../lib/admissionrules/conditionaladmission/templates/info.php:38
-msgid ""
-"Mindestens eine der folgenden Bedingungen muss zur Anmeldung erfüllt sein:"
-msgstr "At least one of these conditions must be fulfilled for enrolment:"
-
-#: ../lib/admissionrules/conditionaladmission/templates/info.php:45
-#, php-format
-msgid "Kontingent: %s Prozent"
-msgstr "Contingent: %s percent"
-
-#: ../lib/admissionrules/limitedadmission/templates/configure.php:5
-msgid "Maximale Anzahl erlaubter Anmeldungen"
-msgstr "Maximum amount of allowed enrolments"
-
-#: ../lib/admissionrules/limitedadmission/templates/info.php:11
-#, php-format
-msgid ""
-"Die Anmeldung zu maximal %s Veranstaltungen des Anmeldesets ist erlaubt."
-msgstr "Enrolment is allowed for up to %s courses of the admission set."
-
-#: ../lib/admissionrules/limitedadmission/LimitedAdmission.class.php:39
-#, php-format
-msgid ""
-"Sie haben sich bereits zur maximalen Anzahl von %s Veranstaltungen "
-"angemeldet."
-msgstr "You enroled to the maximal possible number of %s courses."
-
-#: ../lib/admissionrules/limitedadmission/LimitedAdmission.class.php:92
-msgid ""
-"Diese Art von Anmelderegel legt eine Maximalzahl von Veranstaltungen fest, "
-"an denen Nutzer im aktuellen Anmeldeset teilnehmen können."
-msgstr "Limit of courses students can enrol to."
-
-#: ../lib/admissionrules/limitedadmission/LimitedAdmission.class.php:117
-msgid "Anmeldung zu maximal n Veranstaltungen"
-msgstr "Enrolment to max. n courses"
-
-#: ../lib/admissionrules/limitedadmission/LimitedAdmission.class.php:268
-msgid "Bitte geben Sie die maximale Anzahl erlaubter Anmeldungen an."
-msgstr "Please specify the maximum amount of allowed enrolments."
-
-#: ../lib/admissionrules/passwordadmission/PasswordAdmission.class.php:44
-msgid "Das eingegebene Passwort ist falsch."
-msgstr "Wrong password."
-
-#: ../lib/admissionrules/passwordadmission/PasswordAdmission.class.php:70
-msgid ""
-"Mit dieser Anmelderegel können Sie ein Passwort für Zugang zu den "
-"zugeordneten Veranstaltungen vergeben. Die Anmeldung ist dann nur für "
-"Personen möglich, die dieses Passwort kennen."
-msgstr ""
-"With this admission rule you can set a password for the access to the "
-"assigned courses. Enrolment is then only possible for people who know the "
-"password."
-
-#: ../lib/admissionrules/passwordadmission/PasswordAdmission.class.php:92
-#: ../app/views/course/admission/index.php:28
-msgid "Anmeldung mit Passwort"
-msgstr "Admission with password protection"
-
-#: ../lib/admissionrules/passwordadmission/PasswordAdmission.class.php:150
-msgid "Die Eingabe eines Passwortes ist erforderlich."
-msgstr "Password required."
-
-#: ../lib/admissionrules/passwordadmission/PasswordAdmission.class.php:231
-msgid "Das Passwort darf nicht leer sein."
-msgstr "Password required."
-
-#: ../lib/admissionrules/passwordadmission/PasswordAdmission.class.php:234
-msgid "Das Passwort stimmt nicht mit der Wiederholung überein."
-msgstr "Passwords do not match. "
-
-#: ../lib/admissionrules/passwordadmission/templates/configure.php:8
-#: ../lib/admissionrules/passwordadmission/templates/input.php:2
-msgid "Zugangspasswort"
-msgstr "Password"
-
-#: ../lib/admissionrules/passwordadmission/templates/configure.php:13
-msgid "Passwort wiederholen"
-msgstr "Repeat password"
-
-#: ../lib/admissionrules/passwordadmission/templates/info.php:1
-msgid "Die Anmeldung ist nur mit Eingabe eines Passworts möglich."
-msgstr "Password required."
-
-#: ../lib/admissionrules/lockedadmission/LockedAdmission.class.php:32
-#: ../lib/admissionrules/lockedadmission/templates/info.php:1
-msgid "Die Anmeldung ist gesperrt."
-msgstr "Admission locked. "
-
-#: ../lib/admissionrules/lockedadmission/LockedAdmission.class.php:57
-msgid ""
-"Diese Art von Anmelderegel sperrt die Anmeldung zu allen zugehörigen "
-"Veranstaltungen, sodass sich niemand eintragen kann."
-msgstr ""
-"This admission rule locks the enrolment for all associated courses, "
-"preventing enrolment for everybody."
-
-#: ../lib/admissionrules/lockedadmission/LockedAdmission.class.php:66
-#: ../app/views/course/admission/index.php:32
-#: ../app/views/admin/semester/lock.php:17
-#: ../app/views/admin/sem_classes/details.php:119
-msgid "Anmeldung gesperrt"
-msgstr "Admission locked"
-
-#: ../lib/admissionrules/participantrestrictedadmission/ParticipantRestrictedAdmission.class.php:43
-msgid "Es stehen keine weiteren Plätze zur Verfügung."
-msgstr "No more seats available."
-
-#: ../lib/admissionrules/participantrestrictedadmission/ParticipantRestrictedAdmission.class.php:77
-msgid ""
-"Anmelderegeln dieses Typs legen fest, ob die zugeordneten Veranstaltungen "
-"eine maximale Teilnehmendenanzahl haben. Die Platzverteilung erfolgt "
-"automatisiert."
-msgstr ""
-"Admission rules of this type define if the assigned courses have a maximum "
-"number of participants. The seat allocation is done automatically."
-
-#: ../lib/admissionrules/participantrestrictedadmission/ParticipantRestrictedAdmission.class.php:94
-#: ../app/views/course/admission/index.php:91
-msgid "Beschränkte Teilnehmendenanzahl"
-msgstr "Limited number of participants"
-
-#: ../lib/admissionrules/participantrestrictedadmission/ParticipantRestrictedAdmission.class.php:213
-#, php-format
-msgid ""
-"Bitte geben Sie für die Platzverteilung ein Datum an, das weiter in der "
-"Zukunft liegt. Das frühestmögliche Datum ist %s."
-msgstr ""
-"Please enter a date for the seat allocation which is further in the future. "
-"The earliest possible date is %s."
-
-#: ../lib/admissionrules/participantrestrictedadmission/ParticipantRestrictedAdmission.class.php:216
-msgid ""
-"Sie können kein Datum für die automatische Platzverteilung einstellen und "
-"gleichzeitig die automatische Platzverteilung ausschalten."
-msgstr ""
-"You cannot set a date for the automatic seat allocation and simultaneously "
-"switch off the automatic seat allocation."
-
-#: ../lib/admissionrules/participantrestrictedadmission/templates/configure.php:3
-msgid "Zeitpunkt der automatischen Platzverteilung"
-msgstr "Date of assignment"
-
-#: ../lib/admissionrules/participantrestrictedadmission/templates/configure.php:23
-msgid "<u>Keine</u> automatische Platzverteilung (Windhund-Verfahren)"
-msgstr "<u>No</u> automatic assignment (aka first-come-first-serve)"
-
-#: ../lib/admissionrules/participantrestrictedadmission/templates/configure.php:24
-msgid "Es existieren bereits Anmeldungen für die automatische Platzverteilung."
-msgstr "Automated assignment is already set. "
-
-#: ../lib/admissionrules/participantrestrictedadmission/templates/info.php:1
-msgid ""
-"Es wird eine festgelegte Anzahl von Plätzen in den Veranstaltungen verteilt."
-msgstr "A defined number of seats will be assigned to these courses."
-
-#: ../lib/admissionrules/participantrestrictedadmission/templates/info.php:5
-#, php-format
-msgid ""
-"Die Plätze in den betreffenden Veranstaltungen werden am %s um %s verteilt."
-msgstr "The seats in these courses will be assigned at %s, %s."
-
-#: ../lib/admissionrules/participantrestrictedadmission/templates/info.php:9
-#, php-format
-msgid ""
-"Die Plätze in den betreffenden Veranstaltungen wurden am %s um %s verteilt. "
-"Weitere Plätze werden evtl. über Wartelisten zur Verfügung gestellt."
-msgstr ""
-"The seats in the affected courses have been assigned at %s on %s. Additional "
-"seats may be available via a wait list."
-
-#: ../lib/admissionrules/participantrestrictedadmission/templates/info.php:14
-msgid "Die Plätze werden in der Reihenfolge der Anmeldung vergeben."
-msgstr "The seats will be assigned in order of enrolment."
-
-#: ../config/mvv_config.php:4
-msgid "Akkreditierungsfassung"
-msgstr "Version of accreditation"
-
-#: ../config/mvv_config.php:5
-msgid "Änderungsfassung"
-msgstr "Changed version"
-
-#: ../config/mvv_config.php:6
-msgid "Reformfassung"
-msgstr "Reformed version"
-
-#: ../config/mvv_config.php:7
-msgid "Deregulierungsfassung"
-msgstr "De-regulated version"
-
-#: ../config/mvv_config.php:14
-msgid "Sommersemester und Wintersemester"
-msgstr "Summer or winter semester"
-
-#: ../config/mvv_config.php:24
-msgid "Modulverantwortung"
-msgstr "Module responsibility "
-
-#: ../config/mvv_config.php:25 ../config/mvv_config.php:32
-#: ../config/config.inc.php:218 ../config/config_develop.inc.php:254
-#: ../app/views/shared/modul/_pruefungen.php:4
-#: ../app/views/module/module/modul.php:575
-msgid "Prüfung"
-msgstr "Examination"
-
-#: ../config/mvv_config.php:26
-msgid "Modulberatung"
-msgstr "Module counselling"
-
-#: ../config/mvv_config.php:33
-msgid "Nachprüfung"
-msgstr "Re-examination"
-
-#: ../config/mvv_config.php:34
-msgid "Ausgleichsprüfung"
-msgstr "Compensation test"
-
-#: ../config/mvv_config.php:35 ../app/views/shared/modul/_modul_ohne_lv.php:33
-#: ../app/views/shared/modul/_pruefungen.php:43
-#: ../app/views/module/module/modul.php:612
-msgid "Wiederholungsprüfung"
-msgstr "Exam repetition information"
-
-#: ../config/mvv_config.php:36
-msgid "Einschreibung"
-msgstr "Enrolment"
-
-#: ../config/mvv_config.php:45
-msgid "Arabisch"
-msgstr "Arabic"
-
-#: ../config/mvv_config.php:46
-msgid "Bosnisch/Kroatisch/Serbisch"
-msgstr "Bosnian/Croatian/Serbian"
-
-#: ../config/mvv_config.php:47
-msgid "Chinesisch"
-msgstr "Chinese"
-
-#: ../config/mvv_config.php:48
-msgid "Französisch"
-msgstr "French"
-
-#: ../config/mvv_config.php:49
-msgid "Griechisch"
-msgstr "Greek"
-
-#: ../config/mvv_config.php:50
-msgid "Hebräisch"
-msgstr "Hebrew"
-
-#: ../config/mvv_config.php:51
-msgid "Italienisch"
-msgstr "Italian"
-
-#: ../config/mvv_config.php:52
-msgid "Japanisch"
-msgstr "Japanese"
-
-#: ../config/mvv_config.php:53
-msgid "Latein"
-msgstr "Latin"
-
-#: ../config/mvv_config.php:54
-msgid "Neugriechisch"
-msgstr "Modern greek"
-
-#: ../config/mvv_config.php:55
-msgid "Niederländisch"
-msgstr "Dutch"
-
-#: ../config/mvv_config.php:56
-msgid "Norwegisch"
-msgstr "Norwegian"
-
-#: ../config/mvv_config.php:57
-msgid "Polnisch"
-msgstr "Polish"
-
-#: ../config/mvv_config.php:58
-msgid "Portugiesisch"
-msgstr "Portuguese"
-
-#: ../config/mvv_config.php:59
-msgid "Russisch"
-msgstr "Russian"
-
-#: ../config/mvv_config.php:60
-msgid "Schwedisch"
-msgstr "Swedish"
-
-#: ../config/mvv_config.php:61
-msgid "Spanisch"
-msgstr "Spanish"
-
-#: ../config/mvv_config.php:62
-msgid "Tschechisch"
-msgstr "Czech"
-
-#: ../config/mvv_config.php:63
-msgid "Türkisch"
-msgstr "Turkish"
-
-#: ../config/mvv_config.php:64
-msgid "Ukrainisch"
-msgstr "Ukrainian"
-
-#: ../config/mvv_config.php:65
-msgid "Ungarisch"
-msgstr "Hungarian"
-
-#: ../config/mvv_config.php:76
-msgid "modulabschließend"
-msgstr "module finalising"
-
-#: ../config/mvv_config.php:77
-msgid "modulbegleitend"
-msgstr "module accompanying"
-
-#: ../config/mvv_config.php:87
-#: ../app/views/contents/courseware/create_project.php:36
-msgid "Entwurf"
-msgstr "Draft"
-
-#: ../config/mvv_config.php:92
-msgid "genehmigt und aktiv"
-msgstr "approved and active"
-
-#: ../config/mvv_config.php:97
-msgid "ausgelaufen und nicht mehr aktiv"
-msgstr "expired and inactive"
-
-#: ../config/mvv_config.php:112
-msgid "Hauptverantwortliche (geschäftsführende) Einrichtung"
-msgstr "Primarily responsible (managing) institute"
-
-#: ../config/mvv_config.php:120 ../app/views/module/module/modulteil.php:481
-#: ../app/views/module/module/modul.php:697
-msgid "Originalfassung"
-msgstr "Original version"
-
-#: ../config/mvv_config.php:131
-msgid "LV"
-msgstr "Course"
-
-#: ../config/mvv_config.php:140
-msgid "Basisvorlesung"
-msgstr "Elementary course"
-
-#: ../config/mvv_config.php:141
-msgid "Ringvorlesung"
-msgstr "Series of lectures"
-
-#: ../config/mvv_config.php:144
-msgid "Einführungsseminar"
-msgstr "Introductory seminar"
-
-#: ../config/mvv_config.php:145
-msgid "Proseminar"
-msgstr "Introductory seminar course"
-
-#: ../config/mvv_config.php:146
-msgid "Hauptseminar"
-msgstr "Advanced seminar"
-
-#: ../config/mvv_config.php:147
-msgid "Oberseminar"
-msgstr "Graduate seminar"
-
-#: ../config/mvv_config.php:148
-msgid "Übung/Tutorium/Sprache"
-msgstr "Exercise/tutorial/language"
-
-#: ../config/mvv_config.php:150
-msgid "Tutorium"
-msgstr "Tutorial"
-
-#: ../config/mvv_config.php:151
-msgid "Sprachkurs"
-msgstr "Language course"
-
-#: ../config/mvv_config.php:152
-msgid "Sprachübung"
-msgstr "Language exercise"
-
-#: ../config/mvv_config.php:153
-msgid "Lektüreübung"
-msgstr "Reading exercise"
-
-#: ../config/mvv_config.php:154
-msgid "Übersetzungsübung"
-msgstr "Translation exercise"
-
-#: ../config/mvv_config.php:155
-msgid "Stilübung"
-msgstr "Style exercise"
-
-#: ../config/mvv_config.php:158
-msgid "Forschungskolloquium"
-msgstr "Research colloquium"
-
-#: ../config/mvv_config.php:159
-msgid "Examenskolloquium"
-msgstr "Exam colloquium"
-
-#: ../config/mvv_config.php:160
-msgid "Praxis/Exkursion"
-msgstr "Practice/field trip"
-
-#: ../config/mvv_config.php:161 ../config/config.inc.php:204
-#: ../config/config.inc.php:216 ../config/config_develop.inc.php:240
-#: ../config/config_develop.inc.php:252
-msgid "Exkursion"
-msgstr "Study trip"
-
-#: ../config/mvv_config.php:162
-msgid "Praktischer Kurs"
-msgstr "Practical class"
-
-#: ../config/mvv_config.php:163
-msgid "Sportpraktischer Kurs"
-msgstr "Practical sports class"
-
-#: ../config/mvv_config.php:164
-msgid "Künstlerischer Unterricht"
-msgstr "Art education"
-
-#: ../config/mvv_config.php:166 ../config/mvv_config.php:167
-msgid "Projekt"
-msgstr "Project"
-
-#: ../config/mvv_config.php:168
-msgid "Projektseminar"
-msgstr "Project seminar"
-
-#: ../config/mvv_config.php:169
-msgid "Projektpraktikum"
-msgstr "Project practical training"
-
-#: ../config/mvv_config.php:170
-msgid "Szenisches Projekt"
-msgstr "Stage project"
-
-#: ../config/mvv_config.php:172
-msgid "Freie Lektüre"
-msgstr "Free reading"
-
-#: ../config/mvv_config.php:173
-msgid "Grundkurs"
-msgstr "Basic course"
-
-#: ../config/mvv_config.php:174 ../config/config.inc.php:203
-#: ../config/config.inc.php:215 ../config/config_develop.inc.php:239
-#: ../config/config_develop.inc.php:251
-msgid "Klausur"
-msgstr "Written examination"
-
-#: ../config/mvv_config.php:175
-msgid "Kursus"
-msgstr "Course"
-
-#: ../config/mvv_config.php:177
-msgid "Repetitorium"
-msgstr "Refresher course"
-
-#: ../config/mvv_config.php:178
-msgid "Selbständige betreute Arbeit"
-msgstr "Independent supervised work"
-
-#: ../config/mvv_config.php:179
-msgid "Workshop"
-msgstr "Workshop"
-
-#: ../config/mvv_config.php:180
-msgid "Kombinationen"
-msgstr "Combinations"
-
-#: ../config/mvv_config.php:181
-msgid "Vorlesung oder Seminar"
-msgstr "Course or seminar"
-
-#: ../config/mvv_config.php:182
-msgid "Vorlesung oder Proseminar"
-msgstr "Lecture or introductory seminar course"
-
-#: ../config/mvv_config.php:183
-msgid "Vorlesung oder Hauptseminar"
-msgstr "Lecture or advanced seminar"
-
-#: ../config/mvv_config.php:184
-msgid "Vorlesung oder Übung"
-msgstr "Course or exercise"
-
-#: ../config/mvv_config.php:185
-msgid "Vorlesung, Seminar oder Lektüreübung"
-msgstr "Lecture, seminar or reading exercise"
-
-#: ../config/mvv_config.php:186
-msgid "Vorlesung, Seminar oder Einführungsveranstaltungen"
-msgstr "Lecture, seminar or introductory course"
-
-#: ../config/mvv_config.php:187
-msgid "Vorlesung, Seminar, Einführung oder Lektüreübung"
-msgstr "Lecture, seminar, introduction or reading exercise"
-
-#: ../config/mvv_config.php:188
-msgid "Seminar oder Oberseminar"
-msgstr "Seminar or graduate seminar"
-
-#: ../config/mvv_config.php:189
-msgid "Seminar oder Projektseminar"
-msgstr "Seminar or project seminar"
-
-#: ../config/mvv_config.php:190
-msgid "Seminar oder Übung"
-msgstr "Seminar or exercise"
-
-#: ../config/mvv_config.php:191
-msgid "Seminar oder Lektürekurs"
-msgstr "Seminar or reading course"
-
-#: ../config/mvv_config.php:192
-msgid "Seminar oder Szenisches Projekt"
-msgstr "Seminar or stage project"
-
-#: ../config/mvv_config.php:193
-msgid "Seminar, Übung oder Exkursion"
-msgstr "Seminar, exercise or excursion"
-
-#: ../config/mvv_config.php:194
-msgid "Seminar, Szenisches Projekt oder eigene Künstlerische Leistung"
-msgstr "Seminar, stage project or own artistic performance"
-
-#: ../config/mvv_config.php:195
-msgid "Übung oder Projekt"
-msgstr "Exercise or project"
-
-#: ../config/mvv_config.php:196
-msgid "Übung oder Tutorium"
-msgstr "Exercise or tutorial"
-
-#: ../config/mvv_config.php:197
-msgid "Übung oder Lektürekurs"
-msgstr "Tutorial or reading course"
-
-#: ../config/mvv_config.php:198
-msgid "Szenisches Projekt oder eigene künstlerische Leistung"
-msgstr "Stage project or own artistic performance"
-
-#: ../config/mvv_config.php:199
-msgid "Praktischer Kurs oder Festivalorganisation"
-msgstr "Practical class or festival organisation"
-
-#: ../config/mvv_config.php:215
-msgid "kann"
-msgstr "course can be attended"
-
-#: ../config/mvv_config.php:219
-msgid "soll"
-msgstr "course should be attended"
-
-#: ../config/mvv_config.php:223
-msgid "muss"
-msgstr "course must be attended"
-
-#: ../config/mvv_config.php:249
-msgid "grundständiger Studiengang"
-msgstr "undergraduate course of studies"
-
-#: ../config/mvv_config.php:253
-msgid "International"
-msgstr "International"
-
-#: ../config/mvv_config.php:265
-msgid "Bachelor of Arts"
-msgstr "Bachelor of Arts"
-
-#: ../config/mvv_config.php:269
-msgid "Bachelor of Science"
-msgstr "Bachelor of Science"
-
-#: ../config/mvv_config.php:279
-msgid "Fragen Rund ums Studium"
-msgstr "Questions about studying"
-
-#: ../config/mvv_config.php:280
-msgid "Fragen zum Studiengang"
-msgstr "Questions about the course of study"
-
-#: ../config/mvv_config.php:289
-msgid "Masterfach"
-msgstr "Master subject"
-
-#: ../config/mvv_config.php:293
-msgid "Kernfach"
-msgstr "Core subject"
-
-#: ../config/mvv_config.php:297
-msgid "Kombinationsfach"
-msgstr "Combination subject"
-
-#: ../config/mvv_config.php:301
-msgid "Kooperationsfach"
-msgstr "Cooperation subject"
-
-#: ../config/mvv_config.php:311
-msgid "PO 03 fachspezi. Teil"
-msgstr "PO 03 subject specific part"
-
-#: ../config/mvv_config.php:319 ../config/mvv_config.php:332
-msgid "Ordnungen"
-msgstr "Regulations"
-
-#: ../config/mvv_config.php:320
-msgid "Vordrucke und Formulare"
-msgstr "Forms"
-
-#: ../config/mvv_config.php:321
-msgid "Anrechnungen"
-msgstr "Crediting"
-
-#: ../config/mvv_config.php:322
-msgid "Praktika"
-msgstr "Practical trainings"
-
-#: ../config/mvv_config.php:323
-msgid "Klausuren und Prüfende"
-msgstr "Examinations and examiners"
-
-#: ../config/mvv_config.php:324
-#: ../app/views/room_management/overview/locations.php:7
-msgid "Webseite"
-msgstr "Website"
-
-#: ../config/mvv_config.php:333
-msgid "Anglistik"
-msgstr "English Studies"
-
-#: ../config/mvv_config.php:334
-msgid "BPO"
-msgstr "BPO"
-
-#: ../config/mvv_config.php:341
-msgid "Fachschaften"
-msgstr "Student councils"
-
-#: ../config/mvv_config.php:348
-msgid "Studienfachberater"
-msgstr "Academic advisor"
-
-#: ../config/config.inc.php:73 ../config/config_develop.inc.php:77
-#, php-format
-msgid "Und hier geht's zur %sStud.IP Portalseite%s&nbsp;"
-msgstr "To the %sStud.IP homepage%s&nbsp;"
-
-#: ../config/config.inc.php:85 ../config/config_develop.inc.php:89
-#: ../app/views/course/wizard/steps/basicdata/index.php:129
-msgid "Vertretungen"
-msgstr "Substitutes"
-
-#: ../config/config.inc.php:87 ../config/config_develop.inc.php:91
-#: ../app/controllers/institute/members.php:188
-#: ../app/views/course/feedback/config.php:7
-#: ../app/views/course/feedback/config.php:20
-#: ../app/views/studiengaenge/informationen/degree.php:10
-#: ../app/views/studiengaenge/informationen/index.php:10
-msgid "Studierende"
-msgstr "Students"
-
-#: ../config/config.inc.php:88 ../config/config_develop.inc.php:92
-msgid "Leser/-innen"
-msgstr "Readers"
-
-#: ../config/config.inc.php:89 ../config/config_develop.inc.php:93
-msgid "Vorläufig akzeptierte Person"
-msgstr "Provisionally enroled participants"
-
-#: ../config/config.inc.php:90 ../config/config_develop.inc.php:94
-msgid "Vorläufig akzeptierte Personen"
-msgstr "Provisionally accepted participant"
-
-#: ../config/config.inc.php:169 ../config/config_develop.inc.php:194
-msgid "Zentrum"
-msgstr "Centre"
-
-#: ../config/config.inc.php:170 ../config/config_develop.inc.php:195
-msgid "Lehrstuhl"
-msgstr "Chair"
-
-#: ../config/config.inc.php:171 ../config/config_develop.inc.php:196
-msgid "Abteilung"
-msgstr "Section"
-
-#: ../config/config.inc.php:172 ../config/config_develop.inc.php:197
-#: ../app/controllers/studiengaenge/versionen.php:171
-#: ../app/views/fachabschluss/faecher/fachbereiche.php:7
-#: ../app/views/studiengaenge/fachbereiche/index.php:4
-#: ../app/views/studiengaenge/fachbereichestgteile/index.php:6
-msgid "Fachbereich"
-msgstr "Department"
-
-#: ../config/config.inc.php:175 ../config/config_develop.inc.php:200
-msgid "Arbeitsgruppe"
-msgstr "Working group"
-
-#: ../config/config.inc.php:205 ../config/config_develop.inc.php:241
-msgid "anderer Termin"
-msgstr "other date"
-
-#: ../config/config.inc.php:206 ../config/config.inc.php:217
-#: ../config/config_develop.inc.php:242 ../config/config_develop.inc.php:253
-msgid "Sondersitzung"
-msgstr "Special meeting"
-
-#: ../config/config.inc.php:219 ../config/config_develop.inc.php:255
-msgid "Telefonat"
-msgstr "Telephone call"
-
-#: ../config/config.inc.php:220 ../config/config_develop.inc.php:256
-msgid "Besprechung"
-msgstr "Meeting"
-
-#: ../config/config.inc.php:221 ../config/config_develop.inc.php:257
-msgid "Verabredung"
-msgstr "Appointment"
-
-#: ../config/config.inc.php:222 ../config/config_develop.inc.php:258
-msgid "Geburtstag"
-msgstr "Birthday"
-
-#: ../config/config.inc.php:223 ../config/config_develop.inc.php:259
-msgid "Familie"
-msgstr "Family"
-
-#: ../config/config.inc.php:224 ../config/config_develop.inc.php:260
-msgid "Urlaub"
-msgstr "Holiday"
-
-#: ../config/config.inc.php:225 ../config/config_develop.inc.php:261
-msgid "Reise"
-msgstr "Journey"
-
-#: ../config/config.inc.php:240 ../config/config_develop.inc.php:289
-msgid "Titel1 Vorname Nachname Titel2"
-msgstr "Title1 first name last name title2"
-
-#: ../config/config.inc.php:241 ../config/config_develop.inc.php:290
-msgid "Nachname, Vorname, Titel1, Titel2"
-msgstr "Last name, first name, title1, title2"
-
-#: ../config/config.inc.php:242 ../config/config_develop.inc.php:291
-msgid "Vorname Nachname"
-msgstr "First name last name"
-
-#: ../config/config.inc.php:243 ../config/config_develop.inc.php:292
-#: ../app/views/course/members/add_member.php:62
-#: ../app/views/course/members/tutor_list.php:60
-#: ../app/views/course/members/import_autorlist.php:24
-#: ../app/views/course/members/accepted_list.php:56
-#: ../app/views/course/members/dozent_list.php:41
-#: ../app/views/course/members/awaiting_list.php:48
-#: ../app/views/course/members/autor_list.php:65
-#: ../app/views/course/members/user_list.php:60
-#: ../app/views/course/statusgroups/getgroup.php:44
-msgid "Nachname, Vorname"
-msgstr "Last name, first name"
-
-#: ../config/config.inc.php:244 ../config/config_develop.inc.php:293
-msgid "Nachname, V."
-msgstr "Last name, F."
-
-#: ../config/config.inc.php:245 ../config/config_develop.inc.php:294
-msgid "Vorname Nachname, Motto"
-msgstr "First name, last name, motto"
-
-#: ../config/config.inc.php:250 ../config/config_develop.inc.php:299
-#: ../app/views/module/module/modul.php:502
-#: ../app/views/file/add_files_window.php:56
-msgid "Literatur"
-msgstr "References"
-
-#: ../config/config.inc.php:252 ../config/config_develop.inc.php:301
-msgid "Verschiedenes"
-msgstr "Miscellaneous"
-
-#: ../config/config.inc.php:289
-msgid ""
-"Exportieren Sie Ihre Literaturliste aus EndNote / Reference Manager als XML-"
-"Datei."
-msgstr ""
-"Export your reference list as XML file from EndNote / Reference Manager."
-
-#: ../config/config.inc.php:290
-msgid "Einfaches XML nach fester Vorgabe"
-msgstr "Plain XML in accordance with strict specifications"
-
-#: ../config/config.inc.php:291
-msgid "Die XML-Datei muss folgende Struktur besitzen:"
-msgstr "The XML file must have the following structure:"
-
-#: ../config/config.inc.php:304
-msgid ""
-"Jeder Abschnitt darf mehrfach vorkommen oder kann weggelassen werden, "
-"mindestens ein Titel pro Eintrag muss vorhanden sein."
-msgstr ""
-"Each section may be repeated or omitted, at least one title per entry must "
-"be provided."
-
-#: ../config/config.inc.php:305
-msgid "CSV mit Semikolon als Trennzeichen"
-msgstr "CSV with semicolon as separator"
-
-#: ../config/config.inc.php:305
-msgid ""
-"Exportieren Sie Ihre Literaturliste in eine mit Trennzeichen getrennte Datei "
-"(CSV). Wichtig hierbei ist die Verwendung des Semikolons als Trennzeichen. "
-"Folgende Formatierung wird dabei in jeder Zeile erwartet:"
-msgstr ""
-"Export your reference list to a file with separators (CSV). It is all "
-"important use the semicolon as separator. For each line the following "
-"formatting is expected:"
-
-#: ../config/config.inc.php:305
-msgid ""
-"Titel;Verfasser oder Urheber;Verleger;Herausgeber;Thema und Stichworte;ISBN"
-msgstr "Title; author or creator; publisher; editor; topic and keywords; ISBN"
-
-#: ../config/config.inc.php:306
-msgid "Literaturliste im Stud.IP Format"
-msgstr "Reference list in Stud.IP format"
-
-#: ../config/config.inc.php:306
-msgid ""
-"Benutzen Sie die Export-Funktion innerhalb von Stud.IP, um eine "
-"Literaturliste im Stud.IP Format zu exportieren."
-msgstr ""
-"Use the export feature of Stud.IP for exporting reference lists in Stud.IP "
-"format."
-
-#: ../config/config.inc.php:307
-msgid "Literaturliste im Stud.IP (Citavi) Format"
-msgstr "Reference list in Stud.IP (Citavi) format"
-
-#: ../config/config.inc.php:307
-msgid ""
-"Benutzen Sie die Export-Funktion von Citavi, um eine Literaturliste im Stud."
-"IP Format zu exportieren."
-msgstr ""
-"Use the export feature of Citavi for exporting reference lists in Stud.IP "
-"format."
-
-#: ../config/config_develop.inc.php:183
-msgid "Nutzerbilder"
-msgstr "User pictures"
-
-#: ../cli/migrate_help_content.php:83
-msgid "Aktuelle Version der Helpbar-Einträge in Stud.IP"
-msgstr "Current version of helpbar entries in Stud.IP"
-
-#: ../templates/change_view.php:2
-#, php-format
-msgid ""
-"Die Veranstaltung wird in der Ansicht für %s angezeigt. Sie können die "
-"Ansicht %shier zurücksetzen%s."
-msgstr "The course is shown in %s view. Reset the view %shere%s."
-
-#: ../templates/admission/courseset/info.php:7
-msgid "Einrichtungszuordnung:"
-msgstr "Assigned institutions:"
-
-#: ../templates/admission/courseset/info.php:14
-msgid "Folgende Regeln gelten für die Anmeldung:"
-msgstr "The following rules apply for the admission:"
-
-#: ../templates/admission/courseset/info.php:23
-#: ../app/views/admission/courseset/instcourses.php:13
-msgid "Veranstaltungszuordnung:"
-msgstr "Assignment of courses: "
-
-#: ../templates/admission/userlist.php:2
-msgid ""
-"Bei der Platzverteilung zu Veranstaltungen werden die betreffenden Personen "
-"nur nachrangig berücksichtigt."
-msgstr ""
-"During the seat allocation of courses the persons concerned will get seats "
-"after all others."
-
-#: ../templates/admission/userlist.php:5
-msgid ""
-"Bei der Platzverteilung zu Veranstaltungen werden die betreffenden Personen "
-"vor allen anderen einen Platz erhalten."
-msgstr ""
-"During the seat allocation of courses the persons concerned will get seats "
-"before all others."
-
-#: ../templates/admission/userlist.php:8
-#, php-format
-msgid ""
-"Bei der Platzverteilung zu Veranstaltungen haben die betreffenden Personen "
-"gegenüber Anderen eine %s-fache Chance darauf, einen Platz zu erhalten."
-msgstr "In admission persons have %s times the chance of getting a seat."
-
-#: ../templates/admission/userlist.php:13
-msgid "Personen auf dieser Liste:"
-msgstr "Persons on this list:"
-
-#: ../templates/admission/userlist.php:22
-msgid "Es wurde noch niemand zugeordnet."
-msgstr "No-one assigned. "
-
-#: ../templates/admission/rules/configure.php:3
-#, php-format
-msgid "Die Zeichen %s sind ein Platzhalter für änderbare Bedingungen"
-msgstr "The character %s is a placeholder for changeable conditions"
-
-#: ../templates/admission/rules/configure.php:8
-msgid "Gültigkeitszeitraum der Regel"
-msgstr "Valid during"
-
-#: ../templates/admission/rules/configure.php:20
-#: ../templates/sidebar/room-search-criteria-templates.php:31
-#: ../templates/sidebar/room-search-criteria.php:54
-#: ../app/views/admin/banner/index.php:42
-#: ../app/views/calendar/schedule/_entry_schedule.php:30
-#: ../app/views/calendar/schedule/settings.php:17
-msgid "bis"
-msgstr "until"
-
-#: ../templates/admission/rules/info.php:1
-msgid "Nachricht bei nicht erfolgreicher Anmeldung:"
-msgstr "Notify on failed login:"
-
-#: ../templates/admission/rules/info.php:6
-#, php-format
-msgid "Diese Regel gilt von %s bis %s"
-msgstr "This applies from %s to %s"
-
-#: ../templates/admission/rules/info.php:9
-#, php-format
-msgid "Diese Regel gilt ab %s"
-msgstr "Valid from %s"
-
-#: ../templates/admission/rules/info.php:11
-#, php-format
-msgid "Diese Regel gilt bis %s"
-msgstr "Valid until %s"
-
-#: ../templates/globalsearch/_hints.php:4
-msgid "Hinweis:"
-msgstr "Information:"
-
-#: ../templates/globalsearch/_hints.php:7
-msgid "Die Schnellsuche findet nur Ergebnisse im aktuellen Semester."
-msgstr "The quick search retrieves only results from the current semester."
-
-#: ../templates/globalsearch/_hints.php:12
-msgid "[STRG] + [Leertaste]"
-msgstr "[CRTL] + [Space]"
-
-#: ../templates/globalsearch/_hints.php:15
-msgid "Tastenkombination zum Öffnen und Schließen"
-msgstr "Key combination for opening and closing"
-
-#: ../templates/globalsearch/_hints.php:20
-#: ../app/controllers/search/globalsearch.php:179
-msgid "Platzhalter"
-msgstr "Placeholder"
-
-#: ../templates/globalsearch/_hints.php:23
-msgid "\"_\" ist Platzhalter für ein beliebiges Zeichen."
-msgstr "\"_\" is a placeholder for one arbitrary character."
-
-#: ../templates/globalsearch/_hints.php:25
-msgid "\"%\" ist Platzhalter für beliebig viele Zeichen."
-msgstr "\"%\" is a placeholder for an arbitrary amount of characters."
-
-#: ../templates/globalsearch/_hints.php:27
-#, php-format
-msgid ""
-"\"Me_er\" findet Treffer für \"Meyer\" und \"Meier\". \"M__er\" findet "
-"zusätzlich auch \"Mayer\" und \"Maier\". \"M%er\" findet alle vorherigen "
-"Treffer, aber auch \"Müller\"."
-msgstr ""
-"\"bl_ck\" will find results for \"black\" and \"block\". \"b__ck\" will also "
-"find \"brick\". \"b%ck\" will find all the results mentioned before and "
-"results for \"back\", too."
-
-#: ../templates/globalsearch/_hints.php:34
-#: ../app/controllers/search/globalsearch.php:180
-msgid "Klick auf Überschrift"
-msgstr "Klick on headline"
-
-#: ../templates/globalsearch/_hints.php:37
-msgid ""
-"Erweitert die ausgewählte Suchkategorie, um mehr Suchergebnisse aus dieser "
-"Kategorie anzuzeigen.  Ein weiterer Klick zeigt wieder Ergebnisse aus allen "
-"Kategorien an."
-msgstr ""
-"Extends the selected search category to display more search results from "
-"this category. Another click will again show results from all categories."
-
-#: ../templates/globalsearch/_hints.php:43
-#: ../app/controllers/search/globalsearch.php:181
-msgid "Dateisuche"
-msgstr "File search"
-
-#: ../templates/globalsearch/_hints.php:46
-msgid ""
-"Die Dateisuche kann über einen Schrägstrich (/) verfeinert werden. Beispiel: "
-"\"Meine Veranstaltung/Datei\" zeigt alle Dateien, die das Wort \"Datei\" "
-"enthalten und in \"Meine Veranstaltung\" sind, an. Die Veranstaltung kann "
-"auch auf einen Teil (z.B. \"Veran/Datei\") oder auf die Großbuchstaben bzw. "
-"auch deren Abkürzung (z.B. \"MV/Datei\" oder \"V/Datei\") beschränkt werden."
-msgstr ""
-"The file search can be refined using a slash (/). Example: \"My courses/file"
-"\" will display all files which contain the word \"file\" and which are "
-"placed inside \"My courses\". The course can also be reduced (e.g. \"courses/"
-"file\") or it can be limited to its capital letters or its abbreviation (e."
-"g. \"MC/file\" or \"C/file\")."
-
-#: ../templates/globalsearch/searchbar.php:3
-#: ../app/views/search/globalsearch/index.php:5
-#: ../app/views/files_dashboard/_input-group-search.php:5
-#: ../app/views/files_dashboard/_input-group-search.php:6
-msgid "Was suchen Sie?"
-msgstr "What are you looking for?"
-
-#: ../templates/globalsearch/searchbar.php:12
-msgid "Tipps ausblenden"
-msgstr "Hide hints"
-
-#: ../templates/globalsearch/searchbar.php:13
-msgid "Tipps einblenden"
-msgstr "Show hints"
-
-#: ../templates/globalsearch/searchbar.php:17
-#: ../app/views/search/globalsearch/index.php:27
-#: ../app/views/search/globalsearch/index.php:37
-msgid "Suche..."
-msgstr "Searching..."
-
-#: ../templates/globalsearch/searchbar.php:19
-#: ../app/controllers/admin/configuration.php:428
-#: ../app/controllers/admin/datafields.php:273
-msgid "alle anzeigen"
-msgstr "display all"
-
-#: ../templates/globalsearch/searchbar.php:20
-msgid "Keine Ergebnisse gefunden."
-msgstr "No results found."
-
-#: ../templates/online/user.php:10
-msgid "zu den Buddies hinzufügen"
-msgstr "add to buddy list"
-
-#: ../templates/online/user.php:39 ../app/controllers/profile.php:304
-#: ../app/views/online/user-row.php:25 ../app/views/contact/index.php:75
-msgid "Blubber diesen Nutzer an"
-msgstr "Blubber this user"
-
-#: ../templates/online/user.php:46 ../app/views/online/user-row.php:32
-#: ../app/views/institute/members/_table_body.php:94
-msgid "Nachricht an Benutzer verschicken"
-msgstr "Send message to user"
-
-#: ../templates/online/user.php:55
-msgid "aus der Buddy-Liste entfernen"
-msgstr "remove from buddy list "
-
-#: ../templates/helpbar/helpbar.php:6
-msgid "Tipps & Hilfe"
-msgstr "Hints & help"
-
-#: ../templates/helpbar/tour-widget.php:1
-msgid "Hilfe-Touren"
-msgstr "Help tours"
-
-#: ../templates/footer.php:5
-#, php-format
-msgid "Sie sind angemeldet als %s (%s)"
-msgstr "You are signed in as %s (%s)"
-
-#: ../templates/shared/fullscreen-toggle.php:1
-#: ../templates/shared/fullscreen-toggle.php:2
-msgid "Vollbildmodus"
-msgstr "Full screen mode"
-
-#: ../templates/shared/pagechooser.php:19 ../templates/pagination/buttons.php:2
-#: ../templates/pagination/links.php:2
-msgid "Blättern"
-msgstr "Browse"
-
-#: ../templates/shared/pagechooser.php:26
-#: ../templates/shared/pagechooser.php:48
-#: ../templates/pagination/buttons.php:10
-#: ../templates/pagination/buttons.php:39 ../templates/pagination/links.php:10
-#: ../templates/pagination/links.php:41
-msgid "Eine Seite"
-msgstr "One page"
-
-#: ../templates/shared/pagechooser.php:49
-#: ../templates/pagination/buttons.php:40 ../templates/pagination/links.php:42
-#: ../app/views/messages/overview.php:51 ../app/views/messages/overview.php:70
-msgid "weiter"
-msgstr "continue"
-
-#: ../templates/shared/opengraphinfo_wide.php:39
-msgid "Video abspielen"
-msgstr "Play video"
-
-#: ../templates/shared/opengraphinfo_wide.php:57
-msgid "Audio abspielen"
-msgstr "Play audio"
-
-#: ../templates/shared/question-box.php:10
-msgid "Bitte bestätigen Sie die Aktion"
-msgstr "Please confirm action"
-
-#: ../templates/shared/question-box.php:13
-msgid "Schliessen"
-msgstr "Close"
-
-#: ../templates/shared/message_box.php:4 ../templates/shared/message_box.php:5
-msgid "Detailanzeige umschalten"
-msgstr "Switch detailed view"
-
-#: ../templates/shared/message_box.php:9 ../templates/shared/message_box.php:10
-msgid "Nachrichtenbox schließen"
-msgstr "Close message box"
-
-#: ../templates/resources/position_attribute_form_part.php:4
-msgid "Breitengrad: "
-msgstr "Latitude:"
-
-#: ../templates/resources/position_attribute_form_part.php:12
-msgid "Längengrad: "
-msgstr "Longitude:"
-
-#: ../templates/resources/position_attribute_form_part.php:19
-msgid "Höhenangabe (Meter): "
-msgstr "Height (meter):"
-
-#: ../templates/news/comment-box.php:4
-msgid "Diesen Kommentar zum Löschen vormerken"
-msgstr "Mark this comment for deleting"
-
-#: ../templates/news/comment-box.php:20
-msgid "Kommentar entfernen"
-msgstr "Remove comment"
-
-#: ../templates/header.php:23
-msgid "Menü"
-msgstr "Menu"
-
-#: ../templates/header.php:87 ../app/views/settings/general.php:97
-msgid "Benachrichtigungen"
-msgstr "Notifications"
-
-#: ../templates/header.php:92
-msgid "Alle Benachrichtigungen als gelesen markieren"
-msgstr "Mark all notifications as read"
-
-#: ../templates/header.php:95
-msgid "Desktop-Benachrichtigungen aktivieren"
-msgstr "Activate desktop notifications"
-
-#: ../templates/header.php:121 ../templates/header.php:131
-msgid "Profilmenü"
-msgstr "Profile menu"
-
-#: ../templates/header.php:151 ../app/views/sitemap/index.php:1
-msgid "Hauptnavigation"
-msgstr "Main navigation"
-
-#: ../templates/header.php:169
-msgid "Mehr"
-msgstr "More"
-
-#: ../templates/extern/upload_form.php:14
-msgid "Konfiguration hochladen"
-msgstr "Upload configuration"
-
-#: ../templates/extern/upload_form.php:16
-msgid "Maximale Größe:"
-msgstr "Maximum size:"
-
-#: ../templates/extern/upload_form.php:16
-msgid "Kilobyte"
-msgstr "kilobyte"
-
-#: ../templates/extern/upload_form.php:19
-msgid "Datei zum Hochladen auswählen"
-msgstr "Select a file for upload"
-
-#: ../templates/extern/upload_form.php:25
-#: ../app/views/oer/mymaterial/edit.php:281
-#: ../app/views/admin/smileys/upload.php:34
-msgid "Hochladen"
-msgstr "Upload"
-
-#: ../templates/check_object_exception.php:2
-msgid "Kein Objekt gewählt"
-msgstr "No object selected"
-
-#: ../templates/check_object_exception.php:5
-msgid ""
-"Dieser Teil des Systems kann nur genutzt werden, wenn Sie vorher ein Objekt "
-"(Veranstaltung oder Einrichtung) gewählt haben."
-msgstr ""
-"This part of the system can be used only if you have previously selected an "
-"object (course or institute)."
-
-#: ../templates/check_object_exception.php:6
-#, php-format
-msgid ""
-"Dieser Fehler tritt auch auf, wenn Ihre Session abgelaufen ist. Bitte nutzen "
-"Sie in diesem Fall den untenstehenden Link, um zurück zur Anmeldung zu "
-"gelangen."
-msgstr ""
-"This error also occurs if your session has expired. In this case, clicking "
-"the link below takes you back to the login screen. "
-
-#: ../templates/check_object_exception.php:10
-msgid "Folgender von Ihnen eingegebene Text konnte nicht gespeichert werden:"
-msgstr "The following text you have entered cannot be saved:"
-
-#: ../templates/check_object_exception.php:17
-#: ../templates/unhandled_exception.php:14
-msgid "Zurück zur"
-msgstr "Back to"
-
-#: ../templates/tabs.php:11
-msgid "Erste Reiternavigation"
-msgstr "First tab navigation"
-
-#: ../templates/layouts/base.php:104 ../app/controllers/my_courses.php:657
-msgid "Hauptinhalt"
-msgstr "Main content"
-
-#: ../templates/privacy.php:7
-msgid "Stud.IP - Erläuterungen zum Datenschutz im Überblick"
-msgstr "Stud.IP - Privacy overview"
-
-#: ../templates/privacy.php:9
-msgid ""
-"Die wichtigsten Informationen auf einen Blick: Wer kann was über mich sehen "
-"bzw. herausfinden?"
-msgstr "Privacy overview: Who can see what?"
-
-#: ../templates/privacy.php:15
-msgid "Ich selbst"
-msgstr "Me"
-
-#: ../templates/privacy.php:16
-msgid "Jeder Studierende"
-msgstr "Every student"
-
-#: ../templates/privacy.php:17
-msgid "Jeder Tutor oder Tutorin"
-msgstr "Every tutor"
-
-#: ../templates/privacy.php:18
-msgid "Jeder Lehrende"
-msgstr "Every lecturer"
-
-#: ../templates/privacy.php:19
-msgid "Jeder Admin"
-msgstr "Every admin"
-
-#: ../templates/privacy.php:20
-msgid "Mein Tutor oder meien Tutorin"
-msgstr "My tutor"
-
-#: ../templates/privacy.php:21
-msgid "Meine Lehrperon"
-msgstr "My lecturer"
-
-#: ../templates/privacy.php:22
-msgid "Mein Admin"
-msgstr "My admin"
-
-#: ../templates/privacy.php:27
-msgid "Mich suchen"
-msgstr "Find me"
-
-#: ../templates/privacy.php:53
-msgid "Matrikelnummer"
-msgstr "Matriculation number"
-
-#: ../templates/privacy.php:92 ../app/views/profile/widget-avatar.php:29
-msgid "Stud.IP-Punkte"
-msgstr "Stud.IP-Score"
-
-#: ../templates/privacy.php:105
-msgid "Teilname an einer best. VA"
-msgstr "Participation in an existing course"
-
-#: ../templates/privacy.php:118
-msgid "Liste aller besuchten VA"
-msgstr "List of all courses participated in"
-
-#: ../templates/privacy.php:131
-msgid "Tage seit letztem Login"
-msgstr "Last Login"
-
-#: ../templates/privacy.php:144
-msgid "Online-Status"
-msgstr "Online-status"
-
-#: ../templates/privacy.php:157
-msgid "Mein Name an meinen<br>Beiträgen, Dateien, ..."
-msgstr "Files, postings etc.<br>created by me and with my name on it"
-
-#: ../templates/privacy.php:170
-msgid "Telefonnummer, Adresse, ..."
-msgstr "Phone, address, ..."
-
-#: ../templates/privacy.php:183
-msgid "Welche Dateien, Beiträge,<br>Ankündigungen,... habe ich gelesen?"
-msgstr ""
-"Which files, postings, \n"
-"<br>announcements did I read?"
-
-#: ../templates/privacy.php:197
-msgid "Legende:"
-msgstr "Legend:"
-
-#: ../templates/privacy.php:202
-msgid "immer möglich"
-msgstr "always possible"
-
-#: ../templates/privacy.php:206
-msgid "mit meiner Zustimmung möglich"
-msgstr "possible with my consent"
-
-#: ../templates/privacy.php:210
-msgid "nicht möglich"
-msgstr "not possible"
-
-#: ../templates/register/form.php:18
-msgid "Bei der Registrierung ist ein Fehler aufgetreten!"
-msgstr "An error occurred upon registration!"
-
-#: ../templates/register/form.php:18
-msgid "Bitte korrigieren Sie Ihre Eingaben und versuchen Sie es erneut"
-msgstr "Please correct the given entries and try again"
-
-#: ../templates/register/form.php:21
-msgid "Stud.IP - Registrierung"
-msgstr "Stud.IP - Registration"
-
-#: ../templates/register/form.php:28 ../templates/loginform.php:47
-msgid "Herzlich willkommen!"
-msgstr "Welcome!"
-
-#: ../templates/register/form.php:30
-msgid "Bitte füllen Sie zur Anmeldung das Formular aus:"
-msgstr "Please fill out the registration form:"
-
-#: ../templates/register/form.php:50
-msgid "Passwortbestätigung"
-msgstr "Confirm password"
-
-#: ../templates/register/form.php:74 ../app/views/admin/user/new.php:115
-#: ../app/views/admin/user/edit.php:117
-msgid "Titel nachgestellt"
-msgstr "Second title"
-
-#: ../templates/register/form.php:122 ../app/views/settings/account/index.php:4
-#: ../app/views/admin/user/new.php:85 ../app/views/admin/user/edit.php:174
-msgid "männlich"
-msgstr "male"
-
-#: ../templates/register/form.php:128 ../app/views/settings/account/index.php:5
-#: ../app/views/admin/user/new.php:91 ../app/views/admin/user/edit.php:180
-msgid "weiblich"
-msgstr "female"
-
-#: ../templates/register/form.php:134 ../app/views/settings/account/index.php:6
-#: ../app/views/admin/user/new.php:97 ../app/views/admin/user/edit.php:186
-msgid "divers"
-msgstr "diverse"
-
-#: ../templates/register/form.php:171 ../templates/register/step1.php:5
-msgid "Registrierung abbrechen"
-msgstr "Cancel registration"
-
-#: ../templates/register/success.php:3
-msgid "Herzlich willkommen"
-msgstr ""
-
-#: ../templates/register/success.php:7
-msgid "Ihre Registrierung wurde erfolgreich vorgenommen."
-msgstr "Your registration was successfully completed."
-
-#: ../templates/register/success.php:8
-msgid "Das System wird Ihnen zur Bestätigung eine E-Mail zusenden."
-msgstr "The system will send you a confirmation e-mail."
-
-#: ../templates/register/success.php:9
-msgid ""
-"Bitte rufen Sie die E-Mail ab und folgen Sie den Anweisungen, um "
-"Schreibrechte im System zu bekommen."
-msgstr ""
-"For obtaining write access to the system, please read the e-mail and follow "
-"the instructions."
-
-#: ../templates/register/success.php:12
-#, php-format
-msgid "%sHier%s geht es wieder zur Startseite."
-msgstr "%sHere%s you can go back to the start page."
-
-#: ../templates/register/step1.php:4 ../app/views/terms/index.php:22
-msgid "Ich erkenne die Nutzungsbedingungen an"
-msgstr "I accept the terms of use"
-
-#: ../templates/tfa-validate.php:7
-msgid "Sie haben zu viele ungültige Versuche"
-msgstr "You have too many invalid attempts"
-
-#: ../templates/tfa-validate.php:8
-#, php-format
-msgid "Versuchen Sie es in %u Minute(n) erneut"
-msgstr "Try again in %u minute(s)"
-
-#: ../templates/tfa-validate.php:12
-msgid "Bitte geben Sie ein gültiges Token ein"
-msgstr "Please enter a valid token"
-
-#: ../templates/tfa-validate.php:15
-msgid ""
-"Scannen Sie diesen Code mit Ihrer App ein und geben Sie anschliessend ein "
-"gültiges Token ein."
-msgstr "Scan this code with your app and enter a valid token afterwards."
-
-#: ../templates/tfa-validate.php:23
-msgid "Das notwendige Token wird von der von Ihnen verknüpften App generiert."
-msgstr "The required token will be generated from the connected app."
-
-#: ../templates/tfa-validate.php:28
-#, php-format
-msgid ""
-"Das notwendige Token wurde Ihnen per E-Mail zugesendet und ist %u Minuten "
-"gültig."
-msgstr ""
-"The required token has been sent to you via E-Mail and will be valid for %u "
-"minutes."
-
-#: ../templates/tfa-validate.php:56
-msgid "Diesem Gerät für 30 Tage vertrauen."
-msgstr "Trust this device for 30 days."
-
-#: ../templates/tfa-validate.php:62
-#: ../app/views/room_management/planning/copy_bookings.php:153
-msgid "Prüfen"
-msgstr "Check"
-
-#: ../templates/unhandled_exception.php:4
-msgid "Fehler! Bitte wenden Sie sich an Ihren Systemadministrator."
-msgstr "Error! Please contact a system administrator."
-
-#: ../templates/evaluation/config.php:7
-msgid "Zeige Gesamtstatistik an"
-msgstr "Show overall statistics"
-
-#: ../templates/evaluation/config.php:8
-msgid "Zeige Grafiken an"
-msgstr "Show graphics"
-
-#: ../templates/evaluation/config.php:9
-msgid "Zeige Fragen an"
-msgstr "Show questions"
-
-#: ../templates/evaluation/config.php:10
-msgid "Zeige Gruppenüberschriften an"
-msgstr "Show group headers"
-
-#: ../templates/evaluation/config.php:11
-msgid "Zeige Fragenblocküberschriften an"
-msgstr "Show question block headers"
-
-#: ../templates/evaluation/config.php:16
-msgid "Grafiktyp für Polskalen"
-msgstr "Graphic type for pole scales"
-
-#: ../templates/evaluation/config.php:18 ../templates/evaluation/config.php:30
-#: ../templates/evaluation/config.php:42
-msgid "Balken"
-msgstr "Bars"
-
-#: ../templates/evaluation/config.php:19 ../templates/evaluation/config.php:31
-msgid "Tortenstücke"
-msgstr "Pie pieces"
-
-#: ../templates/evaluation/config.php:20 ../templates/evaluation/config.php:32
-msgid "Linien"
-msgstr "Lines"
-
-#: ../templates/evaluation/config.php:21 ../templates/evaluation/config.php:33
-msgid "Linienpunkte"
-msgstr "Line points"
-
-#: ../templates/evaluation/config.php:23 ../templates/evaluation/config.php:35
-#: ../templates/evaluation/config.php:43 ../app/views/score/index.php:25
-msgid "Punkte"
-msgstr "Score"
-
-#: ../templates/evaluation/config.php:24 ../templates/evaluation/config.php:36
-#: ../templates/evaluation/config.php:44
-msgid "Linienbalken"
-msgstr "Line bars"
-
-#: ../templates/evaluation/config.php:28
-msgid "Grafiktyp für Likertskalen"
-msgstr "Graphic type for Likert scales"
-
-#: ../templates/evaluation/config.php:40
-msgid "Grafiktyp für Multiplechoice"
-msgstr "Graphic type for multiple choice"
-
-#: ../templates/evaluation/config.php:58
-msgid "Auswertungskonfiguration"
-msgstr "Assessment configuration"
-
-#: ../templates/evaluation/config.php:67
-#: ../app/views/consultation/overview/ungrouped.php:27
-#: ../app/views/consultation/admin/ungrouped.php:38
-#: ../app/views/consultation/admin/ungrouped.php:155
-#: ../app/views/messages/write.php:87 ../app/views/messages/write.php:152
-#: ../app/views/admin/cronjobs/schedules/index.php:86
-#: ../app/views/admin/cronjobs/logs/index.php:87
-#: ../app/views/admin/cronjobs/tasks/index.php:26
-msgid "Optionen"
-msgstr "Options"
-
-#: ../templates/evaluation/config.php:122
-msgid ""
-"Auf dieser Seite können Sie die Auswertung Ihrer Evaluation konfigurieren."
-msgstr "On this page you can configure the evaluation assessment."
-
-#: ../templates/quicksearch/selectbox.php:25
-msgid "Keine Treffer gefunden"
-msgstr "No results found for your search"
-
-#: ../templates/quicksearch/selectbox.php:30
-#: ../app/views/search/globalsearch/index.php:13
-#: ../app/views/search/module/index.php:9 ../app/views/shared/info_search.php:9
-#: ../app/views/multipersonsearch/js_form.php:14
-#: ../app/views/admin/role/assign_role.php:38 ../app/views/wiki/import.php:27
-#: ../app/views/wiki/import.php:34
-msgid "Suche zurücksetzen"
-msgstr "Reset search"
-
-#: ../templates/admin/topLinks.php:29
-msgid "vor"
-msgstr "forward"
-
-#: ../templates/admin/adminList.php:2
-msgid ""
-"Wählen Sie ein Seminar aus Ihrer letzten Seminarsuche aus, um dieses zu "
-"bearbeiten."
-msgstr "Select a seminar from your last seminar search to edit it."
-
-#: ../templates/admin/institute_search.php:5
-msgid "Anzuzeigende Einrichtung"
-msgstr "Institute to be displayed"
-
-#: ../templates/admin/institute_search.php:10
-#: ../app/views/settings/studies/institute.php:78
-#: ../app/views/admin/user/new.php:165 ../app/views/admin/user/edit.php:366
-#: ../app/views/admin/user/edit.php:463
-msgid "-- Bitte Einrichtung auswählen --"
-msgstr "-- Please select institute --"
-
-#: ../templates/admin/institute_search.php:22
-#: ../app/views/admission/courseset/_institute_choose.php:65
-#: ../app/views/admission/restricted_courses/_institute_choose.php:37
-msgid "Einrichtung auswählen"
-msgstr "Select institute"
-
-#: ../templates/nocookies.php:2
-msgid "Cookies sind nicht aktiviert!"
-msgstr "Cookies not activated!"
-
-#: ../templates/nocookies.php:3
-msgid ""
-"Die Anmeldung für Stud.IP ist nur möglich, wenn Sie das Setzen von Cookies "
-"erlauben!"
-msgstr "Registration for Stud.IP is possible only if cookies are activated!"
-
-#: ../templates/nocookies.php:5
-#, php-format
-msgid ""
-"Bitte ändern Sie die Einstellungen Ihres Browsers und wiederholen Sie den "
-"%sLogin%s"
-msgstr "Please change your browser settings and return to the %sLogin%s"
-
-#: ../templates/nocookies.php:8 ../templates/loginform.php:35
-#, php-format
-msgid ""
-"Bitte wenden Sie sich bei Problemen an: <a href=\"mailto:%1$s\">%1$s</a>"
-msgstr ""
-"In case of any problems, please contact: <a href=\"mailto:%1$s\">%1$s</a>"
-
-#: ../templates/login_emailactivation.php:12
-msgid ""
-"Sie haben Ihre E-Mail-Adresse geändert. Um diese frei zu schalten müssen Sie "
-"den Ihnen an Ihre neue Adresse zugeschickten Aktivierungs Schlüssel im unten "
-"stehenden Eingabefeld eintragen."
-msgstr ""
-"You have changed your e-mail address. In order to activate it, you have to "
-"enter in the input field below the confirmation code which has been sent to "
-"the new e-mail address. "
-
-#: ../templates/login_emailactivation.php:25
-msgid "E-Mail Aktivierung neu senden"
-msgstr "Resend e-mail activation"
-
-#: ../templates/login_emailactivation.php:28
-msgid ""
-"Sollten Sie keine E-Mail erhalten haben, können Sie sich einen neuen "
-"Aktivierungsschlüssel zuschicken lassen. Geben Sie dazu Ihre gewünschte E-"
-"Mail-Adresse unten an:"
-msgstr ""
-"Didn’t get any activation mail yet?  Please try again and enter your e-mail "
-"address: "
-
-#: ../templates/mail/notification_html.php:12
-msgid ""
-"Sie erhalten hiermit in regelmäßigen Abständen Informationen über "
-"Neuigkeiten und Änderungen in belegten Veranstaltungen."
-msgstr ""
-"From now on you will periodically receive information about announcements "
-"and changes in the courses you have enroled in."
-
-#: ../templates/mail/notification_html.php:14
-msgid ""
-"Über welche Inhalte und in welchem Format Sie informiert werden wollen, "
-"können Sie hier einstellen:"
-msgstr ""
-"Here you may specify on which contents and in what format you want to be "
-"informed:"
-
-#: ../templates/mail/text.php:8 ../templates/mail/html.php:17
-#: ../app/views/messages/print.php:23
-msgid "Dateianhänge:"
-msgstr "File attachments:"
-
-#: ../templates/mail/text.php:22
-#, php-format
-msgid ""
-"Diese E-Mail ist eine Kopie einer systeminternen Nachricht, die in Stud.IP "
-"von %s (%s) an %s (%s) versendet wurde."
-msgstr ""
-"This E-mail is a copy of a system message that has been sent in Stud.IP from "
-"%s (%s) to %s (%s)."
-
-#: ../templates/mail/text.php:24 ../templates/mail/html.php:32
-#, php-format
-msgid ""
-"Diese E-Mail ist eine Kopie einer systeminternen Nachricht, die in Stud.IP "
-"an %s versendet wurde."
-msgstr ""
-"This e-mail is a copy of an internal system message, which was sent within "
-"Stud.IP %s."
-
-#: ../templates/mail/text.php:26 ../templates/mail/html.php:34
-#, php-format
-msgid "Sie erreichen Stud.IP unter %s"
-msgstr "You can reach Stud.IP via %s"
-
-#: ../templates/mail/html.php:30
-#, php-format
-msgid ""
-"Diese E-Mail ist eine Kopie einer systeminternen Nachricht, die in Stud.IP "
-"von %s (<a href=\"%s\">%s</a>) an %s (<a href=\"%s\">%s</a>) versendet wurde."
-msgstr ""
-"This E-mail is a copy of a system message that has been sent in Stud.IP from "
-"%s (<a href=\"%s\">%s</a>) to %s (<a href=\"%s\">%s</a>)."
-
-#: ../templates/mail/notification_text.php:4
-msgid ""
-"Diese E-Mail wurde automatisch vom Stud.IP-System verschickt. Sie können auf "
-"diese Nachricht nicht antworten."
-msgstr ""
-"This e-mail has automatically been generated by the Stud.IP system. You "
-"cannot reply to this message."
-
-#: ../templates/mail/notification_text.php:6
-msgid ""
-"Sie erhalten hiermit in regelmäßigen Abständen Informationen über "
-"Neuigkeiten und Änderungen in Ihren belegten Veranstaltungen."
-msgstr ""
-"From now on you will periodically receive information about announcements "
-"and changes in the courses you have enroled in."
-
-#: ../templates/mail/notification_text.php:9
-msgid ""
-"Über welche Inhalte Sie informiert werden wollen, können Sie hier einstellen:"
-msgstr "Here you may specify on which contents you want to be informed:"
-
-#: ../templates/mail/notification_text.php:15
-#, php-format
-msgid "In der Veranstaltung \"%s\" gibt es folgende Neuigkeiten:"
-msgstr "Within the course \"%s\" there are the following announcements:"
-
-#: ../templates/consultations/mail.php:1
-#: ../app/controllers/consultation/export.php:29
-#: ../app/controllers/consultation/export.php:62
-#: ../app/controllers/admin/lockrules.php:51
-#: ../app/controllers/admin/banner.php:43
-#: ../app/views/consultation/export/print.php:94
-msgid "Person"
-msgstr "Person"
-
-#: ../templates/consultations/mail.php:5
-#: ../app/views/consultation/overview/ungrouped.php:22
-#: ../app/views/consultation/admin/ungrouped.php:36
-msgid "Bei"
-msgstr "At"
-
-#: ../templates/consultations/mail.php:6
-#: ../app/controllers/consultation/export.php:32
-#: ../app/controllers/consultation/export.php:65
-#: ../app/views/consultation/overview/cancel.php:18
-#: ../app/views/consultation/overview/book.php:23
-#: ../app/views/consultation/overview/ungrouped.php:26
-#: ../app/views/consultation/admin/book.php:35
-#: ../app/views/consultation/admin/ungrouped.php:154
-#: ../app/views/consultation/admin/reason.php:8
-#: ../app/views/consultation/admin/index.php:121
-#: ../app/views/consultation/export/print.php:97
-msgid "Grund"
-msgstr "Reason"
-
-#: ../templates/access_denied_exception.php:8
-#, php-format
-msgid "Zurück zur %sStartseite%s"
-msgstr "Back to %sStart page%s"
-
-#: ../templates/sembrowse/quick-search.php:2
-#: ../templates/sembrowse/extended-search.php:2
-msgid "Suchformular"
-msgstr "Search form"
-
-#: ../templates/sembrowse/quick-search.php:10
-#: ../app/views/admin/autoinsert/_search.php:3 ../app/views/wiki/import.php:9
-msgid "Suche nach Veranstaltungen"
-msgstr "Search for courses"
-
-#: ../templates/sembrowse/quick-search.php:19
-msgid "Suchen in"
-msgstr "Search in"
-
-#: ../templates/sembrowse/quick-search.php:25
-#: ../templates/sembrowse/quick-search.php:33
-msgid "in"
-msgstr "in"
-
-#: ../templates/sembrowse/extended-search.php:5
-msgid "Schnellsuche"
-msgstr "Quick search"
-
-#: ../templates/sembrowse/extended-search.php:15
-#: ../app/views/admin/user/index.php:71
-msgid "Erweiterte Suche"
-msgstr "Extended search"
-
-#: ../templates/sembrowse/extended-search.php:56
-msgid "Verknüpfung"
-msgstr "Operation"
-
-#: ../templates/tour/tour.php:5
-msgid ""
-"Die Tour wird fortgesetzt, wenn Sie die beschriebene Aktion ausgeführt haben."
-msgstr ""
-"The tour will be continued when you have performed the described action."
-
-#: ../templates/tour/tour.php:12
-msgid "Neuer Schritt"
-msgstr "New step"
-
-#: ../templates/tour/tour.php:13 ../app/controllers/tour.php:443
-#: ../app/controllers/admin/coursewizardsteps.php:56
-#: ../app/views/admin/course_wizard_steps/index.php:48
-#: ../app/views/tour/admin_details.php:149
-msgid "Schritt bearbeiten"
-msgstr "Edit step"
-
-#: ../templates/tour/tour.php:14
-#: ../app/views/admin/course_wizard_steps/index.php:55
-#: ../app/views/admin/course_wizard_steps/index.php:57
-#: ../app/views/tour/admin_details.php:155
-msgid "Schritt löschen"
-msgstr "Delete step"
-
-#: ../templates/tour/tour.php:15
-msgid "Seitenwechsel"
-msgstr "Page change"
-
-#: ../templates/tour/tour.php:17
-msgid "Klick setzen (weiter)"
-msgstr "Set click (next)"
-
-#: ../templates/tour/tour.php:18
-msgid "Klick setzen (zurück)"
-msgstr "Set click (back)"
-
-#: ../templates/tour/tour.php:19
-msgid "Position wählen"
-msgstr "Choose position"
-
-#: ../templates/tour/tour.php:20
-msgid "Keine Position"
-msgstr "No position"
-
-#: ../templates/tour/tour.php:25
-msgid "Tour neu beginnen"
-msgstr "Restart tour"
-
-#: ../templates/tour/tour.php:29
-msgid "Tour fortsetzen"
-msgstr "Continue tour"
-
-#: ../templates/tour/tour.php:33 ../app/views/questionnaire/evaluate.php:55
-#: ../app/views/questionnaire/answer.php:59
-msgid "Beenden"
-msgstr "Quit"
-
-#: ../templates/contact/header-alpha.php:4
-#: ../templates/contact/header-groups.php:4
-msgid "Keine Einträge"
-msgstr "No entries"
-
-#: ../templates/contact/header-groups.php:21
-msgid "Alle Gruppen"
-msgstr "All groups"
-
-#: ../templates/contact/header-groups.php:35
-msgid "Nachricht an alle Personen dieser Gruppe schicken"
-msgstr "Send message to all users in this group"
-
-#: ../templates/contact/index.php:10
-msgid "Alle zuklappen"
-msgstr "Close all"
-
-#: ../templates/contact/index.php:14
-msgid "Alle aufklappen"
-msgstr "Open all"
-
-#: ../templates/contact/index.php:17
-#, php-format
-msgid "(%d Eintrag)"
-msgid_plural "(%d Einträge)"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../templates/contact/legend.php:2
-msgid "Bedienung:"
-msgstr "Handling:"
-
-#: ../templates/contact/legend.php:6
-msgid "Nachricht an Kontakt"
-msgstr "Message to contact"
-
-#: ../templates/contact/legend.php:11
-msgid "Kontakt zuklappen"
-msgstr "Close contact"
-
-#: ../templates/contact/legend.php:15
-msgid "Buddystatus"
-msgstr "Status of a buddy"
-
-#: ../templates/contact/legend.php:19
-msgid "Eigene Rubriken"
-msgstr "My categories"
-
-#: ../templates/contact/legend.php:23
-msgid "Kontakt löschen"
-msgstr "Remove contact"
-
-#: ../templates/contact/legend.php:28
-msgid "Kontakt aufklappen"
-msgstr "Open contact"
-
-#: ../templates/contact/legend.php:35
-msgid "als vCard exportieren"
-msgstr "export as vCard"
-
-#: ../templates/wiki/pageversions.php:4
-msgid "Versionshistorie"
-msgstr "Version history"
-
-#: ../templates/wiki/pageversions.php:21
-msgid "Autor/in"
-msgstr "Author"
-
-#: ../templates/wiki/show.php:26
-msgid "Seiten-Einstellungen"
-msgstr "Page settings"
-
-#: ../templates/wiki/show.php:51
-msgid "Mach die Welt ein Stückchen schlauer."
-msgstr "Make the world a bit smarter."
-
-#: ../templates/wiki/show.php:61 ../app/controllers/siteinfo.php:96
-#: ../app/views/siteinfo/new.php:17
-msgid "Neue Seite anlegen"
-msgstr "Create new page"
-
-#: ../templates/wiki/edit.php:19
-msgid "Speichern und weiter bearbeiten"
-msgstr "Save and continue "
-
-#: ../templates/wiki/list.php:18 ../templates/wiki/list.php:47
-msgid "Änderungen"
-msgstr "Changes"
-
-#: ../templates/wiki/list.php:27 ../app/controllers/messages.php:383
-#: ../app/controllers/messages.php:437
-#: ../app/views/consultation/admin/create.php:92
-#: ../app/views/settings/calendar.php:72 ../app/views/messages/read.php:11
-#: ../app/views/messages/print.php:10
-msgid "Von"
-msgstr "From"
-
-#: ../templates/adminarea-start.php:4
-#, php-format
-msgid ""
-"Hier können Sie die Daten der Veranstaltung <b>%s</b> direkt bearbeiten."
-msgstr "Here you can directly edit the details of course <b>%s</b>."
-
-#: ../templates/adminarea-start.php:6
-#, php-format
-msgid ""
-"Sie haben die Veranstaltung <b>%s</b> vorgewählt. Sie können nun direkt die "
-"einzelnen Bereiche dieser Veranstaltung bearbeiten, indem Sie die "
-"entsprechenden Menüpunkte wöhlen."
-msgstr ""
-"You have selected course <b>%s</b>. Now you can edit each area of this "
-"course by selecting the according menu tab."
-
-#: ../templates/adminarea-start.php:10
-msgid ""
-"Wenn Sie eine andere Veranstaltung bearbeiten wollen, klicken Sie bitte auf "
-"<b>Veranstaltungen</b> um zum Auswahlmenü zurückzukehren."
-msgstr ""
-"Clicking on the icon <b>Courses</b> will take you back to the selection "
-"menu. There you can choose another course to be edited."
-
-#: ../templates/personal_notifications/notification.php:3
-msgid "Als gelesen markieren"
-msgstr "Mark as read"
-
-#: ../templates/personal_notifications/notification.php:13
-#, php-format
-msgid "... und %u weitere"
-msgstr "... and %u more"
-
-#: ../templates/loginform.php:32
-msgid "Bei der Anmeldung trat ein Fehler auf!"
-msgstr "An error occurred upon registration!"
-
-#: ../templates/loginform.php:52
-#: ../templates/elearning/_new_account_form.php:43
-msgid "Benutzername:"
-msgstr "Username:"
-
-#: ../templates/loginform.php:62
-#: ../templates/elearning/_new_account_form.php:58
-#: ../templates/elearning/_new_account_form.php:99
-msgid "Passwort:"
-msgstr "Password:"
-
-#: ../templates/loginform.php:71
-msgid "Anmelden"
-msgstr "Login"
-
-#: ../templates/loginform.php:81
-msgid "Passwort vergessen"
-msgstr "Forgotten password"
-
-#: ../templates/terms.php:3
-msgid "Was ist Stud.IP?"
-msgstr "What is Stud.IP?"
-
-#: ../templates/terms.php:6
-msgid ""
-"Stud.IP ist ein Open Source Projekt und steht unter der GNU General Public "
-"License (GPL). Das System befindet sich in der ständigen Weiterentwicklung."
-msgstr ""
-"Stud.IP is an open source project licensed under the GNU General Public "
-"License (GPL). The system is in continuous ongoing development."
-
-#: ../templates/terms.php:9
-#, php-format
-msgid ""
-"Für Vorschläge und Kritik findet sich immer ein Ohr. Wenden Sie sich hierzu "
-"entweder an die %sStud.IP Crew%s oder direkt an Ihren lokalen %sSupport%s."
-msgstr ""
-"There is always a friendly ear for suggestions and criticism. You may either "
-"contact the %sStud.IP Crew%s or directly contact your local %ssupport%s."
-
-#: ../templates/terms.php:16
-msgid ""
-"Um den vollen Funktionsumfang von Stud.IP nutzen zu können, müssen Sie sich "
-"am System anmelden."
-msgstr ""
-"To take advantage of the full range of Stud.IP features you must register "
-"for the system."
-
-#: ../templates/terms.php:17
-msgid "Das hat viele Vorzüge:"
-msgstr "There are many advantages:"
-
-#: ../templates/terms.php:20
-msgid "Zugriff auf Ihre Daten von jedem internetfähigen Rechner weltweit,"
-msgstr "Access to your data from every computer with internet access,"
-
-#: ../templates/terms.php:21
-msgid "Anzeige neuer Mitteilungen oder Dateien seit Ihrem letzten Besuch,"
-msgstr "Display of new notifications or documents since your last login,"
-
-#: ../templates/terms.php:22
-msgid "Ein eigenes Profil im System,"
-msgstr "Your personal profile in the system,"
-
-#: ../templates/terms.php:23
-msgid ""
-"die Möglichkeit anderen Personen Nachrichten zu schicken oder mit ihnen zu "
-"chatten,"
-msgstr "sending messages to other users or chat with them,"
-
-#: ../templates/terms.php:24
-msgid "und vieles mehr."
-msgstr "and a lot more."
-
-#: ../templates/terms.php:26
-msgid ""
-"Mit der Anmeldung werden die nachfolgenden Nutzungsbedingungen akzeptiert:"
-msgstr "By registering, the following terms of use are accepted:"
-
-#: ../templates/sidebar/room-search-criteria-available-range.php:42
-#: ../templates/sidebar/room-search-criteria.php:33
-msgid "Kriterium ausgewählt"
-msgstr "Criteria selected"
-
-#: ../templates/sidebar/room-search-criteria-available-range.php:66
-#: ../app/views/resources/booking/_add_edit_form.php:41
-msgid "Zeitbereich"
-msgstr "Time range"
-
-#: ../templates/sidebar/room-search-criteria-available-range.php:79
-#: ../templates/sidebar/room-search-criteria-available-range.php:92
-#: ../templates/sidebar/room-search-criteria-templates.php:78
-#: ../templates/sidebar/room-search-criteria-templates.php:80
-#: ../templates/sidebar/room-search-criteria-templates.php:98
-#: ../templates/sidebar/room-search-criteria-templates.php:100
-#: ../templates/sidebar/room-search-criteria.php:125
-#: ../templates/sidebar/room-search-criteria.php:134
-#: ../templates/sidebar/room-search-criteria.php:146
-#: ../app/views/settings/calendar.php:80 ../app/views/settings/calendar.php:92
-#: ../app/views/admin/sem_classes/overview.php:30
-#: ../app/views/calendar/schedule/settings.php:22
-msgid "Uhr"
-msgstr "o'clock"
-
-#: ../templates/sidebar/room-search-criteria-available-range.php:96
-#: ../app/controllers/resources/room_request.php:553
-#: ../app/controllers/resources/room_request.php:1860
-#: ../app/controllers/course/dates.php:434
-#: ../app/views/admin/cronjobs/schedules/periodic-schedule.php:37
-#: ../app/views/admin/cronjobs/schedules/edit.php:147
-msgid "Wochentag"
-msgstr "Day of week"
-
-#: ../templates/sidebar/room-clipboard-widget.php:5
-msgid "Individuelle Raumgruppen"
-msgstr "Individual room groups"
-
-#: ../templates/sidebar/room-clipboard-widget.php:14
-msgid "Ziehen Sie Räume in diesen Bereich um die Raumgruppe zu füllen."
-msgstr "Drag rooms in this area to fill the room group."
-
-#: ../templates/sidebar/room-clipboard-widget.php:47
-msgid "Raumgruppe hinzufügen"
-msgstr "Add room group"
-
-#: ../templates/sidebar/room-clipboard-widget.php:48
-msgid ""
-"Geben Sie bitte einen Namen ein und klicken Sie auf das Plus-Symbol um eine "
-"neue Raumgruppe zu erstellen."
-msgstr "To create a new room group, enter a name and click on the plus symbol."
-
-#: ../templates/sidebar/room-clipboard-widget.php:49
-msgid "Name der neuen Raumgruppe"
-msgstr "Name of the new room group"
-
-#: ../templates/sidebar/options-widget-form.php:36
-msgid "Setzen"
-msgstr "Set"
-
-#: ../templates/sidebar/time-range-filter.php:4
-msgid "Dateien neuer als"
-msgstr "Files newer than"
-
-#: ../templates/sidebar/time-range-filter.php:9
-msgid "Dateien älter als"
-msgstr "Files older than"
-
-#: ../templates/sidebar/clipboard-area.php:104
-msgid "Diesen Eintrag auswählen."
-msgstr "Select this entry."
-
-#: ../templates/sidebar/room-clipboard-item.php:36
-msgid "Diesen Raum auswählen."
-msgstr "Select this room."
-
-#: ../templates/sidebar/room-clipboard-item.php:67
-#: ../app/controllers/resources/room.php:83
-#: ../app/views/resources/room/index.php:74
-#: ../app/views/resources/_common/_room_search_result.php:23
-msgid "Wochenbelegung"
-msgstr "Week booking plan"
-
-#: ../templates/sidebar/room-clipboard-item.php:78
-#: ../app/controllers/resources/room.php:91
-#: ../app/controllers/resources/room.php:109
-#: ../app/views/resources/room/index.php:78
-#: ../app/views/resources/room/index.php:87
-#: ../app/views/resources/_common/_room_search_result.php:29
-#: ../app/views/resources/_common/_room_search_result.php:42
-msgid "Semesterbelegung"
-msgstr "Semester booking plan"
-
-#: ../templates/sidebar/room-search-widget.php:104
-#: ../app/views/admin/autoinsert/manual.php:69
-msgid "Filter hinzufügen"
-msgstr "Add filter"
-
-#: ../templates/sidebar/room-search-widget.php:106
-msgid "Bitte aus dieser Liste Kriterien für die Raumsuche auswählen."
-msgstr "Please select criteria for the room search from this list."
-
-#: ../templates/sidebar/clipboard-widget.php:5
-msgid "Eigene Merkzettel"
-msgstr "Own notepads"
-
-#: ../templates/sidebar/clipboard-widget.php:12
-msgid "Ziehen Sie Elemente in diesen Bereich um den Merkzettel zu füllen."
-msgstr "Drag elements in this area to fill the notepad."
-
-#: ../templates/sidebar/clipboard-widget.php:41
-msgid "Merkzettel hinzufügen"
-msgstr "Add notepad"
-
-#: ../templates/sidebar/clipboard-widget.php:42
-msgid ""
-"Geben Sie bitte einen Namen ein und klicken Sie auf das Plus-Symbol um einen "
-"neuen Merkzettel zu erstellen."
-msgstr "To create a new clipboard, enter a name and click on the plus symbol."
-
-#: ../templates/sidebar/clipboard-widget.php:43
-msgid "Name des neuen Merkzettels"
-msgstr "Name of the new clipboard"
-
-#: ../templates/sidebar/resources_individual_booking_plan_sidebar.php:5
-#, php-format
-msgid ""
-"Im unteren Bereich können Sie bis zu %d Farben frei wählen und diese via "
-"Drag & Drop auf Termine ziehen. Wenn Sie fertig sind, klicken Sie auf das "
-"Drucken-Symbol unter den Farbwählern."
-msgstr ""
-"In the area below you may freely choose up to %d colours and drag them onto "
-"dates. If you are finished, click on the print symbol below the colour "
-"choosers."
-
-#: ../templates/sidebar/resources_individual_booking_plan_sidebar.php:18
-msgid "Individuelle Druckansicht drucken"
-msgstr "Print individual booking plan"
-
-#: ../templates/sidebar/selector-widget.php:3
-msgid "Wählen Sie ein Objekt aus. Sie gelangen dann zur neuen Seite."
-msgstr ""
-"Select an object. You will be redirected to the according page afterwards."
-
-#: ../templates/datafields/phone.php:14
-msgid "Landesvorwahl ohne führende Nullen"
-msgstr "Country code without leading zeroes"
-
-#: ../templates/datafields/phone.php:21
-msgid "Ortsvorwahl ohne führende Null"
-msgstr "Area code without leading zero"
-
-#: ../templates/datafields/phone.php:28
-msgid "Rufnummer"
-msgstr "Telephone"
-
-#: ../templates/filesystem/permission_enabled_folder/edit.php:3
-#: ../templates/filesystem/timed_folder/edit.php:18
-msgid "Lesen (Dateien können heruntergeladen werden)"
-msgstr "Read (Files can be downloaded)"
-
-#: ../templates/filesystem/permission_enabled_folder/edit.php:7
-#: ../templates/filesystem/timed_folder/edit.php:22
-msgid "Schreiben (Dateien können hochgeladen werden)"
-msgstr "Write (files can be uploaded)"
-
-#: ../templates/filesystem/permission_enabled_folder/edit.php:11
-msgid "Sichtbarkeit (Ordner wird angezeigt)"
-msgstr "Visibility (Folder will be shown)"
-
-#: ../templates/filesystem/date_folder/description.php:2
-msgid "Dieser Ordner ist einem Veranstaltungstermin zugeordnet."
-msgstr "This folder is assigned to a course date."
-
-#: ../templates/filesystem/date_folder/description.php:5
-#: ../templates/filesystem/topic_folder/description.php:5
-msgid "(Studierende dürfen Dateien hochladen.)"
-msgstr "(Students may upload files.)"
-
-#: ../templates/filesystem/date_folder/description.php:7
-#: ../templates/filesystem/topic_folder/description.php:7
-msgid "(Studierende dürfen keine Dateien hochladen.)"
-msgstr "(Students may not upload files.)"
-
-#: ../templates/filesystem/date_folder/edit.php:5
-msgid ""
-"Wählen sie einen zugehöriges Termin aus, der Titel wird automatisch aus dem "
-"Datum des Termins erzeugt."
-msgstr ""
-"Please select an associated date. The title will automatically be generated "
-"from the date."
-
-#: ../templates/filesystem/date_folder/edit.php:9
-msgid "Es existiert kein Termin in dieser Veranstaltung"
-msgstr "No date exists in this course"
-
-#: ../templates/filesystem/date_folder/edit.php:21
-#: ../templates/filesystem/topic_folder/edit.php:21
-#: ../app/views/course/dates/create_folders.php:39
-msgid "Studierende dürfen Dateien in diesen Ordner hochladen"
-msgstr "Students may upload files into this folder"
-
-#: ../templates/filesystem/course_public_folder/edit.php:4
-msgid "Weltweiten Zugriff auf Dateien im Ordner erlauben"
-msgstr ""
-
-#: ../templates/filesystem/hidden_folder/description.php:2
-msgid ""
-"Ein unsichtbarer Ordner, welcher nur von Lehrenden und TutorInnen gesehen "
-"werden kann."
-msgstr "An invisible folder which can only be seen by lecturers and tutors."
-
-#: ../templates/filesystem/hidden_folder/description.php:5
-msgid ""
-"Dateien aus diesem Ordner können heruntergeladen werden, wenn ein "
-"Downloadlink bekannt ist."
-msgstr "Files from this folder can be downloaded if a download link is known."
-
-#: ../templates/filesystem/hidden_folder/edit.php:3
-msgid "Zugriff auf Dateien per Link erlauben"
-msgstr "Allow download access to files by link"
-
-#: ../templates/filesystem/timed_folder/description.php:3
-msgid ""
-"Den zeitgesteuerten Ordner sehen Teilnehmende in einem von lehrenden "
-"Personen bestimmten Zeitraum. Ob Teilnehmende die Ordnerinhalte "
-"herunterladen und/oder hochladen können, kann eingestellt werden."
-msgstr ""
-
-#: ../templates/filesystem/timed_folder/description.php:7
-#, php-format
-msgid "Sichtbar ab %s"
-msgstr "Visible from %s"
-
-#: ../templates/filesystem/timed_folder/description.php:13
-#, php-format
-msgid "Sichtbar bis %s"
-msgstr "Visible until %s"
-
-#: ../templates/filesystem/timed_folder/description.php:19
-#, php-format
-msgid "Sichtbar von %s bis %s"
-msgstr "Visible from %s until %s"
-
-#: ../templates/filesystem/timed_folder/description.php:27
-#: ../templates/filesystem/homework_folder/description.php:2
-msgid ""
-"Dieser Ordner ist ein Hausaufgabenordner. Es können nur Dateien eingestellt "
-"werden."
-msgstr "This folder is for homework. Files can be uploaded to it, only."
-
-#: ../templates/filesystem/timed_folder/description.php:32
-#: ../templates/filesystem/material_folder/description.php:2
-msgid ""
-"Ein Ordner für Materialien, welche nur zum Download zu Verfügung gestellt "
-"werden sollen."
-msgstr "A folder for materials which are only available for download."
-
-#: ../templates/filesystem/timed_folder/description.php:35
-#: ../templates/filesystem/material_folder/description.php:4
-msgid "Den Inhalt des Ordners können nur Lehrende und TutorInnen verändern."
-msgstr "Only lecturers and tutors may modify the folder's content."
-
-#: ../templates/filesystem/timed_folder/description.php:42
-#: ../templates/filesystem/homework_folder/description.php:5
-msgid "Sie selbst haben folgende Dateien in diesen Ordner eingestellt:"
-msgstr "You have uploaded the following files to this folder:"
-
-#: ../templates/filesystem/timed_folder/edit.php:2
-msgid "Sichtbar ab"
-msgstr "Visible from"
-
-#: ../templates/filesystem/timed_folder/edit.php:10
-msgid "Sichtbar bis"
-msgstr "Visible until"
-
-#: ../templates/filesystem/topic_folder/description.php:2
-msgid "Dieser Ordner ist ein themenbezogener Dateiordner."
-msgstr "This is a topic related folder."
-
-#: ../templates/filesystem/topic_folder/description.php:12
-msgid "Folgende Termine sind diesem Thema zugeordnet:"
-msgstr "The following dates are assigned to this topic:"
-
-#: ../templates/filesystem/topic_folder/edit.php:5
-msgid ""
-"Wählen sie eine zugehöriges Thema aus, Titel und Beschreibung des Themas "
-"werden automatisch übernommen."
-msgstr ""
-"Please select an associated topic. The title and the description will be set "
-"from the topic."
-
-#: ../templates/filesystem/topic_folder/edit.php:9
-msgid "Es existiert kein Thema in dieser Veranstaltung"
-msgstr "No topic exists in this course"
-
-#: ../templates/filesystem/group_folder/description.php:2
-#, php-format
-msgid "Ein Ordner für die Mitglieder der Gruppe %s."
-msgstr "A folder for the members of group %s."
-
-#: ../templates/filesystem/group_folder/description.php:3
-msgid "Der Inhalt ist nur für die eingetragenen Mitglieder sichtbar."
-msgstr "The content is only visible for the registered members."
-
-#: ../templates/filesystem/group_folder/edit.php:5
-msgid "Wählen sie eine zugehörige Gruppe aus"
-msgstr "Please select an appropriate group"
-
-#: ../templates/filesystem/group_folder/edit.php:9
-msgid "Es existiert keine Gruppe in dieser Veranstaltung"
-msgstr "No group exists inside this course"
-
-#: ../templates/filesystem/public_folder/edit.php:3
-msgid "Sichtbar auf der Profilseite"
-msgstr "Visible on profile page"
-
-#: ../templates/index_nobody.php:22
-msgid "Sie sind nun aus dem System abgemeldet."
-msgstr "Now you have logged out of the system."
-
-#: ../templates/index_nobody.php:72
-msgid "Registrierte NutzerInnen"
-msgstr "Registered users"
-
-#: ../templates/index_nobody.php:77
-msgid "Davon online"
-msgstr "Users online"
-
-#: ../templates/blubber/coursegroup_context.php:3
-msgid "Diese Teilnehmendengruppe existiert nicht mehr."
-msgstr "This participant group doesn't exist anymore."
-
-#: ../templates/blubber/global_context.php:2
-msgid ""
-"Blubber ist ein Kommunikationstool, das unter der Prämisse \"Studierende "
-"helfen Studierenden\" bereitgestellt wird. Bitte beachten Sie, dass Ihre "
-"Kommunikation an dieser Stelle öffentlich erfolgt und halten sich an die "
-"Nutzungsbedingungen und die Netiquette."
-msgstr ""
-"Blubber is a communication tool that is provided under the premise "
-"\"students help students\". Please note that your communication on this page "
-"is public and follow the terms of use and the netiquette."
-
-#: ../templates/blubber/global_context.php:9
-#: ../templates/blubber/course_context.php:62
-msgid "Benachrichtigungen für diese Konversation abstellen."
-msgstr "Unsubscribe from notifications for this conversation."
-
-#: ../templates/blubber/global_context.php:13
-#: ../templates/blubber/course_context.php:66
-msgid "Benachrichtigungen aktiviert"
-msgstr "Notifications activated"
-
-#: ../templates/blubber/private_context.php:4
-msgid "Dies ist ein privater Blubber."
-msgstr "This is a private Blubber."
-
-#: ../templates/blubber/private_context.php:16
-#: ../app/controllers/profile.php:301
-msgid "Anblubbern"
-msgstr "Blubber"
-
-#: ../templates/blubber/private_context.php:24
-msgid "Gruppe verlassen"
-msgstr "Exit group"
-
-#: ../templates/blubber/private_context.php:25
-msgid "Private Konversation wirklich verlassen?"
-msgstr "Really leave private conversion?"
-
-#: ../templates/blubber/private_context.php:53
-msgid "Aus diesem Blubber eine Studiengruppe machen."
-msgstr "Create a studygroup from this Blubber."
-
-#: ../templates/blubber/public_context.php:2
-msgid "Dies ist ein öffentlicher Blubber und kann von allen gelesen werden."
-msgstr "This is a public Blubber which can be read by everyone."
-
-#: ../templates/blubber/public_context.php:8 ../app/controllers/blubber.php:84
-msgid "Blubber bearbeiten"
-msgstr "Edit Blubber"
-
-#: ../templates/blubber/public_context.php:13
-#: ../app/views/oer/market/details.php:199
-#: ../app/views/course/topics/index.php:94
-#: ../app/views/course/topics/edit.php:87
-#: ../app/views/admin/sem_classes/details.php:290
-#: ../app/views/admin/licenses/index.php:35
-#: ../app/views/questionnaire/overview.php:31
-#: ../app/views/questionnaire/_question.php:14
-#: ../app/views/questionnaire/_overview_questionnaire.php:125
-msgid "Wirklich löschen?"
-msgstr "Really delete?"
-
-#: ../templates/blubber/public_context.php:15
-msgid "Diesen Blubber löschen."
-msgstr "Delete this Blubber."
-
-#: ../templates/blubber/threads-overview.php:11
-msgid "Konversationen"
-msgstr "Conversations"
-
-#: ../templates/blubber/threads-overview.php:11
-msgid "Konversation"
-msgstr "Conversation"
-
-#: ../templates/blubber/course_context.php:18
-#: ../app/views/course/overview/index.php:19
-#: ../app/views/course/details/index.php:169
-msgid "Nächster Termin"
-msgstr "Next date"
-
-#: ../templates/blubber/course_context.php:52
-#, php-format
-msgid "%s %s und %s"
-msgstr "%s %s and %s"
-
-#: ../templates/userfilter/display.php:6
-#: ../app/views/userfilter/field/configure.php:23
-msgid "und"
-msgstr "and"
-
-#: ../templates/userfilter/display.php:17 ../app/views/messages/read.php:25
-#: ../app/views/messages/_message_row.php:17
-#: ../app/views/messages/_message_row.php:32
-#, php-format
-msgid "%s Personen"
-msgstr "%s persons"
-
-#: ../templates/userfilter/display.php:19
-msgid "Niemand erfüllt diese Bedingung."
-msgstr "No users satisfies this condition."
-
-#: ../templates/elearning/_module_header.php:11
-msgid "Alle Module schließen"
-msgstr "Close all modules"
-
-#: ../templates/elearning/_module_header.php:15
-msgid "Alle Module öffnen"
-msgstr "Open all modules"
-
-#: ../templates/elearning/elearning_interface_show.php:3
-#: ../app/views/course/elearning/show.php:3
-msgid "Lernmodule der Einrichtung"
-msgstr "Learning modules for the institute"
-
-#: ../templates/elearning/elearning_interface_show.php:5
-#: ../app/views/course/elearning/show.php:5
-msgid "Lernmodule der Veranstaltung"
-msgstr "Learning modules for the course"
-
-#: ../templates/elearning/elearning_interface_show.php:23
-#: ../templates/elearning/elearning_interface_edit.php:15
-#: ../app/views/course/elearning/show.php:25
-#: ../app/views/course/elearning/edit.php:20
-msgid "Angebundene Lernmodule"
-msgstr "Coupled learning modules"
-
-#: ../templates/elearning/_cms_selectbox.php:5
-msgid "Angebundenes System"
-msgstr "Coupled system"
-
-#: ../templates/elearning/_cms_selectbox.php:14
-#: ../templates/elearning/elearning_interface_edit.php:108
-#: ../templates/elearning/_type_selectbox.php:4
-#: ../app/views/resources/booking/copy.php:17
-#: ../app/views/course/elearning/edit.php:104
-#: ../app/views/settings/statusgruppen/assign.php:10
-msgid "Bitte auswählen"
-msgstr "Please select"
-
-#: ../templates/elearning/elearning_interface_edit.php:36
-#: ../app/views/course/elearning/edit.php:32
-#, php-format
-msgid "Ihre Lernmodule in %s"
-msgstr "Your learning modules in %s"
-
-#: ../templates/elearning/elearning_interface_edit.php:49
-#: ../app/views/course/elearning/edit.php:45
-#, php-format
-msgid ""
-"Um im System %s nach Lernmodulen zu suchen, geben Sie einen Suchbegriff ein:"
-msgstr ""
-"To search for learning modules in system %s, please enter a search string:"
-
-#: ../templates/elearning/elearning_interface_edit.php:53
-#: ../app/views/course/elearning/edit.php:49
-#, php-format
-msgid "Gefundene Lernmodule zum Suchbegriff \"%s\""
-msgstr "Learning modules matching the search string \"%s\""
-
-#: ../templates/elearning/elearning_interface_edit.php:61
-#: ../app/views/course/elearning/edit.php:57
-#, php-format
-msgid "Es gibt im System %s zu diesem Suchbegriff keine Lernmodule."
-msgstr ""
-"In the system %s there is no learning module matching the search string."
-
-#: ../templates/elearning/elearning_interface_edit.php:67
-#: ../app/views/course/elearning/edit.php:63
-#, php-format
-msgid ""
-"Sie können im System %s nicht suchen, da Sie bisher keinen Benutzer-Account "
-"angelegt haben."
-msgstr ""
-"You cannot search in the system %s because you do not have created any user "
-"account yet."
-
-#: ../templates/elearning/elearning_interface_edit.php:70
-#: ../app/views/course/elearning/edit.php:66
-msgid "Jetzt einen Account erstellen."
-msgstr "Create an user account now."
-
-#: ../templates/elearning/elearning_interface_edit.php:77
-#: ../app/views/course/elearning/edit.php:73
-msgid "Leeren Kurs anlegen"
-msgstr "Create empty course"
-
-#: ../templates/elearning/elearning_interface_edit.php:80
-#: ../app/views/course/elearning/edit.php:76
-msgid ""
-"Hier können Sie einen leeren Ilias-Kurs für diese Veranstaltung anlegen. Die "
-"Teilnehmenden der Veranstaltung können dann den Kurs betreten, auch wenn "
-"noch keine Lernmodule zugeordnet sind. Solange der Kurs leer ist, erscheint "
-"auf der Seite \"Meine Veranstaltungen und Einrichtungen\" kein "
-"Lernmodulsymbol für diese Veranstaltung. <b>Dieser Schritt kann nicht "
-"rückgängig gemacht werden.</b>"
-msgstr ""
-"Here, you can create an empty ILIAS-course for the given course. "
-"Participants of the course can enter the ILIAS-course even if no learning "
-"module has been allocated to. As long as the ILIAS-course is empty, for this "
-"course no learning module icon will appear on the page \"My courses and "
-"institutes\". <b>This step cannot be undone.</b>"
-
-#: ../templates/elearning/elearning_interface_edit.php:98
-#: ../app/views/course/elearning/edit.php:94
-msgid "Verknüpfung mit einem bestehenden Kurs"
-msgstr "Link with an existing course"
-
-#: ../templates/elearning/elearning_interface_edit.php:101
-#: ../app/views/course/elearning/edit.php:97
-msgid ""
-"Wenn Sie die Veranstaltung mit einem bestehenden Ilias-Kurs verbinden "
-"wollen, wählen Sie hier die Stud.IP-Veranstaltung, mit der der bestehende "
-"Kurs verknüpft ist. Beide Stud.IP-Veranstaltungen sind dann mit dem selben "
-"Ilias-Kurs verknüpft. <b>Dieser Schritt kann nicht rückgängig gemacht werden."
-"</b>"
-msgstr ""
-"To associate this course with an existing ILIAS-course then select the Stud."
-"IP-course to be linked with the given course. Both Stud.IP-courses will be "
-"linked with the same ILIAS-course.  <b>This step cannot be undone.</b>"
-
-#: ../templates/elearning/elearning_interface_edit.php:127
-#: ../app/views/course/elearning/edit.php:123
-msgid "Links zu anderen ILIAS-Objekten"
-msgstr "Links to other ILIAS-objects"
-
-#: ../templates/elearning/elearning_interface_edit.php:130
-#: ../app/views/course/elearning/edit.php:126
-msgid ""
-"Sie können beliebige weitere Objekte hinzufügen, indem Sie im verknüpften "
-"Kurs in ILIAS einen internen Link zu den entsprechenden Objekten anlegen. "
-"Wechseln Sie dazu in den Kurs, wählen Sie unter \"Neues Objekt hinzufügen\" "
-"die Option Weblink und legen einen Link innerhalb von ILIAS an. Kehren Sie "
-"anschließend auf diese Seite zurück und klicken Sie in der Infobox auf "
-"\"Aktualisieren\". Für die auf diese Weise verlinkten Objekte müssen Sie "
-"selbst sicherstellen, dass die Teilnehmenden des Kurses Zugriff darauf haben."
-msgstr ""
-"You may add further learning objects by creating internal links in the "
-"connected ILIAS course. Go to the course in ILIAS, select \"Weblink\" at "
-"\"Add new object\" and create a link within ILIAS. Than refresh this page "
-"and add the link. Please make sure that your participants are permitted to "
-"access the linked objects. These permissions must be set manually. "
-
-#: ../templates/elearning/elearning_interface_edit.php:146
-#: ../app/views/course/elearning/edit.php:5
-msgid "Um Lernmodule hinzuzufügen, wählen Sie ein angebundenes System aus:"
-msgstr "To add learning modules select a coupled system:"
-
-#: ../templates/elearning/_my_account_form.php:10
-msgid "Loginname:"
-msgstr "Username: "
-
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:13
-msgid "SOAP-Verbindung:"
-msgstr "SOAP connection:"
-
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:28
-msgid ""
-"Geben Sie hier den Namen einer bestehenden ILIAS 4 - Kategorie ein, in der "
-"die Lernmodule und User-Kategorien abgelegt werden sollen."
-msgstr ""
-"Please enter the name of an existing ILIAS 4 category where the learning "
-"modules and the user categories are to be saved."
-
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:37
-msgid "Kategorie für Userdaten:"
-msgstr "User details category:"
-
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:47
-msgid "Rollen-Template für die persönliche Kategorie:"
-msgstr "Role template for personal categories:"
-
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:50
-msgid ""
-"Geben Sie den Namen des Rollen-Templates ein, das für die persönliche "
-"Kategorie von Lehrenden verwendet werden soll (z.B. \"Author\")."
-msgstr ""
-"Enter the name of the role template to be used for the personal category of "
-"lecturers (e.g. \"author\")."
-
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:59
-msgid "Passwörter:"
-msgstr "Passwords:"
-
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:71
-msgid "LDAP-Einstellung:"
-msgstr "LDAP settings:"
-
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:78
-#: ../app/views/admin/ilias_interface/edit_server.php:63
-msgid ""
-"Authentifizierungsplugin (nur LDAP) beim Anlegen von externen Accounts "
-"übernehmen."
-msgstr ""
-"Copy authentication plug-in (LDAP only) while creating external accounts."
-
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:79
-#: ../app/views/admin/ilias_interface/edit_server.php:64
-msgid ""
-"Wählen Sie hier ein Authentifizierungsplugin, damit neu angelegte ILIAS-"
-"Accounts den Authentifizierungsmodus LDAP erhalten, wenn dieser Modus auch "
-"für den vorhandenen Stud.IP-Account gilt. Andernfalls erhalten alle ILIAS-"
-"Accounts den default-Modus"
-msgstr ""
-"Please select an authentication plug-in in order to equip newly created "
-"ILIAS accounts with the authentication modus LDAP, provided this modus is "
-"the one for the existing Stud.IP account. Otherwise all ILIAS accounts will "
-"be equipped with the default modus"
-
-#: ../templates/elearning/ilias4_connected_cms_preferences.php:81
-#: ../app/views/admin/ilias_interface/edit_server.php:66
-msgid ""
-"(Um diese Einstellung zu nutzen muss zumindest ein LDAP "
-"Authentifizierungsplugin aktiviert sein.)"
-msgstr ""
-"(In order use this setting at least one LDAP authentication plug-in must be "
-"activated.)"
-
-#: ../templates/elearning/_new_account_form.php:16
-#, php-format
-msgid "Hier gelangen Sie zum gewählten Lernmodul \"%s\":"
-msgstr "This takes you to the selected learning module \"%s\":"
-
-#: ../templates/elearning/_new_account_form.php:30
-#, php-format
-msgid ""
-"Geben Sie nun Benutzernamen und Passwort Ihres Benutzeraccounts in %s ein."
-msgstr "Now, please enter username and password of your user account at %s."
-
-#: ../templates/elearning/_new_account_form.php:70
-#: ../templates/elearning/_new_account_form.php:126
-#: ../app/views/course/ilias_interface/edit_object_assignment.php:27
-msgid "Bestätigen"
-msgstr "Confirm"
-
-#: ../templates/elearning/_new_account_form.php:86
-#, php-format
-msgid "Geben Sie nun ein Passwort für Ihren neuen Benutzeraccount in %s ein."
-msgstr "Now, please enter the password of your new user account at %s."
-
-#: ../templates/elearning/_new_account_form.php:114
-msgid "Passwort-Wiederholung:"
-msgstr "Re-type password:"
-
-#: ../templates/elearning/_new_account_form.php:142
-#, php-format
-msgid ""
-"Ihr Stud.IP-Account wurde bereits mit einem %s-Account verknüpft. Wenn Sie "
-"den verknüpften Account durch einen anderen, bereits existierenden Account "
-"ersetzen wollen, klicken Sie auf \"zuordnen\"."
-msgstr ""
-"A %s account has already been associated with your Stud.IP account. If you "
-"want to replace the associated account by a different existing one, then "
-"click on \"associate\"."
-
-#: ../templates/elearning/_new_account_form.php:148
-#, php-format
-msgid ""
-"Wenn Sie innerhalb von %s bereits über einen BenutzerInnen-Account verfügen, "
-"können Sie ihn jetzt \"zuordnen\". Anderenfalls wird automatisch ein neuer "
-"Account in %s für Sie erstellt, wenn Sie auf \"weiter\" klicken."
-msgstr ""
-"If you already have an user account in system %s, then you can \"associate\" "
-"it now. Otherwise, click on \"continue\" to automatically create a new "
-"account in system %s."
-
-#: ../templates/elearning/_new_account_form.php:157
-#: ../app/views/course/admission/index.php:77
-#: ../app/views/course/grouping/parent.php:41
-#: ../app/views/my_ilias_accounts/new_account.php:12
-msgid "Zuordnen"
-msgstr "Assign"
-
-#: ../templates/elearning/_new_account_form.php:157
-msgid "Bestehenden Account zuordnen"
-msgstr "Associate existing account"
-
-#: ../templates/elearning/_new_module_form.php:4
-msgid "Neues Lernmodul erstellen"
-msgstr "Create a new learning module"
-
-#: ../templates/elearning/_new_module_form.php:11
-#, php-format
-msgid "Typ für neues Lernmodul: %s"
-msgstr "Type of the new learning module: %s"
-
-#: ../templates/elearning/my_elearning.php:2
-#: ../app/controllers/elearning.php:83 ../app/views/elearning/my_accounts.php:2
-msgid "Meine Lernmodule und Benutzer-Accounts"
-msgstr "My learning modules and user accounts"
-
-#: ../templates/elearning/my_elearning.php:9
-#: ../app/views/elearning/my_accounts.php:9
-msgid "Mein Benutzeraccount"
-msgstr "My user account"
-
-#: ../templates/elearning/my_elearning.php:16
-#: ../app/views/elearning/my_accounts.php:16
-#, php-format
-msgid "Sie haben im System %s bisher keinen Benutzer-Account."
-msgstr "At present, you do not have any account in system %s."
-
-#: ../templates/elearning/my_elearning.php:20
-#: ../app/views/elearning/my_accounts.php:20
-msgid "Hier gelangen Sie direkt zur Startseite im angebundenen System:"
-msgstr "Startpage of connected system:"
-
-#: ../templates/elearning/my_elearning.php:27
-#: ../app/views/elearning/my_accounts.php:27
-msgid "Meine Lernmodule"
-msgstr "My learning modules"
-
-#: ../templates/elearning/my_elearning.php:37
-#: ../app/views/elearning/my_accounts.php:36
-#, php-format
-msgid "Sie haben im System %s keine eigenen Lernmodule."
-msgstr "In system %s you do not have any personal learning modules."
-
-#: ../templates/dates/seminar_predominant_html.php:10
-#, php-format
-msgid "und %s weitere"
-msgstr "and %s further"
-
-#: ../templates/dates/seminar_export_location.php:38
-#: ../templates/dates/seminar_html_location.php:76
-#: ../app/controllers/course/timesrooms.php:100
-#: ../app/controllers/admin/courses.php:514 ../app/views/shared/filter.php:52
-#: ../app/views/module/module/modul.php:199
-#: ../app/views/admin/courses/_course.php:84
-msgid "nicht angegeben"
-msgstr "unspecified"
-
-#: ../templates/dates/seminar_export.php:14
-#: ../templates/dates/seminar_html.php:22
-#: ../templates/dates/seminar_html_location.php:6
-#: ../app/views/resources/_common/_request_tr.php:81
-#, php-format
-msgid "ab %s"
-msgstr "from %s"
-
-#: ../templates/dates/seminar_export.php:16
-#, php-format
-msgid "zweiwöchentlich, %s"
-msgstr "fortnightly, %s"
-
-#: ../templates/dates/seminar_export.php:18
-#, php-format
-msgid "dreiwöchentlich, %s"
-msgstr "every third week, %s"
-
-#: ../templates/dates/seminar_export.php:57
-#: ../templates/dates/seminar_html.php:62
-msgid "Termine am"
-msgstr "Dates on"
-
-#: ../templates/dates/_seminar_rooms.php:28
-#, php-format
-msgid " (+%s weitere)"
-msgstr " (+%s more)"
-
-#: ../templates/dates/_seminar_rooms.php:31
-#: ../templates/dates/seminar_html_location.php:37
-#: ../templates/dates/seminar_html_location.php:50
-#: ../templates/dates/seminar_html_location.php:69
-msgid "k.A."
-msgstr "n.a."
-
-#: ../templates/dates/seminar_html.php:6
-#: ../app/views/course/overview/index.php:16
-#: ../app/views/course/overview/index.php:27
-msgid "Die Zeiten der Veranstaltung stehen nicht fest."
-msgstr "The course times are not decided yet."
-
-#: ../templates/dates/seminar_html.php:73
-#: ../templates/dates/seminar_html.php:84
-msgid "Blenden Sie die restlichen Termine ein"
-msgstr "Show the remaining dates"
-
-#: ../templates/dates/seminar_html.php:106
-#, php-format
-msgid "Details zu allen Terminen im %sAblaufplan%s"
-msgstr "Details about all dates in the %sschedule%s"
-
-#: ../templates/dates/missing_date.php:3
-#, php-format
-msgid "Der Termin am %s findet nicht statt."
-msgstr "The date on %s has been cancelled."
-
-#: ../templates/library/library_document_info.php:26
-#: ../app/views/file/add_from_library.php:104
-msgid "Veröffentlicht"
-msgstr "Published"
-
-#: ../templates/library/library_document_info.php:30
-#: ../app/views/file/add_from_library.php:108
-msgid "Medium"
-msgstr ""
-
-#: ../templates/library/library_document_info.php:34
-#: ../app/views/resources/_common/_request_info.php:41
-#: ../app/views/wiki/info.php:26 ../app/views/file/add_from_library.php:112
-msgid "Erstellt von"
-msgstr "Created by"
-
-#: ../templates/library/library_document_info.php:38
-#: ../app/views/file/add_from_library.php:120
-msgid "Katalog"
-msgstr "Catalogue"
-
-#: ../templates/library/library_document_info.php:40
-#: ../app/views/file/add_from_library.php:122
-msgid "Im OPAC anzeigen"
-msgstr "Show in OPAC"
-
-#: ../app/controllers/quicksearch.php:73
-msgid "Session abgelaufen oder unbekannter Suchtyp"
-msgstr "Outdated session or unknown type of search"
-
-#: ../app/controllers/admission/ruleadministration.php:35
-msgid "Installierte Anmelderegeln"
-msgstr "Installed admission rules"
-
-#: ../app/controllers/admission/ruleadministration.php:38
-msgid "Regelkompatibilität"
-msgstr "Rule compatibility"
-
-#: ../app/controllers/admission/ruleadministration.php:49
-msgid "Verwaltung von Anmelderegeln"
-msgstr "Management of admissions"
-
-#: ../app/controllers/admission/ruleadministration.php:62
-msgid "Anmelderegelkompatibilität"
-msgstr "Admission rule compatibility"
-
-#: ../app/controllers/admission/ruleadministration.php:76
-#: ../app/views/admission/rule_administration/check_activation.php:9
-msgid "Verfügbarkeit der Anmelderegel"
-msgstr "Availability of admission"
-
-#: ../app/controllers/admission/ruleadministration.php:140
-#: ../app/controllers/online.php:134
-msgid "Ihre Einstellungen wurden gespeichert."
-msgstr "Your settings have been saved."
-
-#: ../app/controllers/admission/ruleadministration.php:142
-msgid "Ihre Einstellungen konnten nicht gespeichert werden."
-msgstr "Unable to save settings."
-
-#: ../app/controllers/admission/ruleadministration.php:217
-msgid "Die Einstellungen zur Regelkompatibilität wurden gespeichert."
-msgstr "Settings for rule compatibility have been saved."
-
-#: ../app/controllers/admission/ruleadministration.php:219
-msgid ""
-"Die Einstellungen zur Regelkompatibilität konnten nicht vollständig "
-"gespeichert werden. Es sind Probleme bei folgenden Einträgen aufgetreten:"
-msgstr ""
-"Settings for rule compatibility could not be saved completely since problems "
-"have occurred for the following entries:"
-
-#: ../app/controllers/admission/ruleadministration.php:224
-msgid ""
-"Die Einstellungen zur Regelkompatibilität konnten nicht gespeichert werden."
-msgstr "Settings for rule compatibility could not be saved."
-
-#: ../app/controllers/admission/ruleadministration.php:239
-#: ../app/controllers/admin/role.php:562 ../app/controllers/admin/plugin.php:83
-msgid "Das Ticket für diese Aktion ist ungültig."
-msgstr "Invalid ticket for this action."
-
-#: ../app/controllers/admission/userlist.php:33
-#: ../app/controllers/admission/userlist.php:60
-#: ../app/views/admission/user_list/configure.php:21
-msgid "Personenliste anlegen"
-msgstr "Add list"
-
-#: ../app/controllers/admission/userlist.php:57
-#: ../app/views/admission/user_list/configure.php:21
-msgid "Personenliste bearbeiten"
-msgstr "Edit list"
-
-#: ../app/controllers/admission/userlist.php:111
-msgid "Die Personenliste wurde gespeichert."
-msgstr "List saved."
-
-#: ../app/controllers/admission/userlist.php:113
-msgid "Die Personenliste konnte nicht gespeichert werden."
-msgstr "Cannot save list."
-
-#: ../app/controllers/admission/userlist.php:146
-#, php-format
-msgid ""
-"%s wurde von der Liste entfernt, die Liste ist aber noch nicht gespeichert."
-msgstr "%s deleted, list has not been saved yet."
-
-#: ../app/controllers/admission/userlist.php:172
-#, php-format
-msgid "Eine Person wurde der Liste hinzugefügt."
-msgid_plural ""
-"%u Personen wurden der Liste hinzugefügt, die Liste ist aber noch nicht "
-"gespeichert."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admission/restricted_courses.php:24
-msgid "Teilnahmebeschränkte Veranstaltungen"
-msgstr "Restricted courses"
-
-#: ../app/controllers/admission/restricted_courses.php:76
-#: ../app/controllers/admission/courseset.php:402
-#: ../app/views/admission/courseset/configure_courses.php:10
-#: ../app/views/admission/restricted_courses/index.php:9
-msgid "max. Teilnehmende"
-msgstr "max. number of participants"
-
-#: ../app/controllers/admission/restricted_courses.php:77
-#: ../app/controllers/admission/courseset.php:402
-#: ../app/views/admission/courseset/configure_courses.php:11
-msgid "Teilnehmende aktuell"
-msgstr "Current number of participants"
-
-#: ../app/controllers/admission/restricted_courses.php:78
-#: ../app/controllers/admission/courseset.php:402
-msgid "Anzahl Anmeldungen"
-msgstr "Number of applications"
-
-#: ../app/controllers/admission/restricted_courses.php:79
-msgid "Anzahl vorl. Anmeldungen"
-msgstr "Number of preliminary enrolments"
-
-#: ../app/controllers/admission/restricted_courses.php:80
-msgid "Anzahl Warteliste"
-msgstr "Number wait list"
-
-#: ../app/controllers/admission/restricted_courses.php:81
-#: ../app/views/admission/restricted_courses/index.php:13
-msgid "Platzverteilung"
-msgstr "Admission"
-
-#: ../app/controllers/admission/restricted_courses.php:82
-#: ../app/views/admission/restricted_courses/index.php:14
-#: ../app/views/resources/global_locks/delete.php:10
-#: ../app/views/resources/global_locks/_add_edit_form.php:13
-#: ../app/views/resources/building/lock.php:7
-#: ../app/views/resources/export/select_booking_sources.php:8
-#: ../app/views/resources/export/resource_bookings.php:16
-#: ../app/views/resources/resource/export_bookings.php:16
-#: ../app/views/resources/resource/lock.php:7
-msgid "Startzeitpunkt"
-msgstr "Start time"
-
-#: ../app/controllers/admission/restricted_courses.php:83
-#: ../app/views/admission/restricted_courses/index.php:15
-#: ../app/views/resources/global_locks/delete.php:12
-#: ../app/views/resources/global_locks/_add_edit_form.php:23
-#: ../app/views/resources/building/lock.php:12
-#: ../app/views/resources/export/select_booking_sources.php:15
-#: ../app/views/resources/export/resource_bookings.php:23
-#: ../app/views/resources/resource/export_bookings.php:23
-#: ../app/views/resources/resource/lock.php:14
-#: ../app/views/evaluation/_evaluation.php:54
-msgid "Endzeitpunkt"
-msgstr "End time"
-
-#: ../app/controllers/admission/restricted_courses.php:114
-#: ../app/controllers/admission/courseset.php:125
-msgid ""
-"Es existieren Anmeldesets, die zum Zeitpunkt der Platzverteilung nicht "
-"gelost wurden. Stellen Sie sicher, dass der Cronjob \"Losverfahren überprüfen"
-"\" ausgeführt wird."
-msgstr ""
-"One or more admissions have not been executed at the set time. Please check "
-"the cronjob \"Check Admission\"."
-
-#: ../app/controllers/admission/courseset.php:44
-#: ../app/views/admission/courseset/configure.php:21
-msgid "Anmeldeset anlegen"
-msgstr "Create admission"
-
-#: ../app/controllers/admission/courseset.php:276
-msgid "Bitte geben Sie einen Namen für das Anmeldeset an!"
-msgstr "Enter a title for the admission!"
-
-#: ../app/controllers/admission/courseset.php:279
-msgid ""
-"Bitte geben Sie mindestens eine Einrichtung an, zu der das Anmeldeset gehört!"
-msgstr "Please specify at least one institution assigned to the admission!"
-
-#: ../app/controllers/admission/courseset.php:305
-#, php-format
-msgid "Das Anmeldeset: %s wurde gespeichert"
-msgstr "The admission set %s has been saved"
-
-#: ../app/controllers/admission/courseset.php:377
-#: ../app/views/admission/courseset/configure.php:120
-msgid "Ausgewählte Veranstaltungen konfigurieren"
-msgstr "Configure selected courses"
-
-#: ../app/controllers/admission/courseset.php:401
-#: ../app/views/admission/courseset/instcourses.php:21
-#: ../app/views/admission/courseset/configure_courses.php:7
-#: ../app/views/studygroup/browse.php:52
-msgid "versteckt"
-msgstr "hidden"
-
-#: ../app/controllers/admission/courseset.php:403
-msgid "Anzahl Anmeldungen Prio 1"
-msgstr "Number of application with priority 1"
-
-#: ../app/controllers/admission/courseset.php:403
-msgid "max. Anzahl Warteliste"
-msgstr "max. numbers of applicants on the wait list"
-
-#: ../app/controllers/admission/courseset.php:404
-msgid "automatisches Nachrücken aus der Warteliste"
-msgstr "automatic moving up from the wait list"
-
-#: ../app/controllers/admission/courseset.php:404
-#: ../app/views/admission/courseset/configure_courses.php:8
-msgid "vorläufige Anmeldung"
-msgstr "provisional enrolment"
-
-#: ../app/controllers/admission/courseset.php:405
-#: ../app/views/admission/courseset/configure_courses.php:9
-msgid "verbindliche Anmeldung"
-msgstr "binding enrolment"
-
-#: ../app/controllers/admission/courseset.php:453
-msgid "Username"
-msgstr "Username"
-
-#: ../app/controllers/admission/courseset.php:527
-msgid "Die zugeordneten Veranstaltungen wurden konfiguriert."
-msgstr "The assigned courses have been configured."
-
-#: ../app/controllers/admission/courseset.php:541
-msgid "Liste der Personen"
-msgstr "List of persons"
-
-#: ../app/controllers/admission/courseset.php:562
-msgid "Liste der Anmeldungen"
-msgstr "List of applications"
-
-#: ../app/controllers/admission/courseset.php:624
-msgid "Anmeldung:"
-msgstr "Enrolment:"
-
-#: ../app/controllers/admission/courseset.php:634
-msgid "Kopie von:"
-msgstr "Copy of:"
-
-#: ../app/controllers/admission/courseset.php:642
-#, php-format
-msgid ""
-"Bitte passen Sie das Datum der automatischen Platzverteilung an, es wurde "
-"automatisch auf %s festgelegt!"
-msgstr ""
-"Please adjust the date for the automatic seat allocation, it has been "
-"automatically set to %s!"
-
-#: ../app/controllers/admission/courseset.php:645
-#, php-format
-msgid "Der Gültigkeitszeitraum der Regel %s endet in der Vergangenheit!"
-msgstr "Date for admission %s has already expired!"
-
-#: ../app/controllers/admission/courseset.php:743
-msgid "Die Anmeldesets wurden gelöscht."
-msgstr ""
-
-#: ../app/controllers/consultation/overview.php:64
-#: ../app/controllers/consultation/admin.php:317
-msgid "Dieser Termin ist bereits belegt."
-msgstr ""
-
-#: ../app/controllers/consultation/overview.php:72
-#: ../app/controllers/consultation/admin.php:325
-msgid "Der Termin wurde reserviert."
-msgstr ""
-
-#: ../app/controllers/consultation/overview.php:88
-msgid "Dieser Termin ist nicht von Ihnen belegt."
-msgstr ""
-
-#: ../app/controllers/consultation/overview.php:94
-#: ../app/controllers/consultation/admin.php:405
-#: ../app/controllers/consultation/admin.php:541
-msgid "Der Termin wurde abgesagt."
-msgstr ""
-
-#: ../app/controllers/consultation/overview.php:121
-#: ../app/controllers/consultation/admin.php:747
-msgid "Termine gruppiert anzeigen"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:24
-msgid "Verwaltung der Termine"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:113
-#: ../app/views/consultation/admin/create.php:39
-msgid "Neue Terminblöcke anlegen"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:192
-msgid ""
-"In dem von Ihnen gewählten Zeitraum konnten für den gewählten Wochentag "
-"keine Termine erzeugt werden."
-msgstr ""
-"No dates could be created for the selected weekday in the period you "
-"selected."
-
-#: ../app/controllers/consultation/admin.php:194
-msgid "Die Terminblöcke wurden erfolgreich angelegt."
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:202
-msgid "Anmerkung zu diesem Termin bearbeiten"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:204
-msgid "Anmerkung zu diesem Block bearbeiten"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:229
-msgid "Der Block wurde bearbeitet"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:262
-msgid ""
-"Sie können mindestens einen Termin nicht löschen, da er bereits belegt ist."
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:263
-msgid "Bitte sagen Sie diese Termine erst ab."
-msgstr "Please cancel these bookings first."
-
-#: ../app/controllers/consultation/admin.php:267
-#: ../app/controllers/consultation/admin.php:486
-#: ../app/controllers/consultation/admin.php:513
-msgid "Die Termine wurden gelöscht"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:276
-msgid "Sie können diesen Termin nicht löschen, da er bereits belegt ist."
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:277
-msgid "Bitte sagen Sie den Termin erst ab."
-msgstr "Please cancel this booking first."
-
-#: ../app/controllers/consultation/admin.php:281
-msgid "Der Termin wurde gelöscht"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:294
-#: ../app/views/consultation/overview/book.php:9
-#: ../app/views/consultation/overview/book.php:43
-#: ../app/views/consultation/overview/ungrouped.php:76
-#: ../app/views/consultation/overview/index.php:50
-#: ../app/views/consultation/admin/book.php:5
-#: ../app/views/consultation/admin/book.php:42
-#: ../app/views/consultation/admin/ungrouped.php:226
-#: ../app/views/consultation/admin/index.php:142
-msgid "Termin reservieren"
-msgstr "Reserve date"
-
-#: ../app/controllers/consultation/admin.php:304
-#: ../app/controllers/consultation/admin.php:306
-#: ../app/controllers/module/module.php:327
-#: ../app/controllers/admin/user.php:1543
-#: ../app/controllers/admin/configuration.php:446
-#: ../app/controllers/calendar/calendar.php:199
-#: ../app/controllers/calendar/calendar.php:216
-#: ../app/views/consultation/admin/book.php:25
-#: ../app/views/blubber/add_member_to_private.php:3
-msgid "Person suchen"
-msgstr "Search user"
-
-#: ../app/controllers/consultation/admin.php:334
-msgid "Ort des Blocks bearbeiten"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:348
-msgid "Der Block wurde gespeichert."
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:359
-#: ../app/controllers/consultation/admin.php:526
-#: ../app/views/consultation/admin/ungrouped.php:95
-#: ../app/views/consultation/admin/cancel_slots.php:9
-#: ../app/views/consultation/admin/cancel_slots.php:50
-#: ../app/views/consultation/admin/index.php:74
-#: ../app/views/consultation/admin/cancel_block.php:5
-#: ../app/views/consultation/admin/cancel_block.php:32
-msgid "Termine absagen"
-msgstr "Cancel dates"
-
-#: ../app/controllers/consultation/admin.php:374
-#: ../app/controllers/consultation/admin.php:543
-msgid "Die Termine wurden abgesagt."
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:381
-#: ../app/views/consultation/overview/cancel.php:5
-#: ../app/views/consultation/overview/cancel.php:24
-#: ../app/views/consultation/overview/ungrouped.php:72
-#: ../app/views/consultation/overview/index.php:46
-#: ../app/views/consultation/overview/booked.php:49
-#: ../app/views/consultation/admin/ungrouped.php:241
-#: ../app/views/consultation/admin/cancel_slot.php:5
-#: ../app/views/consultation/admin/cancel_slot.php:44
-#: ../app/views/consultation/admin/index.php:157
-msgid "Termin absagen"
-msgstr "Cancel date"
-
-#: ../app/controllers/consultation/admin.php:408
-#, php-format
-msgid "Der Termin wurde für %u Personen abgesagt."
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:412
-msgid "Der Termin wurde für eine Person abgesagt."
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:420
-#: ../app/views/consultation/admin/reason.php:5
-msgid "Grund für die Buchung bearbeiten"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:431
-msgid "Der Grund für die Buchung wurde bearbeitet."
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:474
-msgid "Sie haben keine Termine gewählt."
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:496
-msgid "Der freie Termin wurde gelöscht"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:498
-msgid "Die freien Termine wurden gelöscht"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:515
-msgid "Termine löschen"
-msgstr "Delete dates"
-
-#: ../app/controllers/consultation/admin.php:576
-#, php-format
-msgid "%u aktuelle Termine wurden gelöscht"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:582
-#, php-format
-msgid "%u vergangene Termine wurden gelöscht"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:631
-#, php-format
-msgid "Termin am %s um %s"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:641
-#, php-format
-msgid "Termin am %s"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:661
-msgid "Der Name wurde gespeichert"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:706
-msgid "Aktuelle Termine"
-msgstr "Current dates"
-
-#: ../app/controllers/consultation/admin.php:710
-msgid "Vergangene Termine"
-msgstr "Past dates"
-
-#: ../app/controllers/consultation/admin.php:716
-#: ../app/views/consultation/admin/ungrouped.php:9
-#: ../app/views/consultation/admin/index.php:9
-msgid "Terminblöcke anlegen"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:721
-#: ../app/views/consultation/admin/tab.php:3
-msgid "Namen des Reiters ändern"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:727
-msgid "Alle Termine löschen"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:730
-msgid "Wollen Sie wirklich alle Termine löschen?"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:735
-msgid "Benachrichtungen über Buchungen"
-msgstr "Notifications about bookings"
-
-#: ../app/controllers/consultation/admin.php:741
-msgid "Abgelaufene Terminblöcke automatisch löschen"
-msgstr ""
-
-#: ../app/controllers/consultation/admin.php:755
-msgid "Anmeldungen exportieren"
-msgstr "Export bookings"
-
-#: ../app/controllers/consultation/admin.php:760
-#: ../app/views/calendar/single/export_calendar.php:27
-msgid "Alle Termine exportieren"
-msgstr "Export all dates"
-
-#: ../app/controllers/consultation/consultation_controller.php:95
-msgid "Dieser Termin existiert nicht"
-msgstr ""
-
-#: ../app/controllers/consultation/consultation_controller.php:107
-msgid "Diese Buchung existiert nicht"
-msgstr ""
-
-#: ../app/controllers/consultation/export.php:27
-#: ../app/controllers/consultation/export.php:60
-#: ../app/controllers/resources/export.php:293
-#: ../app/controllers/resources/export.php:406
-#: ../app/controllers/course/dates.php:436
-#: ../app/controllers/calendar/calendar.php:345
-#: ../app/views/consultation/admin/create.php:51
-#: ../app/views/resources/messages/index.php:126
-#: ../app/views/resources/admin/global_locks.php:14
-#: ../app/views/resources/resource/temporary_permissions.php:179
-#: ../app/views/admin/semester/edit.php:47
-#: ../app/views/admin/semester/edit.php:79
-#: ../app/views/calendar/single/_event_data.php:5
-#: ../app/views/calendar/single/edit.php:28
-#: ../app/views/calendar/single/_tooltip.php:4
-msgid "Beginn"
-msgstr "Beginning"
-
-#: ../app/controllers/consultation/export.php:31
-#: ../app/controllers/consultation/export.php:64
-#: ../app/controllers/admin/courses.php:1041
-#: ../app/controllers/admin/courses.php:1042
-#: ../app/views/admin/courses/notice.php:8
-#: ../app/views/admin/courses/notice-action.php:7
-msgid "Notiz"
-msgstr "Notes"
-
-#: ../app/controllers/globalsearch.php:130
-msgid "Globale Suche: Einstellungen"
-msgstr "Global search: settings"
-
-#: ../app/controllers/globalsearch.php:201
-#: ../app/controllers/course/feedback.php:168
-#: ../app/controllers/course/lti.php:108
-#: ../app/controllers/settings/notification.php:166
-#: ../app/controllers/settings/deputies.php:181
-#: ../app/controllers/settings/general.php:82
-#: ../app/controllers/admin/api.php:206 ../app/controllers/admin/cache.php:113
-msgid "Die Einstellungen wurden gespeichert."
-msgstr "Settings have been saved."
-
-#: ../app/controllers/globalsearch.php:203
-#: ../app/controllers/admin/cache.php:116
-msgid "Die Einstellungen konnten nicht gespeichert werden."
-msgstr "The settings could not be saved."
-
-#: ../app/controllers/search/globalsearch.php:52
-msgid "Ergebnis-Anzeige"
-msgstr "Result display"
-
-#: ../app/controllers/search/globalsearch.php:55
-#: ../app/controllers/files_dashboard/sidebar.php:75
-msgid "Alle Ergebnisse"
-msgstr "All results"
-
-#: ../app/controllers/search/globalsearch.php:86
-#: ../app/views/admin/sem_classes/details.php:47
-msgid "Veranstaltungstypen"
-msgstr "Course types"
-
-#: ../app/controllers/search/globalsearch.php:161
-msgid "Alle Veranstaltungsarten"
-msgstr "All kinds of courses"
-
-#: ../app/controllers/search/globalsearch.php:179
-msgid ""
-"_ ist Platzhalter für ein beliebiges Zeichen. % ist Platzhalter für beliebig "
-"viele Zeichen. Me_er findet Treffer für Meyer und Meier. M__er findet "
-"zusätzlich auch Mayer und Maier. M%er findet alle vorherigen Treffer aber "
-"auch Münchner."
-msgstr ""
-"_ is a placeholder for a random character. %s is a placeholder for an "
-"arbitrary amount of characters. \"bl_ck\" will find results for \"black\" "
-"and \"block\". \"b__ck\" will also find \"brick\". \"b%ck\" will find all "
-"the results mentioned before and results for \"back\", too."
-
-#: ../app/controllers/search/globalsearch.php:180
-msgid ""
-"Erweitert die ausgewählte Suchkategorie, um mehr Suchergebnisse aus dieser "
-"Kategorie anzuzeigen. Ein weiterer Klick zeigt wieder Ergebnisse aus allen "
-"Kategorien an."
-msgstr ""
-"Extends the selected search category to display more search results from "
-"this category. Another click will display results from all categories again."
-
-#: ../app/controllers/search/globalsearch.php:181
-msgid ""
-"Die Dateisuche kann über einen Schrägstrich (/) verfeinert werden. Beispiel: "
-"\"Meine Veranstaltung/Datei\" zeigt alle Dateien, die das Wort \"Datei\" "
-"enthalten und in \"Meine Veranstaltung\" sind, an. Die Veranstaltung kann "
-"auch auf einen Teil (z.B. Veran/Datei) oder auf die Großbuchstaben bzw. auch "
-"deren Abkürzung (z.B. MV/Datei oder V/Datei) beschränkt werden."
-msgstr ""
-"The file search can be refined using a slash (/). Example: \"My courses/file"
-"\" shows all files which contain the word \"file\" and which are placed in "
-"\"My courses\". The course can be limited to a part (e.g. \"Cour/file\") or "
-"of the capital letters or their abbreviations (e.g. \"Mc/file\" or \"C/file"
-"\")."
-
-#: ../app/controllers/search/archive.php:32 ../app/controllers/archive.php:45
-#: ../app/views/search/archive/index.php:6
-msgid "Suche im Veranstaltungsarchiv"
-msgstr "Search course archive"
-
-#: ../app/controllers/search/archive.php:49
-msgid "Nur eigene Veranstaltungen anzeigen"
-msgstr "Display my courses only"
-
-#: ../app/controllers/search/archive.php:88
-#, php-format
-msgid "Der Name der Veranstaltung muss mindestens %s Zeichen lang sein!"
-msgstr "The name of the course must be at least %s characters long!"
-
-#: ../app/controllers/search/archive.php:97
-#, php-format
-msgid ""
-"Der Name des/der gesuchten Lehrenden muss mindestens %s Zeichen lang sein!"
-msgstr "The name of the searched lecturer must be at least %s characters long!"
-
-#: ../app/controllers/search/archive.php:147
-#, php-format
-msgid ""
-"Es wurden %s Veranstaltungen gefunden. Bitte grenzen sie die Suchkriterien "
-"weiter ein!"
-msgstr "%s courses have been found. Please narrow down the search criteria!"
-
-#: ../app/controllers/search/archive.php:151
-msgid "Es wurde keine Veranstaltung gefunden!"
-msgstr "No course has been found!"
-
-#: ../app/controllers/search/archive.php:157
-#, php-format
-msgid "Es wurde eine Veranstaltung gefunden!"
-msgid_plural "Es wurden %s Veranstaltungen gefunden!"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/search/stgtable.php:34
-#: ../app/controllers/search/studiengaenge.php:31
-#: ../app/controllers/search/angebot.php:33
-#: ../app/controllers/search/module.php:54
-msgid "Modulsuche"
-msgstr "Module search"
-
-#: ../app/controllers/search/stgtable.php:35
-#: ../app/controllers/search/studiengaenge.php:32
-#: ../app/controllers/search/angebot.php:34
-#: ../app/controllers/search/module.php:56
-msgid "Studienangebot"
-msgstr "Courses"
-
-#: ../app/controllers/search/stgtable.php:37
-#: ../app/controllers/search/stgtable.php:70
-#: ../app/controllers/search/studiengaenge.php:35
-#: ../app/controllers/search/angebot.php:37
-msgid "Fach-Abschluss-Kombinationen"
-msgstr "Combinations of field of study and final degree"
-
-#: ../app/controllers/search/stgtable.php:45
-msgid "Modulverzeichnis - Fach-Abschluss-Kombinationen"
-msgstr "Module directory - Combinations of field of study and final degree"
-
-#: ../app/controllers/search/studiengaenge.php:42
-msgid "Modulverzeichnis - Studiengänge"
-msgstr "Module directory - courses of study"
-
-#: ../app/controllers/search/studiengaenge.php:108
-#: ../app/controllers/studiengaenge/studiengaenge.php:293
-#: ../app/controllers/studiengaenge/studiengaenge.php:455
-#: ../app/controllers/studiengaenge/studiengaenge.php:525
-#: ../app/controllers/studiengaenge/studiengaenge.php:566
-#: ../app/controllers/studiengaenge/studiengaenge.php:618
-#: ../app/controllers/studiengaenge/studiengaenge.php:796
-#: ../app/controllers/studiengaenge/studiengaenge.php:872
-#: ../app/controllers/studiengaenge/studiengaenge.php:1145
-#: ../app/controllers/studiengaenge/studiengaenge.php:1176
-msgid "Unbekannter Studiengang"
-msgstr "Unknown course of study"
-
-#: ../app/controllers/search/studiengaenge.php:209
-msgid "Kein Verlaufsplan im gewählten Bereich verfügbar."
-msgstr "No recommendation in selected area."
-
-#: ../app/controllers/search/studiengaenge.php:337
-msgid "Nur Module mit Veranstaltungen anzeigen"
-msgstr "Display only modules with assigned courses"
-
-#: ../app/controllers/search/studiengaenge.php:345
-msgid "Aktuelle Modulhandbücher"
-msgstr ""
-
-#: ../app/controllers/search/studiengaenge.php:350
-msgid "Originalfassung als PDF"
-msgstr ""
-
-#: ../app/controllers/search/studiengaenge.php:353
-#, php-format
-msgid "Zweitfassung (%s) als PDF"
-msgstr ""
-
-#: ../app/controllers/search/studiengaenge.php:402
-#: ../app/views/search/angebot/info.php:1
-#, php-format
-msgid "Informationen zum Studiengang: %s"
-msgstr "Information on course of study: %s"
-
-#: ../app/controllers/search/studiengaenge.php:491
-msgid "Versionenauswahl"
-msgstr "Versions"
-
-#: ../app/controllers/search/studiengaenge.php:507
-#: ../app/controllers/search/module.php:137
-#: ../app/controllers/admin/overlapping.php:246
-#: ../app/views/search/studiengaenge/_studiengang.php:12
-msgid "Semesterauswahl"
-msgstr "Semester selection"
-
-#: ../app/controllers/search/angebot.php:28
-msgid "Modulverzeichnis - Studienangebot von A bis Z"
-msgstr "Module directory - Courses of study from A to Z"
-
-#: ../app/controllers/search/angebot.php:89
-msgid "Studienangebot von A bis Z"
-msgstr "A to Z"
-
-#: ../app/controllers/search/angebot.php:99
-#: ../app/controllers/fachabschluss/kategorien.php:112
-msgid "Unbekannte Abschluss-Kategorie"
-msgstr "Unknown category"
-
-#: ../app/controllers/search/module.php:49
-msgid "Modulverzeichnis - Modulsuche"
-msgstr "Module directory - module search"
-
-#: ../app/controllers/search/module.php:58
-msgid "Fach-Abschlusskombinationen"
-msgstr "Combinations of field of study and final degree"
-
-#: ../app/controllers/search/module.php:80
-msgid "Auch unvollständige Namen (mindestens 3 Zeichen) werden akzeptiert."
-msgstr "Incomplete terms (at least 3 characters) are valid."
-
-#: ../app/controllers/search/module.php:89 ../app/controllers/tour.php:197
-#: ../app/controllers/news.php:510 ../app/controllers/help_content.php:64
-msgid "Der Suchbegriff muss mindestens 3 Zeichen lang sein."
-msgstr "Search string must be at least 3 characters."
-
-#: ../app/controllers/search/module.php:127
-#, php-format
-msgid "%s Modul gefunden für die Suche nach <em>%s</em>"
-msgid_plural "%s Module gefunden für die Suche nach <em>%s</em>"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/search/module.php:189
-msgid "Verantwortliche Einrichtungen"
-msgstr "Main institute"
-
-#: ../app/controllers/search/courses.php:85
-msgid "Erweiterte Suche anzeigen"
-msgstr "Display extended search"
-
-#: ../app/controllers/search/courses.php:98
-msgid "Download des Ergebnisses"
-msgstr "Download result"
-
-#: ../app/controllers/search/courses.php:104
-msgid "Suchergebnis gruppieren:"
-msgstr "Arrange search results:"
-
-#: ../app/controllers/search/courses.php:120
-#, php-format
-msgid "Gewählte Veranstaltungsklasse <i>%1s</i>: %2s"
-msgstr "Selected course class <i>%1s</i>: %2s"
-
-#: ../app/controllers/search/courses.php:124
-#, php-format
-msgid "Gewählte Veranstaltungsklasse <i>%1s</i>."
-msgstr "Selected course class <i>%1s</i>."
-
-#: ../app/controllers/search/courses.php:128
-msgid ""
-"Im gewählten Semester ist in dieser Veranstaltungsklasse keine Veranstaltung "
-"verfügbar. Bitte wählen Sie eine andere Veranstaltungsklasse oder ein "
-"anderes Semester!"
-msgstr ""
-"No course is available for this course class in the selected semester. "
-"Please select another course class or another semester!"
-
-#: ../app/controllers/oer/admin.php:30
-msgid "Ihr PHP hat kein aktiviertes cURL-Modul."
-msgstr ""
-
-#: ../app/controllers/oer/admin.php:34
-msgid ""
-"Der OER Campus ist nicht für nobody freigegeben. Damit kann er sich nicht "
-"mit anderen Stud.IPs verbinden. Um das zu ändern, setzen Sie die "
-"Konfiguration OER_PUBLIC_STATUS auf \"nobody\"."
-msgstr ""
-
-#: ../app/controllers/oer/admin.php:54
-msgid "Neue Lernmaterialien einstellen"
-msgstr ""
-
-#: ../app/controllers/oer/admin.php:67
-msgid "Server wurde gefunden und hinzugefügt."
-msgstr ""
-
-#: ../app/controllers/oer/admin.php:69
-msgid "Server ist nicht erreichbar oder hat die Anfrage abgelehnt."
-msgstr ""
-
-#: ../app/controllers/oer/admin.php:73
-msgid "Server ist schon in Liste."
-msgstr ""
-
-#: ../app/controllers/oer/admin.php:85
-#, php-format
-msgid "%s neue Server hinzugefügt."
-msgstr ""
-
-#: ../app/controllers/oer/admin.php:87
-msgid "Keine neuen Server gefunden."
-msgstr ""
-
-#: ../app/controllers/oer/admin.php:174
-msgid "Daten der Server wurden abgerufen und aufgefrischt."
-msgstr ""
-
-#: ../app/controllers/oer/addfile.php:54 ../app/controllers/oer/addfile.php:61
-#: ../app/controllers/file.php:1310
-msgid "Datei wurde hinzugefügt."
-msgstr "File has been added."
-
-#: ../app/controllers/oer/market.php:12 ../app/controllers/oer/market.php:15
-#: ../app/controllers/oer/mymaterial.php:10
-#: ../app/views/oer/market/profile.php:18
-msgid "Lernmaterialien"
-msgstr ""
-
-#: ../app/controllers/oer/market.php:13
-msgid ""
-"Übungszettel, Musterlösungen, Vorlesungsmitschriften oder gar Folien, "
-"selbsterstellte Lernkarteikarten oder alte Klausuren. Das alles wird einmal "
-"erstellt und dann meist vergessen. Auf dem Lernmaterialienmarktplatz bleiben "
-"sie erhalten. Jeder kann was hochladen und jeder kann alles herunterladen. "
-"Alle Inhalte hier sind frei verfügbar für jeden."
-msgstr ""
-
-#: ../app/controllers/oer/market.php:237
-msgid ""
-"Dieses Material stammt von einem anderen Server, der zur Zeit nicht "
-"erreichbar ist."
-msgstr ""
-
-#: ../app/controllers/oer/market.php:242
-msgid ""
-"Dieses Material ist gelöscht worden und wird gleich aus dem Cache "
-"verschwinden."
-msgstr ""
-
-#: ../app/controllers/oer/market.php:288
-msgid "Danke für das Review!"
-msgstr ""
-
-#: ../app/controllers/oer/market.php:344
-msgid "Beim Kopieren ist ein Fehler aufgetaucht."
-msgstr ""
-
-#: ../app/controllers/oer/market.php:346
-msgid "Das Lernmaterial wurde kopiert."
-msgstr ""
-
-#: ../app/controllers/oer/market.php:385
-msgid "Nutzer ist nicht erfasst."
-msgstr ""
-
-#: ../app/controllers/oer/market.php:412
-msgid "Erfolgreich abonniert."
-msgstr ""
-
-#: ../app/controllers/oer/market.php:421
-msgid "Abgemeldet von Neuigkeiten."
-msgstr ""
-
-#: ../app/controllers/oer/mymaterial.php:22
-msgid "Neues Material hochladen"
-msgstr ""
-
-#: ../app/controllers/oer/mymaterial.php:22
-msgid "Material bearbeiten"
-msgstr ""
-
-#: ../app/controllers/oer/mymaterial.php:31
-#: ../app/controllers/oer/mymaterial.php:172
-msgid "Das Material wurde gelöscht."
-msgstr ""
-
-#: ../app/controllers/oer/mymaterial.php:129
-msgid "Lernmaterial erfolgreich gespeichert."
-msgstr ""
-
-#: ../app/controllers/oer/mymaterial.php:155 ../app/controllers/blubber.php:375
-#: ../app/controllers/calendar/single.php:352
-#: ../app/views/oer/mymaterial/edit.php:181
-#: ../app/views/resources/resource/permissions.php:52
-#: ../app/views/resources/resource/temporary_permissions.php:226
-msgid "Person hinzufügen"
-msgstr "Add applicant"
-
-#: ../app/controllers/oer/mymaterial.php:161
-msgid "Thema suchen"
-msgstr ""
-
-#: ../app/controllers/oer/mymaterial.php:183
-#, php-format
-msgid "Zugriffszahlen für %s"
-msgstr ""
-
-#: ../app/controllers/oer/mymaterial.php:248
-#: ../app/views/oer/market/search.php:13 ../app/views/oer/market/index.php:56
-#: ../app/views/oer/market/details.php:329
-msgid "Eigenes Lernmaterial hochladen"
-msgstr ""
-
-#: ../app/controllers/messages.php:40
-msgid "Alle Nachrichten wurden als gelesen markiert."
-msgstr "All messages have been marked as read."
-
-#: ../app/controllers/messages.php:50 ../app/controllers/messages.php:76
-#, php-format
-msgid "%u Nachrichten wurden gelöscht"
-msgstr "%u messages deleted"
-
-#: ../app/controllers/messages.php:140 ../app/controllers/messages.php:381
-#: ../app/controllers/messages.php:435 ../app/controllers/messages.php:963
-#: ../app/views/messages/overview.php:33 ../app/views/messages/read.php:2
-#: ../app/views/messages/print.php:2 ../app/views/messages/write.php:55
-msgid "Betreff"
-msgstr "Subject"
-
-#: ../app/controllers/messages.php:175 ../app/controllers/messages.php:908
-msgid "Neue Nachricht schreiben"
-msgstr "Write new message"
-
-#: ../app/controllers/messages.php:380
-msgid ". . . ursprüngliche Nachricht . . ."
-msgstr ""
-
-#: ../app/controllers/messages.php:386 ../app/controllers/messages.php:440
-msgid "An: Eine Person"
-msgstr "To: One person"
-
-#: ../app/controllers/messages.php:386 ../app/controllers/messages.php:440
-#, php-format
-msgid "An: %d Personen"
-msgstr "To: %d persons"
-
-#: ../app/controllers/messages.php:392 ../app/controllers/messages.php:446
-#, php-format
-msgid "An: %1$s (und %2$d weitere/n)"
-msgid_plural "An: %1$s (und %2$d weitere)"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/messages.php:401 ../app/controllers/messages.php:455
-#, php-format
-msgid "An: %s"
-msgstr "To: %s"
-
-#: ../app/controllers/messages.php:434
-msgid ". . . weitergeleitete Nachricht . . ."
-msgstr ""
-
-#: ../app/controllers/messages.php:560
-msgid "Nachricht verschicken"
-msgstr "Send message"
-
-#: ../app/controllers/messages.php:565
-msgid "Sie haben nicht angegeben, wer die Nachricht empfangen soll!"
-msgstr "You did not specify who should receive the message!"
-
-#: ../app/controllers/messages.php:567
-msgid "Diese Nachricht wurde bereits verschickt."
-msgstr "This message has already been sent."
-
-#: ../app/controllers/messages.php:594
-msgid "Nachricht wurde verschickt."
-msgstr "Message sent."
-
-#: ../app/controllers/messages.php:633
-#, php-format
-msgid "(und %d weitere)"
-msgstr "(and %d more)"
-
-#: ../app/controllers/messages.php:676
-msgid "Nachricht gelöscht!"
-msgstr "Message deleted!"
-
-#: ../app/controllers/messages.php:678
-msgid "Nachricht konnte nicht gelöscht werden."
-msgstr "Message could not be deleted."
-
-#: ../app/controllers/messages.php:708
-msgid "Alle empfangenen Nachrichten wurden gelöscht."
-msgstr ""
-
-#: ../app/controllers/messages.php:711
-msgid "Alle gesendeten Nachrichten wurden gelöscht."
-msgstr ""
-
-#: ../app/controllers/messages.php:760
-msgid "Es wurden keine Bereiche angegeben, in denen gesucht werden soll."
-msgstr "No areas to search in specified."
-
-#: ../app/controllers/messages.php:829
-msgid "Mailanhänge sind nicht erlaubt."
-msgstr "Mail attachments are not allowed."
-
-#: ../app/controllers/messages.php:896
-msgid "Schlagwort gelöscht!"
-msgstr "Keyword deleted!"
-
-#: ../app/controllers/messages.php:922
-msgid "Ausgewählte Nachrichten löschen"
-msgstr "Delete selected messages"
-
-#: ../app/controllers/messages.php:933
-#, php-format
-msgid ""
-"Möchten Sie wirklich alle Nachrichten im Posteingang löschen? Es werden %u "
-"Nachrichten endgültig gelöscht."
-msgstr ""
-
-#: ../app/controllers/messages.php:937
-msgid "Nachrichten im Posteingang löschen"
-msgstr ""
-
-#: ../app/controllers/messages.php:946
-#, php-format
-msgid ""
-"Möchten Sie wirklich alle Nachrichten im Postausgang löschen? Es werden %u "
-"Nachrichten endgültig gelöscht."
-msgstr ""
-
-#: ../app/controllers/messages.php:950
-msgid "Nachrichten im Postausgang löschen"
-msgstr ""
-
-#: ../app/controllers/messages.php:962
-msgid "Nachrichten durchsuchen"
-msgstr "Search messages"
-
-#: ../app/controllers/messages.php:970
-#: ../app/views/shared/studiengang/_studiengang.php:113
-#: ../app/views/fachabschluss/faecher/fach.php:86
-#: ../app/views/messages/overview.php:36 ../app/views/messages/read.php:44
-#: ../app/views/messages/write.php:80 ../app/views/messages/write.php:143
-msgid "Schlagworte"
-msgstr "Labels"
-
-#: ../app/controllers/messages.php:973
-msgid "Alle Nachrichten"
-msgstr "All messages"
-
-#: ../app/controllers/new_password.php:19
-msgid ""
-"Das Anfordern eines neuen Passwortes durch den Benutzer ist in dieser Stud."
-"IP-Installation nicht möglich."
-msgstr "In this Stud.IP installation users cannot request a new password."
-
-#: ../app/controllers/new_password.php:25
-msgid ""
-"Sie können kein neues Passwort anfordern, wenn Sie bereits eingeloggt sind."
-msgstr "Password request not possible while logged in."
-
-#: ../app/controllers/new_password.php:58
-#, php-format
-msgid ""
-"Dies ist eine Informationsmail des Stud.IP-Systems\n"
-"(Studienbegleitender Internetsupport von Präsenzlehre)\n"
-"- %s -\n"
-"\n"
-"Für die Mail-Adresse %s wurde ein Link angefordert\n"
-"um das Passwort zurückzusetzen.\n"
-"Dieser Mail-Adresse sind jedoch mehrere Zugänge zugeordnet,\n"
-"deshalb ist es nicht möglich, das Passwort hierüber zurückzusetzen.\n"
-"Wenden sie sich bitte stattdessen an\n"
-"%s"
-msgstr ""
-
-#: ../app/controllers/new_password.php:87
-msgid ""
-"Sofern die von ihnen eingegebene Mail-Adresse korrekt ist, erhalten sie in "
-"Kürze eine Mail mit Anweisungen, wie sie ihr Passwort neu setzen können. "
-"Sehen sie auch in ihrem Spam-Ordern nach."
-msgstr ""
-
-#: ../app/controllers/new_password.php:117
-#: ../app/controllers/settings/password.php:70
-#: ../app/controllers/admin/user.php:423 ../app/views/settings/password.php:18
-msgid "Das Passwort ist zu kurz. Es sollte mindestens 8 Zeichen lang sein."
-msgstr "The password is too short. It should have at least 8 characters."
-
-#: ../app/controllers/new_password.php:119
-#: ../app/controllers/settings/password.php:72
-msgid ""
-"Die Wiederholung Ihres Passworts stimmt nicht mit Ihrer Eingabe überein."
-msgstr "Password and re-type password don't match."
-
-#: ../app/controllers/new_password.php:121
-#: ../app/controllers/settings/password.php:74
-msgid "Das Passwort darf nicht mit dem Nutzernamen übereinstimmen."
-msgstr "Password may not match the username."
-
-#: ../app/controllers/new_password.php:123
-#: ../app/controllers/settings/password.php:76
-msgid ""
-"Aus Sicherheitsgründen darf das Passwort nicht \"Stud.IP\" oder eine "
-"Abwandlung davon sein."
-msgstr ""
-"For security reasons the password may not be \"Stud.IP\" or any modification "
-"of \"Stud.IP\"."
-
-#: ../app/controllers/new_password.php:134
-msgid ""
-"Das Passwort wurde erfolgreich geändert. Sie können sich nun mit dem neuen "
-"Passwort einloggen."
-msgstr ""
-"The password has been successfully changed. You can now login with the new "
-"password."
-
-#: ../app/controllers/new_password.php:144
-msgid ""
-"Das Passwort konnte nicht gesetzt werden. Bitte wiederholen Sie den Vorgang."
-msgstr "The password could not be set. Please repeat the procedure."
-
-#: ../app/controllers/avatar.php:29 ../app/controllers/avatar.php:30
-msgid "Profilbild ändern"
-msgstr "Change profile picture"
-
-#: ../app/controllers/avatar.php:36
-msgid "Einrichtungsbild ändern"
-msgstr "Change institute picture"
-
-#: ../app/controllers/avatar.php:42
-msgid "Veranstaltungsbild ändern"
-msgstr "Change course image"
-
-#: ../app/controllers/avatar.php:57 ../app/controllers/avatar.php:113
-#: ../app/controllers/avatar.php:194
-msgid "Sie haben keine Berechtigung, das Bild zu ändern."
-msgstr "You are not allowed to change the picture."
-
-#: ../app/controllers/avatar.php:73 ../app/views/admin/licenses/edit.php:39
-#: ../app/views/admin/login_style/index.php:53
-msgid "Bild löschen"
-msgstr "Delete picture"
-
-#: ../app/controllers/avatar.php:143
-msgid ""
-"Die Bilddatei wurde erfolgreich hochgeladen. Eventuell sehen Sie das neue "
-"Bild erst, nachdem Sie diese Seite neu geladen haben (in den meisten "
-"Browsern F5 drücken)."
-msgstr ""
-"The image has been uploaded. Possibly you will not view the new image file "
-"before reloading this webpage (in most browsers, press F5)."
-
-#: ../app/controllers/avatar.php:151
-msgid "Ein neues Bild wurde hochgeladen.\n"
-msgstr "A new image file has been uploaded.\n"
-
-#: ../app/controllers/avatar.php:199
-#: ../app/controllers/admin/loginstyle.php:111
-msgid "Das Bild wurde gelöscht."
-msgstr "The image has been deleted."
-
-#: ../app/controllers/wiki.php:39 ../app/controllers/wiki.php:62
-#: ../app/controllers/wiki.php:84
-msgid "Sie haben keine Berechtigung, Berechtigungen Wiki-Seiten zu ändern!"
-msgstr "You don't have the permission to change the permissions wiki pages!"
-
-#: ../app/controllers/wiki.php:44 ../app/controllers/wiki.php:67
-#: ../app/controllers/wiki.php:89 ../app/controllers/wiki.php:114
-#: ../app/controllers/wiki.php:178
-msgid "Es wurde keine Seite übergeben!"
-msgstr "No page has been submitted!"
-
-#: ../app/controllers/wiki.php:74
-msgid ""
-"Die veranstaltungsbezogenen Berechtigungen auf die Wiki-Seiten wurden "
-"geändert!"
-msgstr "The course bound permissions of the wiki page have been modified!"
-
-#: ../app/controllers/wiki.php:94
-msgid "Seiten-Einstellungen ändern"
-msgstr "Change page settings"
-
-#: ../app/controllers/wiki.php:109
-msgid "Sie haben keine Berechtigung, Berechtigungen von Wiki-Seiten zu ändern!"
-msgstr "You are not allowed to change permissions on wiki pages!"
-
-#: ../app/controllers/wiki.php:128
-#, php-format
-msgid "Die Berechtigungen für Wiki-Seite \"%s\" wurden geändert!"
-msgstr "The permissions for the wiki page \"%s\" have been changed!"
-
-#: ../app/controllers/wiki.php:159
-msgid "Diese Wiki-Seite existiert nicht mehr!"
-msgstr "This wiki page does not exist anymore!"
-
-#: ../app/controllers/wiki.php:162
-msgid "Die von Ihnen bearbeitete Seite ist nicht mehr aktuell."
-msgstr "The page you have edited is no longer up to date."
-
-#: ../app/controllers/wiki.php:163
-msgid ""
-"Falls Sie dennoch speichern, überschreiben Sie die getätigte Änderung und es "
-"wird unter Umständen zu Datenverlusten kommen."
-msgstr ""
-"If you save anyhow you will overwrite other modifications which can result "
-"in data loss."
-
-#: ../app/controllers/wiki.php:166
-msgid "Möchten Sie Ihre Version dennoch speichern?"
-msgstr "Do you want to save your version anyhow?"
-
-#: ../app/controllers/wiki.php:183
-msgid "Informationen zur Wikiseite"
-msgstr "Wiki page information"
-
-#: ../app/controllers/wiki.php:196
-msgid "Sie haben keine Berechtigung, Änderungen an Wikiseiten vorzunehmen!"
-msgstr "You are not allowed to make changes to wiki pages!"
-
-#: ../app/controllers/wiki.php:202
-msgid "Die ausgewählte Veranstaltung wurde nicht gefunden!"
-msgstr "The selected course could not be found!"
-
-#: ../app/controllers/wiki.php:258
-msgid "Es wurden keine Wikiseiten ausgewählt!"
-msgstr "No wiki pages have been selected!"
-
-#: ../app/controllers/wiki.php:271
-msgid "Es wurden keine Wikiseiten gefunden!"
-msgstr "No wiki pages have been found!"
-
-#: ../app/controllers/wiki.php:291
-#, php-format
-msgid "Fehler beim Import der Wikiseite %s!"
-msgstr "Error while importing the wiki page %s!"
-
-#: ../app/controllers/wiki.php:298
-msgid "Die folgenden Fehler traten beim Import auf:"
-msgstr "The following errors occurred during import:"
-
-#: ../app/controllers/wiki.php:306
-msgid ""
-"Die Wikiseite wurde importiert! Sie ist unter dem Navigationspunkt \"Alle "
-"Seiten\" erreichbar."
-msgid_plural ""
-"Die Wikiseiten wurden importiert! Sie sind unter dem Navigationspunkt \"Alle "
-"Seiten\" erreichbar."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/sitemap.php:42 ../app/views/search/module/show.php:34
-#: ../app/views/shared/modul/overview.php:45
-#: ../app/views/shared/modul/_modul.php:223
-msgid "Hinweise"
-msgstr "Reference text"
-
-#: ../app/controllers/sitemap.php:43
-msgid ""
-"Auf dieser Seite finden Sie eine Übersicht über alle verfügbaren Seiten."
-msgstr "Here you find an overview on all available pages."
-
-#: ../app/controllers/score.php:47
-msgid "Die Rangliste und die Score-Funktion sind nicht aktiviert."
-msgstr "Ranking and score are not activated."
-
-#: ../app/controllers/score.php:104
-msgid "Ihren Wert veröffentlichen"
-msgstr "Publish your score"
-
-#: ../app/controllers/score.php:120
-msgid "Ihr Wert wurde auf der Rangliste veröffentlicht."
-msgstr "Your score has been published on the ranking list."
-
-#: ../app/controllers/score.php:132
-msgid "Ihr Wert wurde von der Rangliste gelöscht."
-msgstr "Your score is no longer published on the ranking list."
-
-#: ../app/controllers/notifications.php:32
-msgid "Persönliche Benachrichtigungen"
-msgstr "Personal notifications"
-
-#: ../app/controllers/shared/contacts.php:38
-#: ../app/controllers/shared/contacts.php:104
-msgid "Verwaltung der Ansprechpartner"
-msgstr "Contact person management"
-
-#: ../app/controllers/shared/contacts.php:136
-#: ../app/controllers/shared/contacts.php:632
-#: ../app/controllers/materialien/files.php:305
-#: ../app/controllers/materialien/files.php:891
-msgid "Art des MVV-Objektes wählen"
-msgstr "Select MVV object type"
-
-#: ../app/controllers/shared/contacts.php:149
-#: ../app/controllers/materialien/files.php:900
-msgid "MVV-Objekt wählen"
-msgstr "Select MVV object"
-
-#: ../app/controllers/shared/contacts.php:252
-msgid "Neuen Ansprechpartner anlegen"
-msgstr "Create new contact person"
-
-#: ../app/controllers/shared/contacts.php:258
-msgid "Liste exportieren (CSV)"
-msgstr "Export list (CSV)"
-
-#: ../app/controllers/shared/contacts.php:270
-msgid ""
-"Auf dieser Seite können Sie Ansprechpartner verwalten, die mit "
-"Studiengängen, Studiengangteilen und Modulen verknüpft sind."
-msgstr ""
-"On this page you can manage contact persons that are linked with courses of "
-"study, components and modules."
-
-#: ../app/controllers/shared/contacts.php:295
-#: ../app/controllers/shared/contacts.php:300
-msgid "Ansprechpartner suchen"
-msgstr "Search contact persons"
-
-#: ../app/controllers/shared/contacts.php:347
-msgid "Intern"
-msgstr "Internal"
-
-#: ../app/controllers/shared/contacts.php:347
-msgid "Extern"
-msgstr "External"
-
-#: ../app/controllers/shared/contacts.php:380
-#: ../app/controllers/materialien/files.php:709
-#: ../app/controllers/studiengaenge/shared_version.php:156
-#: ../app/controllers/studiengaenge/shared_version.php:168
-#: ../app/controllers/studiengaenge/shared_version.php:196
-#: ../app/controllers/studiengaenge/shared_version.php:230
-#: ../app/controllers/studiengaenge/shared_version.php:270
-#: ../app/controllers/studiengaenge/shared_version.php:355
-#: ../app/controllers/studiengaenge/shared_version.php:452
-#: ../app/controllers/studiengaenge/shared_version.php:624
-msgid "Unbekannte Version"
-msgstr "Unknown version"
-
-#: ../app/controllers/shared/contacts.php:396
-msgid "Ansprechpartner des Studienganges"
-msgstr "Contact persons of the course of study"
-
-#: ../app/controllers/shared/contacts.php:472
-msgid "Der Ansprechpartner wurde gespeichert."
-msgstr "The contact person has been saved."
-
-#: ../app/controllers/shared/contacts.php:514
-msgid "Die Verknüpfung wurde gelöscht."
-msgstr "The link has been deleted."
-
-#: ../app/controllers/shared/contacts.php:535
-#, php-format
-msgid "Alle Verknüpfungen von %s gelöscht."
-msgstr "All links of %s have been deleted."
-
-#: ../app/controllers/shared/contacts.php:555
-#, php-format
-msgid "Externer Ansprechpartner %s wurde gelöscht."
-msgstr "External contact person %s has been deleted."
-
-#: ../app/controllers/shared/contacts.php:586
-#: ../app/controllers/materialien/files.php:741
-#: ../app/views/shared/contacts/sort.php:9
-#: ../app/views/materialien/files/sort.php:9
-msgid "Reihenfolge ändern"
-msgstr "Change order"
-
-#: ../app/controllers/shared/contacts.php:591
-#: ../app/controllers/materialien/files.php:255
-msgid "MVV-Objekte Zuordnen"
-msgstr "Assign MVV object"
-
-#: ../app/controllers/shared/contacts.php:832
-msgid "Objekttyp"
-msgstr "Object type"
-
-#: ../app/controllers/shared/contacts.php:833
-#: ../app/views/shared/contacts/add_ansprechpartner.php:110
-#: ../app/views/shared/contacts/details.php:28
-#: ../app/views/shared/contacts/add_ranges_to_contact.php:15
-msgid "Ansprechpartnertyp"
-msgstr "Type of contact person"
-
-#: ../app/controllers/shared/contacts.php:835
-msgid "E-Mail (alternativ)"
-msgstr "E-Mail (alternative)"
-
-#: ../app/controllers/shared/contacts.php:838
-msgid "Objekname"
-msgstr "Object name"
-
-#: ../app/controllers/shared/modul.php:150
-#: ../app/views/search/module/_modul.php:4
-#: ../app/views/search/module/_modul.php:5
-#: ../app/views/search/studiengaenge/_studiengang.php:25
-#: ../app/views/search/studiengaenge/verlauf.php:72
-#: ../app/views/search/studiengaenge/verlauf.php:73
-#: ../app/views/search/studiengaenge/verlauf.php:110
-#: ../app/views/search/studiengaenge/verlauf.php:111
-#: ../app/views/shared/version/_versionmodule.php:81
-msgid "Vollständige Modulbeschreibung"
-msgstr "Complete module description"
-
-#: ../app/controllers/shared/download.php:87
-msgid "Modulhandbuch"
-msgstr ""
-
-#: ../app/controllers/api/oauth.php:79
-msgid "Sie haben der Applikation Zugriff auf Ihre Daten gewährt."
-msgstr "You granted the app permission to access your personal information."
-
-#: ../app/controllers/api/oauth.php:91
-#, php-format
-msgid "\"%s\" bittet um Zugriff"
-msgstr "\"%s\" is asking for access"
-
-#: ../app/controllers/api/authorizations.php:20
-#: ../app/views/api/authorizations/index.php:7
-msgid "Applikationen"
-msgstr "Applications"
-
-#: ../app/controllers/api/authorizations.php:23
-#: ../app/controllers/api/authorizations.php:36
-#: ../app/controllers/admin/api.php:22
-msgid "Website"
-msgstr "Website"
-
-#: ../app/controllers/api/authorizations.php:24
-#: ../app/controllers/api/authorizations.php:37
-#: ../app/controllers/admin/api.php:23
-msgid "Herkömmliches Desktopprogramm"
-msgstr "Conventional desktop software"
-
-#: ../app/controllers/api/authorizations.php:25
-#: ../app/controllers/api/authorizations.php:38
-#: ../app/controllers/admin/api.php:24
-msgid "Mobile App"
-msgstr "Mobile app"
-
-#: ../app/controllers/api/authorizations.php:43
-msgid "Dies sind die Apps, die Zugriff auf Ihren Account haben."
-msgstr "These are the apps that have access to your account."
-
-#: ../app/controllers/api/authorizations.php:55
-msgid "Der Applikation wurde der Zugriff auf Ihre Daten untersagt."
-msgstr "App cannot access your account."
-
-#: ../app/controllers/resources/messages.php:31
-msgid "Rundmails senden"
-msgstr "Send circular mail"
-
-#: ../app/controllers/resources/messages.php:74
-msgid "Die Raumauswahl ist ungültig!"
-msgstr "The room selection is invalid!"
-
-#: ../app/controllers/resources/messages.php:81
-msgid "Der Empfängerkreis ist ungültig!"
-msgstr "The recipient list is invalid!"
-
-#: ../app/controllers/resources/messages.php:95
-msgid "Die Rechtestufe ist ungültig!"
-msgstr "The permission level is invalid!"
-
-#: ../app/controllers/resources/messages.php:117
-msgid "Der Startzeitpunkt konnte nicht verarbeitet werden!"
-msgstr "The start time could not be processed!"
-
-#: ../app/controllers/resources/messages.php:125
-msgid "Der Endzeitpunkt konnte nicht verarbeitet werden!"
-msgstr "The end time could not be processed!"
-
-#: ../app/controllers/resources/messages.php:156
-msgid "Es konnte keine Raumliste erstellt werden!"
-msgstr "No room list could be created!"
-
-#: ../app/controllers/resources/messages.php:225
-msgid "Für die gewählten Räume gibt es keine Empfänger!"
-msgstr "No recipients exist for the selected rooms!"
-
-#: ../app/controllers/resources/admin.php:52
-#: ../app/controllers/resources/admin.php:219
-#: ../app/controllers/resources/room_planning.php:479
-#: ../app/controllers/resources/resource.php:227
-#: ../app/controllers/resources/room_request.php:630
-#: ../app/controllers/resources/room_request.php:661
-#: ../app/controllers/resources/room_request.php:885
-#: ../app/controllers/resources/room_request.php:2413
-#: ../app/controllers/resources/booking.php:127
-#: ../app/controllers/resources/export.php:368
-msgid "Die angegebene Ressource wurde nicht gefunden!"
-msgstr "The specified resource could not be found!"
-
-#: ../app/controllers/resources/admin.php:87
-msgid "Sperrung hinzufügen"
-msgstr "Add lock"
-
-#: ../app/controllers/resources/admin.php:129
-msgid "Suche nach einer Person"
-msgstr "Person search"
-
-#: ../app/controllers/resources/admin.php:131
-msgid "Name oder Nutzername der Person"
-msgstr "Name or username of the person"
-
-#: ../app/controllers/resources/admin.php:143
-#, php-format
-msgid "Berechtigungen für %s"
-msgstr "Permissions for %s"
-
-#: ../app/controllers/resources/admin.php:209
-msgid "Die angegebene Person wurde nicht gefunden!"
-msgstr "The specified person could not be found!"
-
-#: ../app/controllers/resources/admin.php:272
-msgid "Neue Kategorie"
-msgstr "New category"
-
-#: ../app/controllers/resources/admin.php:286
-msgid "Es wurden keine Kategorien gefunden!"
-msgstr "No category could be found!"
-
-#: ../app/controllers/resources/admin.php:303
-msgid "Eigenschaft hinzufügen"
-msgstr "Add property"
-
-#: ../app/controllers/resources/admin.php:409
-#, php-format
-msgid "Die neue Eigenschaftsgruppe mit dem Namen %s wurde angelegt!"
-msgstr "The new property group with the name %s has been created!"
-
-#: ../app/controllers/resources/admin.php:417
-#, php-format
-msgid "Fehler beim Anlegen der Eigenschaftsgruppe %s!"
-msgstr "Error while creating the property group %s!"
-
-#: ../app/controllers/resources/admin.php:561
-#, php-format
-msgid "Der teilbare Raum %s wurde gelöscht!"
-msgstr "The separable room %s has been deleted!"
-
-#: ../app/controllers/resources/admin.php:568
-#: ../app/controllers/resources/admin.php:589
-#, php-format
-msgid "Fehler beim Löschen des teilbaren Raumes %s!"
-msgstr "Error while deleting the separable room %s!"
-
-#: ../app/controllers/resources/admin.php:575
-#: ../app/controllers/resources/admin.php:938
-msgid "Der gewählte teilbare Raum wurde nicht gefunden!"
-msgstr "The specified separable room could not be found!"
-
-#: ../app/controllers/resources/admin.php:603
-#, php-format
-msgid "%d teilbare Räume wurden nicht gefunden!"
-msgstr "%d separable rooms could not be found!"
-
-#: ../app/controllers/resources/admin.php:612
-msgid "Der folgende Fehler trat beim Löschen mehrerer teilbarer Räume auf:"
-msgid_plural ""
-"Die folgenden Fehler traten beim Löschen mehrerer teilbarer Räume auf:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/admin.php:645
-#: ../app/controllers/resources/admin.php:686
-#, php-format
-msgid "Der Raum %1$s wurde aus dem teilbaren Raum %2$s gelöscht!"
-msgstr "The room %1$s has been deleted from the separable room %2$s!"
-
-#: ../app/controllers/resources/admin.php:653
-#: ../app/controllers/resources/admin.php:694
-#, php-format
-msgid "Fehler beim Löschen des Raumes %1$s aus dem teilbaren Raum %2$s!"
-msgstr "Error while deleting the room %1$s from the separable room %2$s!"
-
-#: ../app/controllers/resources/admin.php:661
-msgid "Der gewählte Raumteil wurde nicht gefunden!"
-msgstr "The selected room part could not be found!"
-
-#: ../app/controllers/resources/admin.php:710
-#, php-format
-msgid "%d Raumteile wurden nicht gefunden!"
-msgstr "%d room parts could not be found!"
-
-#: ../app/controllers/resources/admin.php:719
-msgid "Der folgende Fehler trat beim Löschen mehrerer Raumteile auf:"
-msgid_plural ""
-"Die folgenden Fehler traten beim Löschen mehrerer Raumeteile auf:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/admin.php:774
-#: ../app/controllers/resources/admin.php:860
-#, php-format
-msgid ""
-"Teilbare Räume dürfen nur aus Raum-Objekten bestehen! %d ausgewählte Objekte "
-"sind keine Räume!"
-msgstr ""
-"Separable rooms may only consist of room objects! %d selected objects are no "
-"rooms!"
-
-#: ../app/controllers/resources/admin.php:831
-msgid "Der teilbare Raum konnte nicht korrekt gespeichert werden!"
-msgstr "The separable room could not be saved correctly!"
-
-#: ../app/controllers/resources/admin.php:916
-#, php-format
-msgid "Der Raum %1$s ist bereits Teil des teilbaren Raumes %2$s!"
-msgstr "The room %1$s is already a part of the separable room %2$s!"
-
-#: ../app/controllers/resources/admin.php:928
-#, php-format
-msgid "Fehler beim Zuordnen des Raumteiles %1$s zum teilbaren Raum %2$s!"
-msgstr "Error while assigning the room part %1$s to the separable room %2$s!"
-
-#: ../app/controllers/resources/admin.php:943
-msgid "Es wurde kein teilbarer Raum ausgewählt!"
-msgstr "No separable room has been selected!"
-
-#: ../app/controllers/resources/admin.php:1059
-msgid "Die Startuhrzeit für den Belegungsplan ist im falschen Format!"
-msgstr "The start time for the booking plan is in the wrong format!"
-
-#: ../app/controllers/resources/admin.php:1065
-msgid "Die Enduhrzeit für den Belegungsplan ist im falschen Format!"
-msgstr "The end time for the booking plan is in the wrong format!"
-
-#: ../app/controllers/resources/admin.php:1074
-msgid ""
-"Die Startuhrzeit für den Belegungsplan darf nicht hinter der Enduhrzeit "
-"liegen!"
-msgstr "The start time for the booking plan must not lie after the end time!"
-
-#: ../app/controllers/resources/admin.php:1087
-#, php-format
-msgid "Der Farbwert für %s ist ungültig!"
-msgstr "The colour value for %s is invalid!"
-
-#: ../app/controllers/resources/admin.php:1108
-#, php-format
-msgid "Fehler beim Speichern des Farbwertes für %s!"
-msgstr "Error while saving the colour value for %s!"
-
-#: ../app/controllers/resources/admin.php:1181
-msgid "Die Konfigurationsoptionen wurden gespeichert!"
-msgstr "The configuration options have been saved!"
-
-#: ../app/controllers/resources/room_group.php:108
-#: ../app/controllers/resources/room_group.php:144
-msgid "Berechtigungen setzen"
-msgstr "Set permissions"
-
-#: ../app/controllers/resources/room_group.php:114
-#: ../app/controllers/resources/room_group.php:119
-msgid ""
-"Sie benötigen globale Admin-Rechte in der Raumverwaltung, um diese Aktion "
-"aufrufen zu können!"
-msgstr ""
-"You need global admin permissions in the room management system to access "
-"this action!"
-
-#: ../app/controllers/resources/room_group.php:134
-#: ../app/controllers/resources/print.php:152
-#: ../app/controllers/resources/room_request.php:144
-#: ../app/controllers/room_management/planning.php:581
-msgid "Die gewählte Raumgruppe wurde nicht gefunden!"
-msgstr "The selected room group could not be found!"
-
-#: ../app/controllers/resources/room_group.php:156
-#: ../app/controllers/room_management/planning.php:666
-msgid "Es wurden keine Räume ausgewählt!"
-msgstr "No rooms have been selected!"
-
-#: ../app/controllers/resources/room_group.php:164
-msgid "Die Raumgruppe enthält keine Räume!"
-msgstr "The room group doesn't contain rooms!"
-
-#: ../app/controllers/resources/room_group.php:187
-msgid "Die gemeinsamen Berechtigungen wurden gelöscht!"
-msgstr "The common permissions have been deleted!"
-
-#: ../app/controllers/resources/room_group.php:191
-msgid "Die gemeinsamen Berechtigungen konnten nicht gelöscht werden!"
-msgstr "The common permissions could not be deleted!"
-
-#: ../app/controllers/resources/room_group.php:225
-#, php-format
-msgid "Es wurde eine ungültige Berechtigungsstufe angegeben (%s)."
-msgstr "An invalid permission level has been specified (%s)."
-
-#: ../app/controllers/resources/room_group.php:258
-#, php-format
-msgid ""
-"Die Berechtigungen von %1$s am Raum %2$s konnten nicht gespeichert werden!"
-msgstr "The permissions of %1$s for the room %2$s could not be saved!"
-
-#: ../app/controllers/resources/room_group.php:303
-msgid "Die folgenden Fehler traten auf:"
-msgstr "The follwing errors occurred:"
-
-#: ../app/controllers/resources/room_group.php:308
-#: ../app/controllers/resources/resource.php:811
-#: ../app/controllers/resources/resource.php:1175
-msgid "Die Berechtigungen wurden gespeichert!"
-msgstr "The permissions have been saved!"
-
-#: ../app/controllers/resources/building.php:40
-#: ../app/views/resources/building/_add_edit_form.php:32
-msgid "Gebäudenummer"
-msgstr "Building number"
-
-#: ../app/controllers/resources/building.php:43
-#: ../app/views/oer/admin/hosts.php:8
-#: ../app/views/resources/building/_add_edit_form.php:36
-#: ../app/views/resources/_common/building.php:14
-#: ../app/views/resources/_common/location.php:9
-#: ../app/views/room_management/overview/locations.php:6
-#: ../app/views/room_management/overview/buildings.php:21
-msgid "Adresse"
-msgstr "Address"
-
-#: ../app/controllers/resources/building.php:71
-msgid "Gebäude bearbeiten"
-msgstr "Edit building"
-
-#: ../app/controllers/resources/building.php:79
-#: ../app/controllers/resources/location.php:100
-#: ../app/controllers/resources/room.php:128
-msgid "Rechte bearbeiten"
-msgstr "Edit permissions"
-
-#: ../app/controllers/resources/building.php:90
-#: ../app/controllers/resources/location.php:111
-msgid "Lageplan anzeigen"
-msgstr "Show map"
-
-#: ../app/controllers/resources/building.php:108
-#: ../app/controllers/resources/building.php:358
-msgid "Gebäude hinzufügen"
-msgstr "Add building"
-
-#: ../app/controllers/resources/building.php:118
-#: ../app/controllers/resources/location.php:141
-msgid "Es sind keine Gebäudekategorien eingerichtet!"
-msgstr "No building categories are set up!"
-
-#: ../app/controllers/resources/building.php:131
-#: ../app/controllers/resources/building.php:404
-#: ../app/controllers/resources/building.php:442
-msgid "Das angegebene Gebäude wurde nicht gefunden!"
-msgstr "The specified building could not be found!"
-
-#: ../app/controllers/resources/building.php:144
-msgid "Bitte wählen Sie eine Gebäudekategorie aus!"
-msgstr "Please select a building category!"
-
-#: ../app/controllers/resources/building.php:151
-msgid "Die gewählte Gebäudekategorie wurde nicht gefunden!"
-msgstr "The selected building category could not be found!"
-
-#: ../app/controllers/resources/building.php:164
-#: ../app/controllers/resources/location.php:164
-#: ../app/controllers/resources/room.php:217
-#, php-format
-msgid "%s: Bearbeiten"
-msgstr "%s: Edit"
-
-#: ../app/controllers/resources/building.php:214
-msgid "Der Name des Gebäudes ist leer!"
-msgstr "The name of the building is empty!"
-
-#: ../app/controllers/resources/building.php:220
-msgid "Es wurde keine Hierarchieebene ausgewählt!"
-msgstr "No hierarchy level has been selected!"
-
-#: ../app/controllers/resources/building.php:226
-msgid "Die gewählte Hierarchieebene wurde nicht gefunden!"
-msgstr "The selected hierarchy level could not be found!"
-
-#: ../app/controllers/resources/building.php:310
-msgid "Das Gebäude wurde gespeichert!"
-msgstr "The building has been saved!"
-
-#: ../app/controllers/resources/building.php:317
-#, php-format
-msgid ""
-"Das Gebäude wurde gespeichert, aber eine Eigenschaft konnte nicht "
-"gespeichert werden!"
-msgid_plural ""
-"Das Gebäude wurde gespeichert, aber %d Eigenschaften konnten nicht "
-"gespeichert werden!"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/building.php:326
-msgid "Fehler beim Speichern des Gebäudes!"
-msgstr "Error while saving the building!"
-
-#: ../app/controllers/resources/building.php:374
-msgid "Die gewählte Kategorie ist für Gebäude nicht geeignet!"
-msgstr "The selected category is not suitable for buildings!"
-
-#: ../app/controllers/resources/building.php:408
-#: ../app/controllers/resources/location.php:166
-#: ../app/controllers/resources/room.php:219
-#, php-format
-msgid "%s: Löschen"
-msgstr "%s: Delete"
-
-#: ../app/controllers/resources/building.php:424
-msgid "Das Gebäude wurde gelöscht!"
-msgstr "The building has been deleted!"
-
-#: ../app/controllers/resources/building.php:426
-msgid "Fehler beim Löschen des Gebaüdes!"
-msgstr "Error while deleting the building!"
-
-#: ../app/controllers/resources/building.php:449
-#, php-format
-msgid "Gebäude %s sperren"
-msgstr "Lock building %s"
-
-#: ../app/controllers/resources/building.php:497
-#: ../app/controllers/resources/building.php:504
-msgid "Das Gebäude konnte nicht gesperrt werden!"
-msgstr "The building could not be locked!"
-
-#: ../app/controllers/resources/building.php:513
-#, php-format
-msgid "Das Gebäude wurde im Zeitraum von %1$s bis %2$s gesperrt!"
-msgstr "The building has been locked from %1$s to %2$s!"
-
-#: ../app/controllers/resources/print.php:36
-#: ../app/controllers/resources/resource.php:90
-#: ../app/controllers/resources/booking.php:1487
-msgid "Die Ressource wurde nicht gefunden!"
-msgstr "The resource could not be found!"
-
-#: ../app/controllers/resources/print.php:46
-#, php-format
-msgid "Individueller Belegungsdruck: %s"
-msgstr "Individual booking plan: %s"
-
-#: ../app/controllers/resources/print.php:66
-#: ../app/controllers/resources/room_planning.php:223
-#: ../app/controllers/resources/room_planning.php:597
-#: ../app/controllers/resources/resource.php:500
-#: ../app/controllers/room_management/planning.php:49
-#: ../app/controllers/room_management/planning.php:312
-msgid "Standard Zeitfenster"
-msgstr "Standard timeframe"
-
-#: ../app/controllers/resources/print.php:78
-#: ../app/controllers/resources/room_planning.php:235
-#: ../app/controllers/resources/room_planning.php:609
-#: ../app/controllers/resources/resource.php:512
-#: ../app/controllers/room_management/planning.php:61
-#: ../app/controllers/room_management/planning.php:326
-msgid "Ganztägiges Zeitfenster"
-msgstr "All-day timeframe"
-
-#: ../app/controllers/resources/print.php:98
-#: ../app/controllers/admin/courseplanning.php:399
-msgid "Farbwähler"
-msgstr "Colour selector"
-
-#: ../app/controllers/resources/print.php:208
-#: ../app/controllers/resources/room_planning.php:692
-#: ../app/controllers/course/details.php:216
-#: ../app/views/resources/print/clipboard_rooms.php:43
-#: ../app/views/resources/room_planning/semester_plan.php:159
-#: ../app/views/messages/read.php:95
-msgid "Drucken"
-msgstr "Print"
-
-#: ../app/controllers/resources/category.php:42
-#: ../app/views/resources/admin/categories.php:48
-msgid "Details anzeigen"
-msgstr ""
-
-#: ../app/controllers/resources/category.php:100
-#: ../app/controllers/resources/category.php:264
-#: ../app/routes/ResourceCategories.php:94
-msgid "Der Name der Kategorie ist leer!"
-msgstr "The name of the category is empty!"
-
-#: ../app/controllers/resources/category.php:107
-#: ../app/controllers/resources/category.php:271
-#: ../app/routes/ResourceCategories.php:102
-msgid "Es wurde keine gültige Ressourcen-Datenklasse ausgewählt!"
-msgstr "No valid resource data class has been selected!"
-
-#: ../app/controllers/resources/category.php:116
-#: ../app/controllers/resources/category.php:280
-msgid "Der Klassenname darf bei Systemkategorien nicht geändert werden!"
-msgstr "The class name of system categories must not be modified!"
-
-#: ../app/controllers/resources/category.php:142
-#: ../app/controllers/resources/category.php:306
-msgid ""
-"Die folgenden Systemeigenschaften sind zwingend erforderlich und können "
-"nicht entfernt werden:"
-msgstr "The following system properties are mandatory and cannot be removed:"
-
-#: ../app/controllers/resources/category.php:195
-#: ../app/controllers/resources/category.php:364
-msgid "Die Kategorie wurde gespeichert!"
-msgstr "The category has been saved!"
-
-#: ../app/controllers/resources/category.php:197
-#: ../app/controllers/resources/category.php:366
-#: ../app/routes/ResourceCategories.php:163
-msgid "Fehler beim Speichern der Kategorie!"
-msgstr "Error while saving the category!"
-
-#: ../app/controllers/resources/category.php:212
-#: ../app/controllers/resources/category.php:388
-#: ../app/controllers/resources/category.php:486
-msgid "Die angegebene Kategorie wurde nicht gefunden!"
-msgstr "The specified category could not be found!"
-
-#: ../app/controllers/resources/category.php:397
-msgid "Systemkategorien dürfen nicht gelöscht werden!"
-msgstr "System categories must not be deleted!"
-
-#: ../app/controllers/resources/category.php:415
-msgid ""
-"Die Kategorie darf nicht gelöscht werden, da es keine alternative Kategorie "
-"für die Ressourcenklasse gibt, der die Ressourcen dieser Kategorie "
-"zugewiesen werden könnten!"
-msgstr ""
-"The category must not be deleted since there is no alternative category for "
-"the resource class to which the resources of this category can be assigned!"
-
-#: ../app/controllers/resources/category.php:439
-msgid "Die gewählte Kategorie wurde nicht gefunden!"
-msgstr "The selected category could not be found!"
-
-#: ../app/controllers/resources/category.php:446
-#, php-format
-msgid ""
-"Die gewählte Kategorie gehört nicht zur Ressourcenklasse %1$s, sondern zur "
-"Klasse %2$s!"
-msgstr ""
-"The selected category doesn't belong to the resource class %1$s but to the "
-"class %2$s!"
-
-#: ../app/controllers/resources/category.php:467
-msgid ""
-"Es wurde keine Behandlung für die Ressourcen ausgewählt, die der zu "
-"löschenden Kategorie zugewiesen sind!"
-msgstr ""
-"No handling has been selected for the resources that are assigned to the "
-"category that is to be deleted!"
-
-#: ../app/controllers/resources/category.php:476
-msgid "Fehler beim Löschen der Kategorie!"
-msgstr "Error while deleting the category!"
-
-#: ../app/controllers/resources/search.php:75
-msgid "Die gewählte Ressource wurde nicht in der Datenbank gefunden!"
-msgstr "The selected resource could not be found in the database!"
-
-#: ../app/controllers/resources/location.php:92
-msgid "Standort bearbeiten"
-msgstr "Edit location"
-
-#: ../app/controllers/resources/location.php:131
-#: ../app/controllers/resources/location.php:154
-msgid "Standort hinzufügen"
-msgstr "Add location"
-
-#: ../app/controllers/resources/location.php:159
-msgid "Der angegebene Standort wurde nicht gefunden!"
-msgstr "The specified location could not be found!"
-
-#: ../app/controllers/resources/location.php:217
-msgid "Der Standort wurde gelöscht!"
-msgstr "The location has been deleted!"
-
-#: ../app/controllers/resources/location.php:221
-msgid "Fehler beim Löschen des Standortes!"
-msgstr "Error while deleting the location!"
-
-#: ../app/controllers/resources/location.php:244
-msgid "Der Name des Standortes ist leer!"
-msgstr "The name of the location is empty!"
-
-#: ../app/controllers/resources/location.php:258
-msgid "Die gewählte Standortkategorie wurde nicht gefunden!"
-msgstr "The selected location category could not be found!"
-
-#: ../app/controllers/resources/location.php:327
-msgid "Der Standort wurde gespeichert!"
-msgstr "The location has been saved!"
-
-#: ../app/controllers/resources/location.php:331
-msgid ""
-"Der Standort wurde gespeichert, aber dessen folgende Eigenschaften wurden "
-"nicht gesetzt:"
-msgstr ""
-"The location has been saved, but the following properties were not set:"
-
-#: ../app/controllers/resources/location.php:337
-msgid "Fehler beim Speichern des Standortes!"
-msgstr "Error while saving the location!"
-
-#: ../app/controllers/resources/room_planning.php:49
-msgid "Es gibt kein aktuelles Semester in dieser Stud.IP-Installation!"
-msgstr "There is no current semester in this Stud.IP installation!"
-
-#: ../app/controllers/resources/room_planning.php:122
-#: ../app/controllers/resources/room_request.php:118
-#: ../app/controllers/course/room_requests.php:642
-msgid "Der gewählte Raum wurde nicht gefunden!"
-msgstr "The selected room could not be found!"
-
-#: ../app/controllers/resources/room_planning.php:132
-#: ../app/controllers/resources/resource.php:482
-#, php-format
-msgid "Belegungsplan: %s"
-msgstr "Booking plan: %s"
-
-#: ../app/controllers/resources/room_planning.php:171
-#: ../app/controllers/resources/room_planning.php:528
-#: ../app/controllers/resources/resource.php:476
-msgid "Der Belegungsplan ist für Sie nicht zugänglich!"
-msgstr "The booking plan is not accessible for you!"
-
-#: ../app/controllers/resources/room_planning.php:186
-#: ../app/controllers/resources/room_planning.php:547
-#: ../app/controllers/room_management/planning.php:191
-#: ../app/controllers/room_management/planning.php:478
-msgid ""
-"Sie sind nicht dazu berechtigt, alle Anfragen im Belegungsplan zu sehen!"
-msgstr "You are not allowed to see all requests in the booking plan!"
-
-#: ../app/controllers/resources/room_planning.php:207
-#: ../app/controllers/resources/room_planning.php:366
-#: ../app/controllers/resources/room_planning.php:582
-#: ../app/controllers/resources/room_planning.php:699
-#: ../app/views/course/room_requests/request_summary.php:29
-msgid "Anderen Raum wählen"
-msgstr "Select other room"
-
-#: ../app/controllers/resources/room_planning.php:254
-#: ../app/controllers/room_management/planning.php:198
-#: ../app/controllers/room_management/planning.php:485
-msgid "Alle Anfragen anzeigen"
-msgstr "Display all request"
-
-#: ../app/controllers/resources/room_planning.php:287
-#: ../app/controllers/resources/booking.php:686
-msgid "Neue Buchung"
-msgstr "New booking"
-
-#: ../app/controllers/resources/room_planning.php:294
-msgid "Neue Anfrage"
-msgstr "New request"
-
-#: ../app/controllers/resources/room_planning.php:304
-msgid "Belegungsplan drucken"
-msgstr "Print booking plan"
-
-#: ../app/controllers/resources/room_planning.php:310
-#: ../app/controllers/resources/resource.php:536
-msgid "Individuelle Druckansicht"
-msgstr "Individual booking plan"
-
-#: ../app/controllers/resources/room_planning.php:322
-#: ../app/controllers/resources/export.php:146
-#: ../app/views/resources/_common/_resource_tr.php:232
-msgid "Buchungen exportieren"
-msgstr "Export bookings"
-
-#: ../app/controllers/resources/room_planning.php:338
-msgid "Raumeigenschaften anzeigen"
-msgstr "Show room properties"
-
-#: ../app/controllers/resources/room_planning.php:350
-#: ../app/controllers/resources/resource.php:566
-msgid "QR-Code anzeigen"
-msgstr "Show QR code"
-
-#: ../app/controllers/resources/room_planning.php:356
-msgid "Aktueller Belegungsplan"
-msgstr "Current booking plan"
-
-#: ../app/controllers/resources/room_planning.php:389
-#: ../app/controllers/resources/room_planning.php:718
-#: ../app/controllers/resources/room_request.php:2437
-#: ../app/controllers/room_management/planning.php:230
-#: ../app/controllers/room_management/planning.php:516
-msgid "Manuelle Buchung"
-msgstr "Manual bookings"
-
-#: ../app/controllers/resources/room_planning.php:393
-#: ../app/controllers/resources/room_planning.php:722
-#: ../app/controllers/resources/room_request.php:2441
-#: ../app/controllers/room_management/planning.php:234
-#: ../app/controllers/room_management/planning.php:520
-msgid "Veranstaltungsbezogene Buchung"
-msgstr "Course-related booking"
-
-#: ../app/controllers/resources/room_planning.php:397
-#: ../app/controllers/resources/room_planning.php:726
-#: ../app/controllers/resources/room_request.php:2445
-#: ../app/controllers/resources/export.php:337
-#: ../app/controllers/resources/export.php:452
-#: ../app/controllers/room_management/planning.php:238
-#: ../app/controllers/room_management/planning.php:524
-#: ../app/views/resources/booking/_add_edit_form.php:33
-msgid "Sperrbuchung"
-msgstr "Lock booking"
-
-#: ../app/controllers/resources/room_planning.php:405
-#: ../app/controllers/resources/room_planning.php:734
-#: ../app/controllers/resources/room_request.php:2453
-#: ../app/controllers/resources/export.php:334
-#: ../app/controllers/resources/export.php:450
-#: ../app/controllers/room_management/planning.php:246
-#: ../app/controllers/room_management/planning.php:532
-#: ../app/views/resources/booking/_add_edit_form.php:27
-msgid "Reservierung"
-msgstr "Reservation"
-
-#: ../app/controllers/resources/room_planning.php:414
-#: ../app/controllers/resources/room_planning.php:741
-#: ../app/controllers/room_management/planning.php:253
-#: ../app/controllers/room_management/planning.php:539
-msgid "Geplante Buchung"
-msgstr "Planned booking"
-
-#: ../app/controllers/resources/room_planning.php:422
-#: ../app/controllers/room_management/planning.php:259
-#: ../app/controllers/room_management/planning.php:545
-#: ../app/views/course/room_requests/_request_edit_header.php:14
-msgid "Anfrage"
-msgstr "Request"
-
-#: ../app/controllers/resources/room_planning.php:423
-msgid "Eigene Anfrage"
-msgstr "Own request"
-
-#: ../app/controllers/resources/room_planning.php:488
-#, php-format
-msgid "Semester-Belegungsplan: %s"
-msgstr "Semester booking plan: %s"
-
-#: ../app/controllers/resources/room_planning.php:566
-#: ../app/controllers/resources/booking.php:1179
-#: ../app/controllers/room_management/planning.php:292
-msgid "Das ausgewählte Semester wurde nicht in der Datenbank gefunden!"
-msgstr "The selected semester could not be found in the database!"
-
-#: ../app/controllers/resources/room_planning.php:595
-#: ../app/controllers/room_management/planning.php:310
-msgid "Zeitfenster"
-msgstr "Timeframe"
-
-#: ../app/controllers/resources/room_planning.php:622
-#: ../app/controllers/room_management/planning.php:342
-#: ../app/views/admin/semester/edit.php:43
-msgid "Semesterzeitraum"
-msgstr "Semester period"
-
-#: ../app/controllers/resources/room_planning.php:624
-#: ../app/controllers/room_management/planning.php:344
-msgid "Vorlesungszeit"
-msgstr "Teaching period"
-
-#: ../app/controllers/resources/room_planning.php:638
-#: ../app/controllers/room_management/planning.php:358
-msgid "gesamtes Semester"
-msgstr "whole semester"
-
-#: ../app/controllers/resources/room_planning.php:658
-msgid "zukünftige Einzeltermine einblenden"
-msgstr "display future single dates"
-
-#: ../app/controllers/resources/room_planning.php:750
-msgid "Anfrage für regelmäßige Termine"
-msgstr "Request for regular dates"
-
-#: ../app/controllers/resources/room_planning.php:758
-msgid "Eigene Anfrage für regelmäßige Termine"
-msgstr "Own request for regular dates"
-
-#: ../app/controllers/resources/room.php:40
-#: ../app/controllers/resources/room.php:207
-#: ../app/controllers/resources/room.php:528
-msgid "Der angegebene Raum wurde nicht gefunden!"
-msgstr "The specified room was not found!"
-
-#: ../app/controllers/resources/room.php:120
-#: ../app/controllers/resources/room.php:503
-#: ../app/views/consultation/admin/ungrouped.php:75
-#: ../app/views/consultation/admin/index.php:54
-msgid "Raum bearbeiten"
-msgstr "Edit room"
-
-#: ../app/controllers/resources/room.php:139
-#: ../app/views/course/timesrooms/_roomRequest.php:27
-#: ../app/views/course/timesrooms/_roomRequestInfo.php:12
-msgid "Raumanfragen anzeigen"
-msgstr "Show room requests"
-
-#: ../app/controllers/resources/room.php:151
-#: ../app/views/resources/room/index.php:108
-#: ../app/views/resources/_common/_room_search_result.php:50
-msgid "Raum anfragen"
-msgstr "Request room"
-
-#: ../app/controllers/resources/room.php:178
-#: ../app/controllers/resources/room.php:202
-#: ../app/controllers/resources/room.php:476
-#: ../app/controllers/room_management/overview.php:347
-msgid "Raum hinzufügen"
-msgstr "Add room"
-
-#: ../app/controllers/resources/room.php:190
-msgid "Es sind keine Raumkategorien eingerichtet!"
-msgstr "No room categories are set up!"
-
-#: ../app/controllers/resources/room.php:251
-#: ../app/controllers/course/room_requests.php:381
-#: ../app/controllers/course/room_requests.php:438
-msgid "Die gewählte Raumkategorie wurde nicht gefunden!"
-msgstr "The specified room category could not be found!"
-
-#: ../app/controllers/resources/room.php:307
-msgid "Der Raum wurde keinem Gebäude zugeordnet!"
-msgstr "The room was not assigned to a building!"
-
-#: ../app/controllers/resources/room.php:318
-msgid ""
-"Unzureichende Berechtigungen zum Anlegen eines Raumes in der gewählten "
-"Hierarchie!"
-msgstr "Insufficient permissions to create a room in the selected hierarchy!"
-
-#: ../app/controllers/resources/room.php:328
-#: ../app/controllers/resources/room.php:492
-msgid "Die gewählte Kategorie ist für Räume nicht geeignet!"
-msgstr "The selected category is not suitable for rooms!"
-
-#: ../app/controllers/resources/room.php:336
-msgid "Der Name des Raumes ist leer!"
-msgstr "The name of the room is empty!"
-
-#: ../app/controllers/resources/room.php:343
-msgid "Die Anzahl der Sitzplätze darf nicht negativ sein!"
-msgstr "The amount of seats must not be negative!"
-
-#: ../app/controllers/resources/room.php:418
-msgid "Der Raum wurde gespeichert!"
-msgstr "The room has been saved!"
-
-#: ../app/controllers/resources/room.php:425
-#, php-format
-msgid ""
-"Der Raum wurde gespeichert, aber die Eigenschaft %s konnte wegen fehlender "
-"Berechtigungen nicht gespeichert werden!"
-msgstr ""
-"The room has been saved, but the property %s could not be saved due to "
-"insufficient permissions!"
-
-#: ../app/controllers/resources/room.php:431
-msgid ""
-"Der Raum wurde gespeichert, aber die folgenden Eigenschaften konnten wegen "
-"fehlender Berechtigungen nicht gespeichert werden:"
-msgstr ""
-"The room has been saved, but the following properties could not be saved due "
-"to insufficient permissions:"
-
-#: ../app/controllers/resources/room.php:437
-msgid "Fehler beim Speichern des Raumes!"
-msgstr "Error while saving the room!"
-
-#: ../app/controllers/resources/room.php:444
-msgid "Der Raum wurde gelöscht!"
-msgstr "The room has been deleted!"
-
-#: ../app/controllers/resources/room.php:448
-msgid "Fehler beim Löschen des Raumes!"
-msgstr "Error while deleting the room!"
-
-#: ../app/controllers/resources/room.php:510
-msgid "Raum löschen"
-msgstr "Delete room"
-
-#: ../app/controllers/resources/room.php:523
-msgid "Raum zuweisen"
-msgstr "Assign room"
-
-#: ../app/controllers/resources/room.php:542
-msgid "Die angegebene Raumanfrage wurde nicht gefunden!"
-msgstr "The specified room request could not be found!"
-
-#: ../app/controllers/resources/room.php:567
-#, php-format
-msgid "Am %1$s zwischen %2$s Uhr und %3$s Uhr"
-msgstr "On %1$s between %2$s and %3$s"
-
-#: ../app/controllers/resources/room.php:578
-#, php-format
-msgid "Der Raum %1$s wurde zu folgenden Zeiten gebucht:"
-msgstr "The room %1$s has been booked for the following periods:"
-
-#: ../app/controllers/resources/room.php:586
-#, php-format
-msgid "Fehler beim Buchen des Raumes %1$s!"
-msgstr "Error while booking the room %1$s!"
-
-#: ../app/controllers/resources/resource.php:67
-#: ../app/controllers/resources/booking.php:1473
-msgid "Es konnten keine Ressourcen gefunden werden!"
-msgstr "No resources could be found!"
-
-#: ../app/controllers/resources/resource.php:134
-#, php-format
-msgid "%s: Unzureichende Berechtigungen für die gewählte Aktion!"
-msgstr "%s: Insufficient permissions for the selected action!"
-
-#: ../app/controllers/resources/resource.php:141
-#, php-format
-msgid "Unzureichende Berechtigungen für die gewählte Aktion!"
-msgstr "Insufficient permissions for the selected action!"
-
-#: ../app/controllers/resources/resource.php:176
-#: ../app/controllers/resources/resource.php:449
-msgid ""
-"Diese Aktion kann nur für einzelne Ressourcen oder Räume verwendet werden!"
-msgstr "This action can only be used with single resources or rooms!"
-
-#: ../app/controllers/resources/resource.php:302
-msgid "Die gewählte Kategorie ist für Ressourcen nicht geeignet!"
-msgstr "The selected category is not suitable for resources!"
-
-#: ../app/controllers/resources/resource.php:310
-msgid "Der Name des Ressource ist leer!"
-msgstr "The name of the resource is empty!"
-
-#: ../app/controllers/resources/resource.php:347
-msgid "Die Ressource wurde gespeichert!"
-msgstr "The resource has been saved!"
-
-#: ../app/controllers/resources/resource.php:354
-#, php-format
-msgid ""
-"Die Ressource wurde gespeichert, aber die Eigenschaft %s konnte wegen "
-"fehlender Berechtigungen nicht gespeichert werden!"
-msgstr ""
-"The resource has been saved, but the property %s could not be saved due to "
-"insufficient permissions!"
-
-#: ../app/controllers/resources/resource.php:360
-msgid ""
-"Die Ressource wurde gespeichert, aber die folgenden Eigenschaften konnten "
-"wegen fehlender Berechtigungen nicht gespeichert werden:"
-msgstr ""
-"The resource has been saved, but the following properties could not be saved "
-"due to insufficient permissions:"
-
-#: ../app/controllers/resources/resource.php:366
-msgid "Fehler beim Speichern der Ressource!"
-msgstr "Error while saving the resource!"
-
-#: ../app/controllers/resources/resource.php:373
-msgid "Die Ressource wurde gelöscht!"
-msgstr "The resource has been deleted!"
-
-#: ../app/controllers/resources/resource.php:377
-msgid "Fehler beim Löschen der Ressource!"
-msgstr "Error while deleting the resource!"
-
-#: ../app/controllers/resources/resource.php:406
-msgid "Die gewählte Ressourcenkategorie wurde nicht gefunden!"
-msgstr "The selected resource category could not be found!"
-
-#: ../app/controllers/resources/resource.php:412
-#, php-format
-msgid "Kategorie %s: Ressource hinzufügen"
-msgstr "Category %s: Add resource"
-
-#: ../app/controllers/resources/resource.php:425
-#, php-format
-msgid "%s: bearbeiten"
-msgstr "%s: edit"
-
-#: ../app/controllers/resources/resource.php:438
-#, php-format
-msgid "%s: löschen"
-msgstr "%s: delete"
-
-#: ../app/controllers/resources/resource.php:549
-msgid "Als Tabelle exportieren"
-msgstr "Export as table"
-
-#: ../app/controllers/resources/resource.php:589
-msgid "Sperrbuchungen"
-msgstr "Lock bookings"
-
-#: ../app/controllers/resources/resource.php:593
-msgid "Rüstzeiten"
-msgstr "Preparation time"
-
-#: ../app/controllers/resources/resource.php:597
-msgid "Reservierungen"
-msgstr "Reservations"
-
-#: ../app/controllers/resources/resource.php:606
-#: ../app/views/resources/_common/_resource_tr.php:184
-msgid "Berechtigungen verwalten"
-msgstr "Manage permissions"
-
-#: ../app/controllers/resources/resource.php:611
-#: ../app/controllers/resources/resource.php:851
-#: ../app/controllers/resources/resource.php:1211
-#: ../app/controllers/resources/resource.php:1414
-msgid "Diese Aktion kann nur für einzelne Ressourcen verwendet werden!"
-msgstr "This action can only be used for single resources!"
-
-#: ../app/controllers/resources/resource.php:627
-#, php-format
-msgid "%s: Berechtigungen verwalten"
-msgstr "%s: Manage permissions"
-
-#: ../app/controllers/resources/resource.php:685
-#: ../app/controllers/resources/resource.php:1007
-#, php-format
-msgid "%d Berechtigung wurde gelöscht!"
-msgid_plural "%d Berechtigungen wurden gelöscht!"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/resource.php:747
-#: ../app/controllers/resources/resource.php:1127
-#, php-format
-msgid "Die globalen Berechtigungen von %s konnten nicht gespeichert werden!"
-msgstr "The global permissions of %s could not be saved!"
-
-#: ../app/controllers/resources/resource.php:754
-#: ../app/controllers/resources/resource.php:1134
-#, php-format
-msgid ""
-"Die Berechtigungen von %1$s an der Ressource %2$s konnten nicht gespeichert "
-"werden!"
-msgstr "The permissions of %1$s for the resource %2$s could not be saved!"
-
-#: ../app/controllers/resources/resource.php:806
-#: ../app/controllers/resources/resource.php:1170
-msgid "Die folgenden Fehler traten auf beim Speichern der Berechtigungen:"
-msgstr "The following errors occurred while saving the permissions:"
-
-#: ../app/controllers/resources/resource.php:846
-#: ../app/views/resources/_common/_resource_tr.php:190
-msgid "Temporäre Berechtigungen verwalten"
-msgstr "Manage temporary permissions"
-
-#: ../app/controllers/resources/resource.php:862
-#, php-format
-msgid "%s: Temporäre Berechtigungen verwalten"
-msgstr "%s: Manage temporary permissions"
-
-#: ../app/controllers/resources/resource.php:935
-msgid "Der Startzeitpunkt ist in einem ungültigen Format!"
-msgstr "The start time is in an invalid format!"
-
-#: ../app/controllers/resources/resource.php:942
-msgid "Der Endzeitpunkt ist in einem ungültigen Format!"
-msgstr "The end time is in an invalid format!"
-
-#: ../app/controllers/resources/resource.php:980
-msgid "Fehler beim Speichern der Berechtigungen!"
-msgstr "Error while saving the permissions!"
-
-#: ../app/controllers/resources/resource.php:984
-msgid "Es konnten nicht alle Berechtigungen gespeichert werden!"
-msgstr "Not all permissions could be saved!"
-
-#: ../app/controllers/resources/resource.php:988
-msgid "Die Änderung der Zeitbereiche der Berechtigungen wurden gespeichert!"
-msgstr "The changes to the time ranges of the permission has been saved!"
-
-#: ../app/controllers/resources/resource.php:1224
-msgid "Es wurde kein passender Buchungstyp angegeben!"
-msgstr "No valid booking type has been specified!"
-
-#: ../app/controllers/resources/resource.php:1232
-#, php-format
-msgid "%s: Reservierung erstellen"
-msgstr "%s: Create reservation"
-
-#: ../app/controllers/resources/resource.php:1239
-#, php-format
-msgid "%s: Sperrbuchung erstellen"
-msgstr "%s: Create lock booking"
-
-#: ../app/controllers/resources/resource.php:1310
-#, php-format
-msgid ""
-"%1$s: Die Sperrbuchung für den Zeitraum von %2$s bis %3$s wurde gespeichert!"
-msgstr ""
-"%1$s: The lock booking for the time range from %2$s to %3$s has been saved!"
-
-#: ../app/controllers/resources/resource.php:1384
-#, php-format
-msgid ""
-"Eine Buchung wurde im Zeitbereich von %1$s, %2$s Uhr bis zum %3$s, %4$s Uhr "
-"gelöscht!"
-msgid_plural ""
-"%5$d Buchungen wurde im Zeitbereich von %1$s, %2$s Uhr bis zum %3$s, %4$s "
-"Uhr gelöscht!"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/resource.php:1398
-#, php-format
-msgid ""
-"Die Buchungen im Zeitbereich von %1$s, %2$s Uhr bis %3$s, %4$s Uhr konnten "
-"nicht gelöscht werden!"
-msgstr ""
-"The bookings in the time range from %1$s, %2$s to %3$s, %4$s could not be "
-"deleted!"
-
-#: ../app/controllers/resources/resource.php:1442
-#, php-format
-msgid "Der Dateiordner zur Ressource %1$s konnte nicht gefunden werden!"
-msgstr "The folder for the resource %1$s could not be found!"
-
-#: ../app/controllers/resources/resource.php:1451
-msgid "Sie sind nicht berechtigt, den Inhalt dieses Ordners zu sehen!"
-msgstr "You are not allowed to see the content of this folder!"
-
-#: ../app/controllers/resources/resource.php:1463
-#: ../app/controllers/course/files.php:85
-#: ../app/controllers/institute/files.php:77 ../app/controllers/files.php:116
-#: ../app/views/resources/resource/files.php:75 ../app/views/files/index.php:75
-msgid "Dokument hinzufügen"
-msgstr "Add document"
-
-#: ../app/controllers/resources/resource.php:1472
-#: ../app/controllers/files.php:155
-msgid "Dateien hinzufügen"
-msgstr "Add files"
-
-#: ../app/controllers/resources/room_request.php:34
-msgid ""
-"Ihre Berechtigungen an Räumen reichen nicht aus, um die Anfrageliste "
-"anzeigen zu können!"
-msgstr "Your permissions on rooms are insufficient to view the request list!"
-
-#: ../app/controllers/resources/room_request.php:125
-#: ../app/controllers/resources/room_request.php:1517
-#: ../app/controllers/resources/room_request.php:1539
-#: ../app/controllers/resources/room_request.php:2109
-#: ../app/views/resources/room_request/planning.php:129
-#, php-format
-msgid "Es wurde kein Raum ausgewählt!"
-msgstr "No room has been selected!"
-
-#: ../app/controllers/resources/room_request.php:132
-#, php-format
-msgid ""
-"Die Berechtigungen für den Raum %s sind nicht ausreichend, um die "
-"Anfrageliste anzeigen zu können!"
-msgstr ""
-"The permissions for the room %s are insufficient to view the request list!"
-
-#: ../app/controllers/resources/room_request.php:151
-#: ../app/views/room_management/planning/semester_plan.php:7
-#: ../app/views/room_management/planning/index.php:7
-msgid "Die gewählte Raumgruppe enthält keine Räume!"
-msgstr "The selected room group doesn't contain rooms!"
-
-#: ../app/controllers/resources/room_request.php:391
-#: ../app/controllers/resources/room_request.php:2310
-#: ../app/views/shared/filter.php:4 ../app/views/news/admin_news.php:57
-#: ../app/views/admin/cronjobs/schedules/index.php:52
-#: ../app/views/admin/cronjobs/logs/index.php:57
-msgid "Filter zurücksetzen"
-msgstr "Reset filters"
-
-#: ../app/controllers/resources/room_request.php:416
-#: ../app/controllers/resources/room_request.php:2335
-#: ../app/controllers/admin/courseplanning.php:666
-#: ../app/controllers/admin/courses.php:1453
-#: ../app/views/admin/courses/sidebar.php:35
-msgid "Veranstaltungstypfilter"
-msgstr "Course type filter"
-
-#: ../app/controllers/resources/room_request.php:459
-#: ../app/views/resources/export/select_booking_sources.php:83
-msgid "Raumgruppen"
-msgstr "Room groups"
-
-#: ../app/controllers/resources/room_request.php:491
-#: ../app/views/resources/category/delete.php:30
-msgid "bitte wählen"
-msgstr "please select"
-
-#: ../app/controllers/resources/room_request.php:508
-#: ../app/controllers/resources/room_request.php:595
-#: ../app/controllers/resources/room_request.php:2380
-msgid "Alle Anfragen"
-msgstr "All requests"
-
-#: ../app/controllers/resources/room_request.php:513
-#: ../app/controllers/resources/room_request.php:2385
-msgid "Nur markierte Anfragen"
-msgstr "Only marked requests"
-
-#: ../app/controllers/resources/room_request.php:518
-#: ../app/controllers/resources/room_request.php:2390
-msgid "Nur unmarkierte Anfragen"
-msgstr "Only unmarked requests"
-
-#: ../app/controllers/resources/room_request.php:525
-#: ../app/views/resources/room_request/resolve.php:213
-#: ../app/views/calendar/single/export_calendar.php:21
-msgid "Alle Termine"
-msgstr "All dates"
-
-#: ../app/controllers/resources/room_request.php:530
-msgid "Nur regelmäßige Termine"
-msgstr "Only periodic dates"
-
-#: ../app/controllers/resources/room_request.php:535
-msgid "Nur unregelmäßige Termine"
-msgstr "Only aperiodic dates"
-
-#: ../app/controllers/resources/room_request.php:541
-#: ../app/controllers/resources/room_request.php:2396
-msgid "Nur mit Raumangabe"
-msgstr "Only with room"
-
-#: ../app/controllers/resources/room_request.php:546
-#: ../app/controllers/resources/room_request.php:2401
-msgid "Eigene Anfragen anzeigen"
-msgstr "Display own requests"
-
-#: ../app/controllers/resources/room_request.php:590
-msgid "Gefilterte Anfragen"
-msgstr "Filtered requests"
-
-#: ../app/controllers/resources/room_request.php:622
-#: ../app/controllers/resources/room_request.php:878
-#: ../app/controllers/resources/room_request.php:1091
-#: ../app/controllers/resources/room_request.php:1145
-#: ../app/controllers/resources/room_request.php:1721
-msgid "Die angegebene Anfrage wurde nicht gefunden!"
-msgstr "The specified request could not be found!"
-
-#: ../app/controllers/resources/room_request.php:638
-#, php-format
-msgid "%s: Details zur Anfrage"
-msgstr "%s: Request details"
-
-#: ../app/controllers/resources/room_request.php:652
-#: ../app/controllers/course/room_requests.php:60
-#: ../app/controllers/course/room_requests.php:122
-#: ../app/controllers/course/room_requests.php:255
-#: ../app/controllers/course/room_requests.php:396
-#: ../app/controllers/course/room_requests.php:569
-#: ../app/controllers/course/room_requests.php:759
-#: ../app/controllers/course/room_requests.php:936
-msgid "Das Erstellen von Raumanfragen ist nicht erlaubt!"
-msgstr "Creating room request is not allowed!"
-
-#: ../app/controllers/resources/room_request.php:668
-#: ../app/controllers/resources/room_request.php:893
-#, php-format
-msgid "%s: Neue Anfrage erstellen"
-msgstr "%s: Create new request"
-
-#: ../app/controllers/resources/room_request.php:679
-#: ../app/controllers/resources/room_request.php:903
-msgid "Die angegebene Ressource ist kein Raum!"
-msgstr "The specified resource is not a room!"
-
-#: ../app/controllers/resources/room_request.php:685
-msgid "Die angegebene Ressource kann nicht angefragt werden!"
-msgstr "The specified resource cannot be requested!"
-
-#: ../app/controllers/resources/room_request.php:716
-#: ../app/controllers/resources/room_request.php:946
-#, php-format
-msgid "Der Raum %1$s ist ein Teilraum des Raumes %2$s. Weitere Teilräume sind:"
-msgstr "The room %1$s is a part of the room %2$s. Other room parts are:"
-
-#: ../app/controllers/resources/room_request.php:725
-#: ../app/controllers/resources/room_request.php:955
-#, php-format
-msgid "Der Raum %1$s ist ein Teilraum des Raumes %2$s."
-msgstr "The room %1$s is a part of the room %2$s."
-
-#: ../app/controllers/resources/room_request.php:780
-#: ../app/controllers/resources/room_request.php:998
-msgid "Es wurde kein Startdatum angegeben!"
-msgstr "No start date has been provided!"
-
-#: ../app/controllers/resources/room_request.php:786
-#: ../app/controllers/resources/room_request.php:1004
-msgid "Es wurde kein Startzeitpunkt angegeben!"
-msgstr "No start time has been provided!"
-
-#: ../app/controllers/resources/room_request.php:792
-#: ../app/controllers/resources/room_request.php:1010
-msgid "Es wurde kein Enddatum angegeben!"
-msgstr "No end date has been provided!"
-
-#: ../app/controllers/resources/room_request.php:798
-#: ../app/controllers/resources/room_request.php:1016
-msgid "Es wurde kein Endzeitpunkt angegeben!"
-msgstr "No end time has been provided!"
-
-#: ../app/controllers/resources/room_request.php:857
-#: ../app/controllers/resources/room_request.php:1075
-msgid "Die Anfrage wurde gespeichert."
-msgstr "The request has been saved."
-
-#: ../app/controllers/resources/room_request.php:1079
-msgid "Die Anfrage konnte nicht gespeichert werden."
-msgstr "The request could not be saved."
-
-#: ../app/controllers/resources/room_request.php:1099
-#: ../app/controllers/resources/room_request.php:1741
-#, php-format
-msgid "%s: Anfrage löschen"
-msgstr "%s: Delete request"
-
-#: ../app/controllers/resources/room_request.php:1121
-#: ../app/controllers/resources/room_request.php:1783
-msgid "Die Anfrage wurde gelöscht!"
-msgstr "The request has been deleted!"
-
-#: ../app/controllers/resources/room_request.php:1125
-#: ../app/controllers/resources/room_request.php:1785
-msgid "Fehler beim Löschen der Anfrage!"
-msgstr "Error while deleting the request!"
-
-#: ../app/controllers/resources/room_request.php:1182
-#, php-format
-msgid "%s: Anfrage auflösen"
-msgstr "%s: Resolve request"
-
-#: ../app/controllers/resources/room_request.php:1188
-#: ../app/views/resources/room_request/resolve.php:343
-#: ../app/views/resources/_common/_request_tr.php:17
-#: ../app/views/resources/_common/_request_tr.php:100
-msgid "Anfrage auflösen"
-msgstr "Resolve request"
-
-#: ../app/controllers/resources/room_request.php:1199
-msgid "Die Anfrage wurde bereits aufgelöst!"
-msgstr "The request has already been resolved!"
-
-#: ../app/controllers/resources/room_request.php:1524
-msgid ""
-"Es wurden nicht für alle Termine der Anfrage Räume ausgewählt! Soll die "
-"Anfrage wirklich aufgelöst werden?"
-msgstr ""
-"Not every date of the request has been assigned to a room! Do you really "
-"want to resolve the request?"
-
-#: ../app/controllers/resources/room_request.php:1549
-#: ../app/controllers/resources/room_request.php:2119
-#, php-format
-msgid "Die Ressource mit der ID %s ist kein Raum!"
-msgstr "The resource with the ID %s is not a room!"
-
-#: ../app/controllers/resources/room_request.php:1559
-#: ../app/controllers/resources/room_request.php:2129
-#, php-format
-msgid "Unzureichende Berechtigungen zum Buchen des Raumes %s!"
-msgstr "Insufficient permissions for booking the room %s!"
-
-#: ../app/controllers/resources/room_request.php:1574
-#: ../app/controllers/resources/room_request.php:2144
-#, php-format
-msgid "Der Veranstaltungstermin mit der ID %s wurde nicht gefunden!"
-msgstr "The course date with the ID %s could not be found!"
-
-#: ../app/controllers/resources/room_request.php:1610
-#: ../app/controllers/resources/room_request.php:2179
-#, php-format
-msgid "Die Terminserie mit der ID %s wurde nicht gefunden!"
-msgstr "The regular date with the ID %s could not be found!"
-
-#: ../app/controllers/resources/room_request.php:1647
-#: ../app/controllers/resources/room_request.php:2217
-#, php-format
-msgid "Die Person mit der ID %s wurde nicht gefunden!"
-msgstr "The person with the ID %s could not be found!"
-
-#: ../app/controllers/resources/room_request.php:1678
-#: ../app/controllers/resources/room_request.php:2248
-#, php-format
-msgid ""
-"Der Termin mit der ID %s ist mit einem unpassenden Stud.IP-Objekt verknüpft!"
-msgstr "The date with the ID %s is linked with an unsuitable Stud.IP object!"
-
-#: ../app/controllers/resources/room_request.php:1692
-msgid "Es traten Fehler beim Auflösen der Anfrage auf!"
-msgstr "Error occurred during request resolving!"
-
-#: ../app/controllers/resources/room_request.php:1705
-msgid "Die Anfrage wurde aufgelöst!"
-msgstr "The request has been resolved!"
-
-#: ../app/controllers/resources/room_request.php:1709
-msgid "Die Anfrage wurde aufgelöst, konnte aber nicht geschlossen werden!"
-msgstr "The request has been resolved but could not be closed!"
-
-#: ../app/controllers/resources/room_request.php:1748
-#, php-format
-msgid "%s: Anfrage ablehnen"
-msgstr "%s: Deny request"
-
-#: ../app/controllers/resources/room_request.php:1759
-#: ../app/views/resources/room_request/resolve.php:367
-#: ../app/views/resources/_common/_request_tr.php:114
-msgid "Anfrage löschen"
-msgstr "Delete request"
-
-#: ../app/controllers/resources/room_request.php:1761
-#: ../app/views/resources/room_request/resolve.php:362
-#: ../app/views/resources/_common/_request_tr.php:107
-msgid "Anfrage ablehnen"
-msgstr "Deny request"
-
-#: ../app/controllers/resources/room_request.php:1770
-msgid "Die angegebene Anfrage wurde bereits abgelehnt!"
-msgstr "The specified request has already been denied!"
-
-#: ../app/controllers/resources/room_request.php:1796
-msgid "Die Anfrage wurde abgelehnt!"
-msgstr "The request has been denied!"
-
-#: ../app/controllers/resources/room_request.php:1800
-msgid "Fehler beim Ablehnen der Anfrage!"
-msgstr "Error while denying the request!"
-
-#: ../app/controllers/resources/room_request.php:1851
-#: ../app/views/resources/room_request/overview.php:29
-#: ../app/views/resources/room_request/planning.php:144
-#: ../app/views/room_management/overview/index.php:107
-msgid "Anfragende Person"
-msgstr "Requesting person"
-
-#: ../app/controllers/resources/room_request.php:1853
-#: ../app/controllers/admin/statusgroups.php:381
-msgid "Institut"
-msgstr "Institute"
-
-#: ../app/controllers/resources/room_request.php:1856
-#: ../app/views/resources/room_request/overview.php:26
-#: ../app/views/resources/room_request/planning.php:141
-#: ../app/views/room_management/overview/index.php:104
-msgid "Lehrende Person(en)"
-msgstr "Lecturer(s)"
-
-#: ../app/controllers/resources/room_request.php:1857
-msgid "Angefragter Raum"
-msgstr "Requested room"
-
-#: ../app/controllers/resources/room_request.php:1858
-msgid "Erwartete Teilnehmerzahl"
-msgstr "Expected amount of participants"
-
-#: ../app/controllers/resources/room_request.php:1863
-#: ../app/views/course/block_appointments/index.php:143
-msgid "Anzahl der Termine"
-msgstr "Number of appointments"
-
-#: ../app/controllers/resources/room_request.php:1864
-#: ../app/views/resources/room_request/resolve.php:59
-#: ../app/views/course/room_requests/index.php:18
-msgid "Art der Anfrage"
-msgstr "Type of request"
-
-#: ../app/controllers/resources/room_request.php:1865
-msgid "Datum des ersten Termins"
-msgstr "First date"
-
-#: ../app/controllers/resources/room_request.php:1866
-msgid "Datum der Anfrage"
-msgstr "Request date"
-
-#: ../app/controllers/resources/room_request.php:1867
-msgid "Letzte Änderungen"
-msgstr "Last changes"
-
-#: ../app/controllers/resources/room_request.php:1868
-#: ../app/views/resources/room_request/overview.php:20
-#: ../app/views/room_management/overview/index.php:98
-msgid "Markierung"
-msgstr "Marking"
-
-#: ../app/controllers/resources/room_request.php:1870
-msgid "Bemerkungen"
-msgstr "Comment"
-
-#: ../app/controllers/resources/room_request.php:2001
-#, php-format
-msgid "Raumanfragen-%s"
-msgstr "Request-%s"
-
-#: ../app/controllers/resources/room_request.php:2012
-msgid "Buchung in Anfrage wandeln"
-msgstr "Convert booking to request"
-
-#: ../app/controllers/resources/room_request.php:2058
-msgid "Die Buchung wurde in eine Anfrage umgewandelt!"
-msgstr "The booking has been converted into a request!"
-
-#: ../app/controllers/resources/room_request.php:2062
-msgid "Die Buchung konnte nicht gelöscht werden!"
-msgstr "The booking could not be deleted!"
-
-#: ../app/controllers/resources/room_request.php:2068
-msgid "Die Buchung konnte nicht in eine Anfrage umgewandelt werden!"
-msgstr "The booking could not be converted into a request!"
-
-#: ../app/controllers/resources/room_request.php:2262
-#, php-format
-msgid "Es traten Fehler beim Auflösen der Anfrage auf für %s!"
-msgstr ""
-
-#: ../app/controllers/resources/room_request.php:2277
-#, php-format
-msgid "Die Anfrage für %s wurde aufgelöst!"
-msgstr ""
-
-#: ../app/controllers/resources/room_request.php:2282
-#, php-format
-msgid ""
-"Die Anfrage für %s wurde aufgelöst, konnte aber nicht geschlossen werden!"
-msgstr ""
-
-#: ../app/controllers/resources/global_locks.php:65
-#: ../app/controllers/resources/global_locks.php:152
-msgid "Der angegebene Startzeitpunkt ist ungültig!"
-msgstr "The specified start time is invalid!"
-
-#: ../app/controllers/resources/global_locks.php:78
-#: ../app/controllers/resources/global_locks.php:165
-msgid "Der angegebene Endzeitpunkt ist ungültig!"
-msgstr "The specified end time is invalid!"
-
-#: ../app/controllers/resources/global_locks.php:97
-msgid "Die Sperrung wurde hinzugefügt!"
-msgstr "The lock has been added!"
-
-#: ../app/controllers/resources/global_locks.php:102
-msgid "Fehler beim Hinzufügen der Sperrung!"
-msgstr "Error while adding the lock!"
-
-#: ../app/controllers/resources/global_locks.php:122
-#: ../app/controllers/resources/global_locks.php:218
-msgid "Die angegebene Sperrung wurde nicht in der Datenbank gefunden!"
-msgstr "The specified lock could not be found in the database!"
-
-#: ../app/controllers/resources/global_locks.php:194
-msgid "Die Sperrung wurde bearbeitet!"
-msgstr "The lock has been modified!"
-
-#: ../app/controllers/resources/global_locks.php:199
-msgid "Fehler beim Bearbeiten der Sperrung!"
-msgstr "Error while modifying the lock!"
-
-#: ../app/controllers/resources/global_locks.php:228
-msgid "Die Sperrung wurde gelöscht!"
-msgstr "The lock has been deleted!"
-
-#: ../app/controllers/resources/global_locks.php:233
-msgid "Fehler beim Löschen der Sperrung!"
-msgstr "Error while deleting the lock!"
-
-#: ../app/controllers/resources/property.php:65
-#: ../app/controllers/resources/property.php:145 ../app/routes/Clipboard.php:26
-#: ../app/routes/Clipboard.php:68
-msgid "Es wurde kein Name angegeben!"
-msgstr "No name has been provided!"
-
-#: ../app/controllers/resources/property.php:71
-#: ../app/controllers/resources/property.php:151
-msgid "Der angegebene Typ ist ungültig!"
-msgstr "The specified type is invalid!"
-
-#: ../app/controllers/resources/property.php:104
-#: ../app/controllers/resources/property.php:187
-msgid "Die Eigenschaft wurde gespeichert!"
-msgstr "The property has been saved!"
-
-#: ../app/controllers/resources/property.php:108
-#: ../app/controllers/resources/property.php:191
-msgid "Fehler beim Speichern der Eigenschaft!"
-msgstr "Error while saving the property!"
-
-#: ../app/controllers/resources/property.php:119
-#: ../app/controllers/resources/property.php:213
-msgid "Die gewählte Eigenschaft wurde nicht gefunden!"
-msgstr "The selected property could not be found!"
-
-#: ../app/controllers/resources/property.php:226
-#, php-format
-msgid "Die Eigenschaft \"%s\" wurde gelöscht!"
-msgstr "The property \"%s\" has been deleted!"
-
-#: ../app/controllers/resources/property.php:233
-#, php-format
-msgid "Fehler beim Löschen der Eigenschaft \"%s\"!"
-msgstr "Error while deleting the property \"%s\"!"
-
-#: ../app/controllers/resources/booking.php:33
-msgid "Die angegebene Buchung wurde nicht gefunden!"
-msgstr "The specified booking could not be found!"
-
-#: ../app/controllers/resources/booking.php:40
-msgid "Zur angegebenen Buchung ist kein Raum bzw. keine Ressource zugeordnet!"
-msgstr "No room or resource is assigned to the specified booking!"
-
-#: ../app/controllers/resources/booking.php:62
-msgid "Details zur Buchung"
-msgstr "Booking details"
-
-#: ../app/controllers/resources/booking.php:107
-msgid "Der Kommentar zur Buchung wurde gespeichert!"
-msgstr "The comment for the booking has been saved!"
-
-#: ../app/controllers/resources/booking.php:111
-msgid "Fehler beim Speichern des Kommentars zur Buchung!"
-msgstr "Error while saving the comment for the booking!"
-
-#: ../app/controllers/resources/booking.php:134
-msgid "Die angegebene Ressourcenanfrage wurde nicht gefunden!"
-msgstr "The specified resource request could not be found!"
-
-#: ../app/controllers/resources/booking.php:158
-#: ../app/controllers/resources/booking.php:1165
-#, php-format
-msgid "Es sind maximal %d Minuten für die Rüstzeit erlaubt!"
-msgstr "A maximum of %d minutes is allowed for the preparation time!"
-
-#: ../app/controllers/resources/booking.php:179
-msgid "Die Buchung wurde vorgenommen und die Anfrage als bearbeitet markiert!"
-msgstr ""
-"The booking has been made and the request has been marked as processed!"
-
-#: ../app/controllers/resources/booking.php:183
-msgid "Ein Fehler trat auf beim Erstellen der Buchung!"
-msgstr "Error while creating the booking!"
-
-#: ../app/controllers/resources/booking.php:253
-#, php-format
-msgid "%1$s: Neue Sperrbuchung von %2$s bis %3$s"
-msgstr "%1$s: New lock booking from %2$s to %3$s"
-
-#: ../app/controllers/resources/booking.php:506
-#, php-format
-msgid ""
-"Raum %1$s: Der Teilraum %2$s ist im Zeitbereich von %3$s bis %4$s nicht "
-"verfügbar und kann daher nicht gebucht werden!"
-msgstr ""
-"Room %1$s: The room part %2$s is not available in the range from %3$s to "
-"%4$s and can therefore not be booked!"
-
-#: ../app/controllers/resources/booking.php:537
-msgid "Es konnten nicht alle Reservierungen gespeichert werden!"
-msgstr "Not all reservations could be saved!"
-
-#: ../app/controllers/resources/booking.php:542
-msgid "Es konnten nicht alle Sperrbuchungen gespeichert werden!"
-msgstr "Not all lock bookings could be saved!"
-
-#: ../app/controllers/resources/booking.php:547
-msgid "Es konnten nicht alle Buchungen gespeichert werden!"
-msgstr "Not all bookings could be saved!"
-
-#: ../app/controllers/resources/booking.php:555
-msgid ""
-"Die Reservierung wurde gespeichert, aber es traten Fehler beim Reservieren "
-"der anderen Raumteile auf:"
-msgid_plural ""
-"Die Reservierungen wurden gespeichert, aber es traten Fehler beim "
-"Reservieren der anderen Raumteile auf:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/booking.php:561
-msgid ""
-"Die Sperrbuchung wurde gespeichert, aber es traten Fehler beim Sperren der "
-"anderen Raumteile auf:"
-msgid_plural ""
-"Die Sperrbuchungen wurden gespeichert, aber es traten Fehler beim Sperren "
-"der anderen Raumteile auf:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/booking.php:567
-msgid ""
-"Die Buchung wurde gespeichert, aber es traten Fehler beim Buchen der anderen "
-"Raumteile auf:"
-msgid_plural ""
-"Die Buchungen wurden gespeichert, aber es traten Fehler beim Buchen der "
-"anderen Raumteile auf:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/booking.php:582
-msgid "Die Reservierung wurde gespeichert."
-msgid_plural "Die Reservierungen wurden gespeichert."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/booking.php:590
-msgid "Die Sperrbuchung wurde gespeichert."
-msgid_plural "Die Sperrbuchungen wurden gespeichert."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/booking.php:598
-msgid "Die Buchung wurde gespeichert."
-msgid_plural "Die Buchungen wurden gespeichert."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/booking.php:608
-msgid "Die folgenden Fehler traten beim Speichern der Buchungen auf:"
-msgstr "The following errors occurred while saving the booking:"
-
-#: ../app/controllers/resources/booking.php:645
-#, php-format
-msgid "%s: Neue geplante Buchung"
-msgstr "%s: New planned booking"
-
-#: ../app/controllers/resources/booking.php:674
-msgid "Neue geplante Buchung"
-msgstr "New planned booking"
-
-#: ../app/controllers/resources/booking.php:678
-msgid "Neue Sperrbuchung"
-msgstr "New lock booking"
-
-#: ../app/controllers/resources/booking.php:682
-msgid "Neue Reservierung"
-msgstr "New reservation"
-
-#: ../app/controllers/resources/booking.php:714
-#, php-format
-msgid "%1$s: Geplante Buchung am %2$s bearbeiten"
-msgstr ""
-
-#: ../app/controllers/resources/booking.php:722
-#, php-format
-msgid "%1$s: Sperrbuchung am %2$s bearbeiten"
-msgstr ""
-
-#: ../app/controllers/resources/booking.php:730
-#, php-format
-msgid "%1$s: Reservierung am %2$s bearbeiten"
-msgstr ""
-
-#: ../app/controllers/resources/booking.php:738
-#, php-format
-msgid "%1$s: Buchung am %2$s bearbeiten"
-msgstr ""
-
-#: ../app/controllers/resources/booking.php:748
-#, php-format
-msgid "Geplante Buchung am %s bearbeiten"
-msgstr ""
-
-#: ../app/controllers/resources/booking.php:755
-#, php-format
-msgid "Sperrbuchung am %s bearbeiten"
-msgstr ""
-
-#: ../app/controllers/resources/booking.php:762
-#, php-format
-msgid "Reservierung am %s bearbeiten"
-msgstr ""
-
-#: ../app/controllers/resources/booking.php:769
-#, php-format
-msgid "Buchung am %s bearbeiten"
-msgstr ""
-
-#: ../app/controllers/resources/booking.php:776
-msgid "Buchung duplizieren"
-msgstr ""
-
-#: ../app/controllers/resources/booking.php:799
-#: ../app/controllers/resources/booking.php:804
-#: ../app/controllers/resources/booking.php:816
-#: ../app/controllers/resources/booking.php:821
-msgid ""
-"Ihre Berechtigungsstufe ist mindestens für einen der gewählten Räume zu "
-"niedrig!"
-msgstr ""
-"Your permission level is too low for at least one of the selected rooms!"
-
-#: ../app/controllers/resources/booking.php:830
-msgid "Nur einfache Buchungen dürfen direkt bearbeitet werden!"
-msgstr "Only simple bookings may be modified directly!"
-
-#: ../app/controllers/resources/booking.php:936
-#, php-format
-msgid ""
-"Der Raum %1$s ist ein Teilraum eines teilbaren Raumes. Weitere Teilräume "
-"sind:"
-msgstr "The room %1$s is a part of a separable room. Other room parts are:"
-
-#: ../app/controllers/resources/booking.php:946
-#, php-format
-msgid "Der Raum %1$s ist ein Teilraum eines teilbaren Raumes."
-msgstr "The room %1$s is a part of a separable room."
-
-#: ../app/controllers/resources/booking.php:958
-msgid "Die folgenden Räume sind Teilräume:"
-msgstr "The following rooms are room parts:"
-
-#: ../app/controllers/resources/booking.php:1090
-msgid ""
-"Die gewählte belegende Person konnte nicht in der Datenbank gefunden werden!"
-msgstr "The selected booking person could not be found in the database!"
-
-#: ../app/controllers/resources/booking.php:1142
-msgid "Es wurde ein ungültiger Buchungstyp gewählt."
-msgstr "An invlid booking type has been selected."
-
-#: ../app/controllers/resources/booking.php:1150
-msgid "Es wurde kein Startdatum bzw. Startzeitpunkt angegeben!"
-msgstr "No start date or start time has been specified!"
-
-#: ../app/controllers/resources/booking.php:1156
-msgid "Es wurde kein Enddatum bzw. Endzeitpunkt angegeben!"
-msgstr "No end date or end time has been specified!"
-
-#: ../app/controllers/resources/booking.php:1225
-msgid "Die Startuhrzeit darf nicht nach der Enduhrzeit liegen!"
-msgstr "The start time must not lie after the end time!"
-
-#: ../app/controllers/resources/booking.php:1232
-msgid "Die Rüstzeit darf keinen negativen Wert enthalten!"
-msgstr "The preparation time must not contain a negative value!"
-
-#: ../app/controllers/resources/booking.php:1359
-msgid ""
-"Die folgende Reservierung wird beim Buchen überschrieben. Wollen Sie die "
-"Reservierung wirklich überschreiben?"
-msgid_plural ""
-"Die folgenden Reservierungen werden beim Buchen überschrieben. Wollen Sie "
-"die Reservierungen wirklich überschreiben?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/resources/booking.php:1517
-msgid "Buchung kopieren"
-msgstr "Copy booking"
-
-#: ../app/controllers/resources/booking.php:1545
-#: ../app/controllers/resources/booking.php:1636
-#: ../app/controllers/resources/export.php:151
-msgid "Es wurde keine Ressource ausgewählt!"
-msgstr "No resource has been selected!"
-
-#: ../app/controllers/resources/booking.php:1584
-msgid "Es traten Fehler beim Kopieren der Buchung auf!"
-msgstr "Errors occurred while copying the booking!"
-
-#: ../app/controllers/resources/booking.php:1590
-msgid "Die Buchung wurde kopiert!"
-msgstr "The booking has been copied!"
-
-#: ../app/controllers/resources/booking.php:1608
-msgid "Buchung verschieben"
-msgstr "Move booking"
-
-#: ../app/controllers/resources/booking.php:1656
-msgid "Es traten Fehler beim Verschieben der Buchung auf!"
-msgstr "Errors occurred while moving the booking!"
-
-#: ../app/controllers/resources/booking.php:1662
-msgid "Die Buchung wurde verschoben!"
-msgstr "The booking has been moved!"
-
-#: ../app/controllers/resources/booking.php:1680
-msgid "Buchung in ein anderes Semester kopieren"
-msgstr "Copy the booking in another semester"
-
-#: ../app/controllers/resources/booking.php:1696
-msgid ""
-"Es sind keine zukünftigen Semester vorhanden, in die die Buchung kopiert "
-"werden kann!"
-msgstr "There are no future semesters in which the booking can be copied!"
-
-#: ../app/controllers/resources/booking.php:1723
-#, php-format
-msgid "%1$d. KW, vom %2$s bis zum %3$s"
-msgstr "%1$d. week, from %2$s to %3$s"
-
-#: ../app/controllers/resources/booking.php:1745
-#: ../app/controllers/room_management/planning.php:647
-msgid "Das gewählte Semester wurde nicht gefunden!"
-msgstr "The selected semester could not be found!"
-
-#: ../app/controllers/resources/booking.php:1763
-msgid "Die gewählte Kalenderwoche liegt außerhalb des gewählten Semesters!"
-msgstr "The selected calendar week is outside of the selected semester!"
-
-#: ../app/controllers/resources/booking.php:1811
-msgid "Die Buchung konnte aus folgenden Gründen nicht kopiert werden:"
-msgstr "The booking could not be copied for the following reasons:"
-
-#: ../app/controllers/resources/booking.php:1820
-#, php-format
-msgid ""
-"Die Buchung wurde in das Semester %1$s kopiert und findet dort vom %2$s, "
-"%3$s Uhr bis zum %4$s, %5$s Uhr statt!"
-msgstr ""
-"The booking has been copied into the semester %1$s and takes place from "
-"%2$s, %3$s to %4$s, %5$s!"
-
-#: ../app/controllers/resources/booking.php:1837
-msgid "Buchung löschen"
-msgstr "Delete booking"
-
-#: ../app/controllers/resources/booking.php:1856
-msgid "Die Buchung wurde gelöscht!"
-msgstr "The booking has been deleted!"
-
-#: ../app/controllers/resources/booking.php:1860
-msgid "Fehler beim Löschen der Buchung!"
-msgstr "Error while deleting the booking!"
-
-#: ../app/controllers/resources/export.php:65
-msgid "Quellen für den Export von Buchungen auswählen"
-msgstr "Select sources for the export of bookings"
-
-#: ../app/controllers/resources/export.php:75
-msgid "Es sind keine Quellen für den Export von Buchungen vorhanden!"
-msgstr "There are no sources available for the export of bookings!"
-
-#: ../app/controllers/resources/export.php:86
-#: ../app/views/resources/print/clipboard_rooms.php:103
-msgid "Sie müssen zunächst Raumgruppen erstellen"
-msgstr "You need to create a room group first"
-
-#: ../app/controllers/resources/export.php:89
-#: ../app/views/resources/print/clipboard_rooms.php:106
-#, php-format
-msgid "Klicken %shier%s, um ein Raumgruppen anzulegen."
-msgstr ""
-
-#: ../app/controllers/resources/export.php:128
-#: ../app/views/room_management/overview/index.php:43
-msgid "Raumgruppen auswählen"
-msgstr "Select room group"
-
-#: ../app/controllers/resources/export.php:132
-#: ../app/views/room_management/overview/index.php:50
-msgid "Räume auswählen"
-msgstr "Select rooms"
-
-#: ../app/controllers/resources/export.php:159
-msgid "Die gewählte Ressource wurde nicht gefunden!"
-msgstr "The selected resource could not be found!"
-
-#: ../app/controllers/resources/export.php:297
-#: ../app/controllers/resources/export.php:414
-msgid "Buchungstyp"
-msgstr "Booking type"
-
-#: ../app/controllers/resources/export.php:299
-#: ../app/controllers/resources/export.php:416
-msgid "Buchende Person"
-msgstr "Booking person"
-
-#: ../app/controllers/resources/export.php:300
-#: ../app/controllers/resources/export.php:417
-msgid "Belegende Person(en)"
-msgstr "Booking person(s)"
-
-#: ../app/controllers/resources/export.php:301
-#: ../app/controllers/resources/export.php:418
-#: ../app/views/resources/admin/booking_log.php:35
-msgid "Interner Kommentar"
-msgstr "Internal comment"
-
-#: ../app/controllers/resources/export.php:325
-#, php-format
-msgid "%u min."
-msgstr "%u min."
-
-#: ../app/controllers/resources/export.php:331
-#: ../app/controllers/resources/export.php:448
-#: ../app/views/resources/booking/_add_edit_form.php:21
-msgid "Buchung"
-msgstr "Booking"
-
-#: ../app/controllers/resources/export.php:355
-msgid "Buchungsliste"
-msgstr "Booking list"
-
-#: ../app/controllers/resources/export.php:408
-#: ../app/views/resources/booking/add_from_request.php:26
-#: ../app/views/resources/booking/_add_edit_form.php:157
-msgid "Rüstzeit (Minuten)"
-msgstr "Preparation time (minutes)"
-
-#: ../app/controllers/resources/export.php:411
-msgid "Raum / Gebäude"
-msgstr "Room / Building"
-
-#: ../app/controllers/resources/export.php:473
-#, php-format
-msgid "Belegungsplan %1$s, KW %2$d.csv"
-msgstr "Booking plan %1$s, week %2$d.csv"
-
-#: ../app/controllers/tour.php:33 ../app/views/tour/edit_step.php:72
-msgid "oben (links)"
-msgstr "above (left)"
-
-#: ../app/controllers/tour.php:34
-msgid "oben (mittig)"
-msgstr "top (centre)"
-
-#: ../app/controllers/tour.php:35 ../app/views/tour/edit_step.php:86
-msgid "oben (rechts)"
-msgstr "above (right)"
-
-#: ../app/controllers/tour.php:36 ../app/views/tour/edit_step.php:148
-msgid "unten (links)"
-msgstr "below (left)"
-
-#: ../app/controllers/tour.php:37
-msgid "unten (mittig)"
-msgstr "bottom (centre)"
-
-#: ../app/controllers/tour.php:38 ../app/views/tour/edit_step.php:162
-msgid "unten (rechts)"
-msgstr "below (right)"
-
-#: ../app/controllers/tour.php:39 ../app/views/tour/edit_step.php:96
-msgid "links (oben)"
-msgstr "left (above)"
-
-#: ../app/controllers/tour.php:40
-msgid "links (mittig)"
-msgstr "left (centre)"
-
-#: ../app/controllers/tour.php:41 ../app/views/tour/edit_step.php:130
-msgid "links (unten)"
-msgstr "left (below)"
-
-#: ../app/controllers/tour.php:42 ../app/views/tour/edit_step.php:104
-msgid "rechts (oben)"
-msgstr "right (above)"
-
-#: ../app/controllers/tour.php:43
-msgid "rechts (mittig)"
-msgstr "right (centre)"
-
-#: ../app/controllers/tour.php:44 ../app/views/tour/edit_step.php:138
-msgid "rechts (unten)"
-msgstr "right (below)"
-
-#: ../app/controllers/tour.php:67
-#, php-format
-msgid "Wollen Sie die Tour \"%s\" an der letzten Position fortsetzen?"
-msgstr "Do you want to continue the tour \"%s\" from the previous position?"
-
-#: ../app/controllers/tour.php:180 ../app/controllers/tour.php:613
-msgid "Verwalten von Touren"
-msgstr "Help tour administration"
-
-#: ../app/controllers/tour.php:201
-#, php-format
-msgid "Angezeigt werden Touren zum Suchbegriff \"%s\"."
-msgstr "Shown are tours matching the search \"%s\"."
-
-#: ../app/controllers/tour.php:238 ../app/controllers/help_content.php:302
-msgid "Konflikte"
-msgstr "Conflicts"
-
-#: ../app/controllers/tour.php:245
-msgid "Tour erstellen"
-msgstr "Create tour"
-
-#: ../app/controllers/tour.php:250
-msgid "Tour importieren"
-msgstr "Import tour"
-
-#: ../app/controllers/tour.php:272
-msgid "Hilfe-Tour importieren"
-msgstr "Import help tour"
-
-#: ../app/controllers/tour.php:278
-msgid "Ungültige Daten. Tour-Daten müssen im JSON-Format vorliegen."
-msgstr "Invalid data. Tour data must be provided in the JSON format."
-
-#: ../app/controllers/tour.php:289
-#, php-format
-msgid ""
-"Es existiert bereits eine Tour mit dieser ID. Um sie zu ersetzen, müssen Sie "
-"die alte Tour \"%s\" erst löschen."
-msgstr ""
-"A tour with this ID already exists. To replace it, you have to delete the "
-"old tour \"%s\" first."
-
-#: ../app/controllers/tour.php:315
-msgid "Die Tour wurde importiert."
-msgstr "The tour has been imported."
-
-#: ../app/controllers/tour.php:317
-msgid "Keine Änderungen gespeichert."
-msgstr "No changes have been saved."
-
-#: ../app/controllers/tour.php:373
-#, php-format
-msgid "Wollen Sie die Tour \"%s\" wirklich löschen?"
-msgstr "Are you sure to delete tour \"%s\"?"
-
-#: ../app/controllers/tour.php:404
-#, php-format
-msgid "Wollen Sie Schritt %s wirklich löschen?"
-msgstr "Are you sure to delete step %s?"
-
-#: ../app/controllers/tour.php:480 ../app/controllers/tour.php:623
-#: ../app/controllers/tour.php:669
-msgid "Die Tour mit der angegebenen ID existiert nicht."
-msgstr "No tour with the given ID found."
-
-#: ../app/controllers/tour.php:549 ../app/views/tour/admin_conflicts.php:3
-msgid "Versions-Konflikte der Touren"
-msgstr "Version conflicts of tours"
-
-#: ../app/controllers/tour.php:563
-msgid "Stud.IP-Version"
-msgstr "Stud.IP version"
-
-#: ../app/controllers/tour.php:564
-msgid "Art der Tour"
-msgstr "Type of tour"
-
-#: ../app/controllers/tour.php:565
-msgid "Geltungsbereich"
-msgstr "Scope"
-
-#: ../app/controllers/tour.php:570 ../app/views/tour/edit_step.php:37
-msgid "Interaktiv"
-msgstr "Interactive"
-
-#: ../app/controllers/tour.php:572 ../app/views/tour/edit_step.php:63
-msgid "Orientierung"
-msgstr "Orientation"
-
-#: ../app/controllers/tour.php:693
-msgid "(Neue Tour)"
-msgstr "(New tour)"
-
-#: ../app/controllers/tour.php:706
-msgid "Die Angaben wurden gespeichert."
-msgstr "The data have been saved."
-
-#: ../app/controllers/fachabschluss/faecher.php:22
-msgid "Verwaltung der Fächer"
-msgstr "Field of study management"
-
-#: ../app/controllers/fachabschluss/faecher.php:48
-msgid "Es wurden noch keine Fächer angelegt."
-msgstr "No fields of study yet."
-
-#: ../app/controllers/fachabschluss/faecher.php:55
-msgid "Auf diesen Seiten können Sie Fächer verwalten und neue Fächer anlegen."
-msgstr "Manage and set up fields of study here."
-
-#: ../app/controllers/fachabschluss/faecher.php:56
-msgid ""
-"Ein Fach kann aufgeklappt werden, um die Abschlüsse anzuzeigen, die dem Fach "
-"bereits zugeordnet wurden."
-msgstr "A field of study can be opened to show assigned degrees."
-
-#: ../app/controllers/fachabschluss/faecher.php:80
-#: ../app/controllers/fachabschluss/faecher.php:229
-msgid "Neues Fach anlegen"
-msgstr "Add a new subject"
-
-#: ../app/controllers/fachabschluss/faecher.php:81
-#, php-format
-msgid "Das Fach \"%s\" wurde angelegt."
-msgstr "Field \"%s\" created."
-
-#: ../app/controllers/fachabschluss/faecher.php:83
-#, php-format
-msgid "Fach: %s bearbeiten"
-msgstr "Field of study: edit %s"
-
-#: ../app/controllers/fachabschluss/faecher.php:84
-#, php-format
-msgid "Das Fach \"%s\" wurde geändert."
-msgstr "Subject \"%s\" has been edited."
-
-#: ../app/controllers/fachabschluss/faecher.php:126
-msgid "Log-Einträge dieses Faches"
-msgstr "Log entries for this field"
-
-#: ../app/controllers/fachabschluss/faecher.php:142
-msgid "Das Fach kann nicht gelöscht werden (unbekanntes Fach)."
-msgstr "Cannot delete field (unknown field of study)."
-
-#: ../app/controllers/fachabschluss/faecher.php:147
-#, php-format
-msgid "Das Fach \"%s\" wurde gelöscht."
-msgstr "Subject \"%s\" has been deleted."
-
-#: ../app/controllers/fachabschluss/faecher.php:170
-msgid "Fächer nach Fachbereichen gruppiert"
-msgstr "Group fields of study by faculty"
-
-#: ../app/controllers/fachabschluss/faecher.php:176
-msgid ""
-"Ein Fachbereich kann aufgeklappt werden, um die Fächer anzuzeigen, die dem "
-"Fachbereich bereits zugeordnet wurden."
-msgstr "Faculties can be opened to show assigned fields."
-
-#: ../app/controllers/fachabschluss/faecher.php:216
-msgid "Fächer mit zugeordneten Abschlüssen"
-msgstr "Fields of study with associated degrees"
-
-#: ../app/controllers/fachabschluss/faecher.php:220
-#: ../app/controllers/studiengaenge/studiengaenge.php:1021
-msgid "Gruppierung nach Fachbereichen"
-msgstr "Group by faculties"
-
-#: ../app/controllers/fachabschluss/kategorien.php:26
-msgid ""
-"Sie können die Reihenfolge der Abschluss-Kategorien durch Ziehen der Zeilen "
-"ändern."
-msgstr "Drag & drop rows to change order."
-
-#: ../app/controllers/fachabschluss/kategorien.php:27
-msgid ""
-"Eine Abschluss-Katgorie kann aufgeklappt werden, um die Abschlüsse "
-"anzuzeigen, die der Abschluss-Kategorie bereits zugeordnet wurden."
-msgstr "A degree-category can be opened to show assigned degrees."
-
-#: ../app/controllers/fachabschluss/kategorien.php:28
-msgid ""
-"Die Reihenfolge der zugeordneten Abschlüsse kann ebenfalls geändert werden."
-msgstr "Order of associated degrees can be changed."
-
-#: ../app/controllers/fachabschluss/kategorien.php:58
-#: ../app/controllers/fachabschluss/kategorien.php:226
-msgid "Neue Abschluss-Kategorie anlegen"
-msgstr "Create category of degree"
-
-#: ../app/controllers/fachabschluss/kategorien.php:59
-#, php-format
-msgid "Die Abschluss-Kategorie \"%s\" wurde angelegt."
-msgstr "The category of degree \"%s\" has been created."
-
-#: ../app/controllers/fachabschluss/kategorien.php:62
-#, php-format
-msgid "Abschluss-Kategorie: %s bearbeiten"
-msgstr "Category of degree: edit %s"
-
-#: ../app/controllers/fachabschluss/kategorien.php:65
-#, php-format
-msgid "Die Abschluss-Kategorie \"%s\" wurde geändert."
-msgstr "Category of degree \"%s\" has been changed."
-
-#: ../app/controllers/fachabschluss/kategorien.php:98
-msgid "Log-Einträge dieser Kategorie"
-msgstr "Log events for this category"
-
-#: ../app/controllers/fachabschluss/kategorien.php:121
-#, php-format
-msgid "Abschluss-Kategorie \"%s\" gelöscht!"
-msgstr "Category \"%s\" deleted!"
-
-#: ../app/controllers/fachabschluss/kategorien.php:127
-#, php-format
-msgid ""
-"Löschen nicht möglich! Die Abschluss-Kategorie \"%s\" ist noch Abschlüssen "
-"zugeordnet!"
-msgstr "Cannot delete category! Degrees are still assigned to \"%s\"!"
-
-#: ../app/controllers/fachabschluss/abschluesse.php:23
-msgid "Verwaltung der Abschlüsse"
-msgstr "Degree management"
-
-#: ../app/controllers/fachabschluss/abschluesse.php:37
-msgid "Es wurden noch keine Abschlüsse angelegt."
-msgstr "No degrees have been created yet."
-
-#: ../app/controllers/fachabschluss/abschluesse.php:45
-msgid "Auf diesen Seiten können Sie Fächer und Abschlüsse verwalten."
-msgstr "Manage field of studies and final degrees here."
-
-#: ../app/controllers/fachabschluss/abschluesse.php:46
-msgid ""
-"Ein Abschluss kann aufgeklappt werden, um die Fächer anzuzeigen, die diesem "
-"Abschluss bereits zugeordnet wurden."
-msgstr "Degrees can be opened to show assigned fields of study."
-
-#: ../app/controllers/fachabschluss/abschluesse.php:71
-msgid ""
-"Es wurden noch keine Abschluss-Kategorien angelegt. Bevor Sie fortfahren, "
-"legen Sie bitte hier zunächst eine Abschluss-Kategorie an!"
-msgstr ""
-"Please create categories for degrees (bachelor, master, ...) before "
-"proceeding!"
-
-#: ../app/controllers/fachabschluss/abschluesse.php:77
-#: ../app/controllers/fachabschluss/abschluesse.php:181
-msgid "Neuen Abschluss anlegen"
-msgstr "Create new degree"
-
-#: ../app/controllers/fachabschluss/abschluesse.php:78
-#, php-format
-msgid "Der Abschluss \"%s\" wurde angelegt."
-msgstr "Degree \"%s\" was created."
-
-#: ../app/controllers/fachabschluss/abschluesse.php:81
-#, php-format
-msgid "Abschluss: %s bearbeiten"
-msgstr "Degree: edit %s"
-
-#: ../app/controllers/fachabschluss/abschluesse.php:84
-#, php-format
-msgid "Der Abschluss \"%s\" wurde geändert."
-msgstr "Degree \"%s\" was edited."
-
-#: ../app/controllers/fachabschluss/abschluesse.php:107
-#: ../app/controllers/module/module.php:772
-#: ../app/controllers/module/module.php:990
-#: ../app/controllers/studiengaenge/studiengaenge.php:206
-#: ../app/controllers/studiengaenge/shared_version.php:88
-#: ../app/controllers/studiengaenge/shared_version.php:303
-#: ../app/controllers/studiengaenge/shared_version.php:484
-#: ../app/controllers/studiengaenge/studiengangteile.php:103
-msgid "Es wurden keine Änderungen vorgenommen."
-msgstr "No changes."
-
-#: ../app/controllers/fachabschluss/abschluesse.php:119
-msgid "Log-Einträge dieses Abschlusses"
-msgstr "Log entries for this degree"
-
-#: ../app/controllers/fachabschluss/abschluesse.php:134
-msgid "Der Abschluss kann nicht gelöscht werden (unbekannter Abschluss)."
-msgstr "Cannot delete degree (unknown degree)."
-
-#: ../app/controllers/fachabschluss/abschluesse.php:140
-#, php-format
-msgid "Der Abschluss kann nicht gelöscht werden (in %s %s verwendet)."
-msgstr "The final degree cannot be deleted (in use in %s %s)."
-
-#: ../app/controllers/fachabschluss/abschluesse.php:147
-#, php-format
-msgid "Der Abschluss \"%s\" wurde gelöscht."
-msgstr "Degree \"%s\" has been deleted."
-
-#: ../app/controllers/news.php:40
-msgid "Stud.IP (systemweit)"
-msgstr "Stud.IP (system)"
-
-#: ../app/controllers/news.php:96
-msgid "Ankündigung wirklich aus diesem Bereich entfernen?"
-msgstr "Do you really want to the announcement from this area?"
-
-#: ../app/controllers/news.php:111
-msgid "Ankündigung wirklich löschen?"
-msgstr "Do you really want to delete the announcement?"
-
-#: ../app/controllers/news.php:181 ../app/controllers/news.php:626
-#: ../app/views/news/edit_news.php:261
-msgid "Ankündigung erstellen"
-msgstr "Create new announcement"
-
-#: ../app/controllers/news.php:183 ../app/views/news/admin_news.php:126
-msgid "Ankündigung bearbeiten"
-msgstr "Edit announcements"
-
-#: ../app/controllers/news.php:222 ../app/controllers/news.php:230
-msgid "Die Ankündigung existiert nicht!"
-msgstr "Announcement does not exist!"
-
-#: ../app/controllers/news.php:247
-msgid ""
-"1 zugeordneter Bereich wurde nicht übernommen, weil Sie dort keine "
-"Ankündigungen erstellen dürfen."
-msgstr ""
-"1 selected area not saved. You are not allowed to create announcements in "
-"this area."
-
-#: ../app/controllers/news.php:249
-#, php-format
-msgid ""
-"%s zugeordnete Bereiche wurden nicht übernommen, weil Sie dort keine "
-"Ankündigungen erstellen dürfen."
-msgstr ""
-"%s selected area not saved. You are not allowed to create announcements in "
-"this area."
-
-#: ../app/controllers/news.php:280
-msgid "Meine Profilseite"
-msgstr "My profile"
-
-#: ../app/controllers/news.php:284
-msgid "Meine Veranstaltungen im aktuellen Semester"
-msgstr "My courses in the current semester"
-
-#: ../app/controllers/news.php:289
-msgid "Meine Veranstaltungen im nächsten Semester"
-msgstr "My courses in the next semester"
-
-#: ../app/controllers/news.php:407
-#, php-format
-msgid ""
-"Sie haben keine Berechtigung zum Ändern der Bereichsverknüpfung für \"%s\"."
-msgstr "You don not have permissions to edit assignments to \"%s\"."
-
-#: ../app/controllers/news.php:422
-msgid "Sie haben keine Berechtigung zum Ändern der Bereichsverknüpfung."
-msgstr "You don not have permissions to edit assignments to areas."
-
-#: ../app/controllers/news.php:433
-#, php-format
-msgid "Ihre Ankündigung \"%s\" wurde von %s verändert."
-msgstr "Your announcement \"%s\" has been edited by %s."
-
-#: ../app/controllers/news.php:442
-msgid "Die Ankündigung wurde gespeichert."
-msgstr "The announcement has been saved."
-
-#: ../app/controllers/news.php:484 ../app/views/news/admin_news.php:32
-msgid "Meine Ankündigungen"
-msgstr "My announcements"
-
-#: ../app/controllers/news.php:512
-msgid ""
-"Ungültige Datumsangabe. Bitte geben Sie ein Datum im Format TT.MM.JJJJ ein."
-msgstr "Invalid date. Please enter a date in the format DD.MM.YYYY."
-
-#: ../app/controllers/news.php:514
-msgid "Das Startdatum muss vor dem Enddatum liegen."
-msgstr "The start date must lie before the end date."
-
-#: ../app/controllers/news.php:529
-#, php-format
-msgid ""
-"Angezeigt werden Ankündigungen im Bereich \"%s\" zum Suchbegriff \"%s\", die "
-"zwischen dem %s und dem %s sichtbar sind."
-msgstr ""
-"Announcements in the area \"%s\" matching the search criteria \"%s\" are "
-"displayed, which are visible between %s and %s."
-
-#: ../app/controllers/news.php:531
-#, php-format
-msgid ""
-"Angezeigt werden Ankündigungen im Bereich \"%s\" zum Suchbegriff \"%s\", die "
-"ab dem %s sichtbar sind."
-msgstr ""
-"Announcements in the area \"%s\" matching the search criteria \"%s\" are "
-"displayed, which are visible from %s."
-
-#: ../app/controllers/news.php:533
-#, php-format
-msgid ""
-"Angezeigt werden Ankündigungen im Bereich \"%s\" zum Suchbegriff \"%s\", die "
-"vor dem %s sichtbar sind."
-msgstr ""
-"Announcements in the area \"%s\" matching the search criteria \"%s\" are "
-"displayed, which are visible before %s."
-
-#: ../app/controllers/news.php:535
-#, php-format
-msgid ""
-"Angezeigt werden Ankündigungen im Bereich \"%s\" zum Suchbegriff \"%s\"."
-msgstr ""
-"Announcements in the area \"%s\" matching the search criteria \"%s\" are "
-"displayed."
-
-#: ../app/controllers/news.php:539
-#, php-format
-msgid ""
-"Angezeigt werden Ankündigungen im Bereich \"%s\", die zwischen dem %s und "
-"dem %s sichtbar sind."
-msgstr ""
-"Announcements in the area \"%s\" are displayed, which are visible between %s "
-"and %s."
-
-#: ../app/controllers/news.php:541
-#, php-format
-msgid ""
-"Angezeigt werden Ankündigungen im Bereich \"%s\", die ab dem %s sichtbar "
-"sind."
-msgstr ""
-"Announcements in the area \"%s\" are displayed, which are visible from %s."
-
-#: ../app/controllers/news.php:543
-#, php-format
-msgid ""
-"Angezeigt werden Ankündigungen im Bereich \"%s\", die vor dem %s sichtbar "
-"sind."
-msgstr ""
-"Announcements in the area \"%s\" are displayed, which are visible before %s."
-
-#: ../app/controllers/news.php:545
-#, php-format
-msgid "Angezeigt werden Ankündigungen im Bereich \"%s\"."
-msgstr "Announcements in area %s are displayed."
-
-#: ../app/controllers/news.php:549
-#, php-format
-msgid ""
-"Angezeigt werden Ankündigungen zum Suchbegriff \"%s\", die zwischen dem %s "
-"und dem %s sichtbar sind."
-msgstr ""
-"Announcements matching the search criteria \"%s\" are displayed, which are "
-"visible between %s and %s."
-
-#: ../app/controllers/news.php:551
-#, php-format
-msgid ""
-"Angezeigt werden Ankündigungen zum Suchbegriff \"%s\", die ab dem %s "
-"sichtbar sind."
-msgstr ""
-"Announcements matching the search criteria \"%s\" are displayed, which are "
-"visible from %s."
-
-#: ../app/controllers/news.php:553
-#, php-format
-msgid ""
-"Angezeigt werden Ankündigungen zum Suchbegriff \"%s\", die vor dem %s "
-"sichtbar sind."
-msgstr ""
-"Announcements matching the search criteria \"%s\" are displayed, which are "
-"visible before %s."
-
-#: ../app/controllers/news.php:555
-#, php-format
-msgid "Angezeigt werden Ankündigungen zum Suchbegriff \"%s\"."
-msgstr "Announcements matching the search criteria \"%s\" are displayed."
-
-#: ../app/controllers/news.php:559
-#, php-format
-msgid ""
-"Angezeigt werden Ankündigungen, die zwischen dem %s und dem %s sichtbar sind."
-msgstr "Announcements which are visible between %s and %s are displayed."
-
-#: ../app/controllers/news.php:561
-#, php-format
-msgid "Angezeigt werden Ankündigungen, die ab dem %s sichtbar sind."
-msgstr "Announcements which are visible from %s are displayed."
-
-#: ../app/controllers/news.php:563
-#, php-format
-msgid "Angezeigt werden Ankündigungen, die vor dem %s sichtbar sind."
-msgstr "Announcements which are visible before %s are displayed."
-
-#: ../app/controllers/news.php:580
-#, php-format
-msgid "Es werden nur die ersten %s Ankündigungen angezeigt."
-msgstr "Only the first %s announcements are displayed."
-
-#: ../app/controllers/news.php:598
-msgid "Alle Ankündigungen"
-msgstr "All announcements"
-
-#: ../app/controllers/news.php:662
-#: ../app/controllers/course/ilias_interface.php:303
-msgid "Der Suchbegriff muss mindestens drei Zeichen lang sein."
-msgstr "The search criteria must be at least three characters long."
-
-#: ../app/controllers/news.php:796
-msgid "Zu diesem Suchbegriff wurden keine Bereiche gefunden."
-msgstr "No results in this area."
-
-#: ../app/controllers/module/download.php:18
-#: ../app/controllers/module/download.php:58
-msgid "Ungültiges Modul"
-msgstr "Invalid module"
-
-#: ../app/controllers/module/institute.php:29
-msgid "Module gruppiert nach verantwortlichen Einrichtungen"
-msgstr "Modules, grouped by responsible institutes"
-
-#: ../app/controllers/module/module.php:29
-msgid "Verwaltung der Module - Alle Module"
-msgstr "Module management - all modules"
-
-#: ../app/controllers/module/module.php:78
-msgid "Es wurden keine Module gefunden."
-msgstr "No modules found."
-
-#: ../app/controllers/module/module.php:80
-msgid "Es wurden noch keine Module angelegt."
-msgstr "No modules."
-
-#: ../app/controllers/module/module.php:115
-#: ../app/controllers/module/module.php:1322
-msgid "Neues Modul anlegen"
-msgstr "Create new module"
-
-#: ../app/controllers/module/module.php:122
-#, php-format
-msgid ""
-"Sie legen ein neues Modul an. Das Modul muss zunächst in der Ausgabesprache "
-"<em>%s</em> angelegt werden."
-msgstr ""
-"You are about to create a new module. Please enter all information in <em>"
-"%s</em> first."
-
-#: ../app/controllers/module/module.php:143
-#, php-format
-msgid "Modul: <em>%s</em> in der Ausgabesprache <em>%s</em> neu anlegen."
-msgstr "Module: Recreate <em>%s</em> in the output language <em>%s</em>."
-
-#: ../app/controllers/module/module.php:150
-#, php-format
-msgid "Modul: %s bearbeiten"
-msgstr "Module: edit %s"
-
-#: ../app/controllers/module/module.php:154
-#, php-format
-msgid "Das Modul \"%s\" wurde geändert."
-msgstr "Module \"%s\" changed."
-
-#: ../app/controllers/module/module.php:165
-#: ../app/controllers/module/module.php:667
-msgid "Ausgabesprache"
-msgstr "Standard language"
-
-#: ../app/controllers/module/module.php:171
-msgid "Download der Modulbeschreibung"
-msgstr "Download the module description"
-
-#: ../app/controllers/module/module.php:176
-msgid "Modulbeschreibung als PDF"
-msgstr "Module description as PDF"
-
-#: ../app/controllers/module/module.php:181
-msgid "Vergleich mit anderem Modul"
-msgstr "Compare with another module"
-
-#: ../app/controllers/module/module.php:189
-#: ../app/controllers/module/module.php:439
-#: ../app/views/module/module/module.php:63
-#: ../app/views/module/module/module.php:64
-msgid "Modul genehmigen"
-msgstr "Authorise module"
-
-#: ../app/controllers/module/module.php:197
-msgid "Log-Einträge dieses Moduls"
-msgstr "Log events for this module"
-
-#: ../app/controllers/module/module.php:208
-msgid "Varianten"
-msgstr "Variations"
-
-#: ../app/controllers/module/module.php:225
-#: ../app/controllers/module/module.php:687
-msgid "Alle Texte der Originalfassung anzeigen"
-msgstr "Show all texts of original version"
-
-#: ../app/controllers/module/module.php:318
-#: ../app/controllers/module/module.php:1072
-#: ../app/controllers/module/module.php:1418
-#: ../app/controllers/module/module.php:1423
-#: ../app/controllers/studiengaenge/shared_version.php:350
-#: ../app/controllers/studiengaenge/shared_version.php:721
-#: ../app/views/shared/contacts/select_range.php:8
-#: ../app/views/shared/contacts/add_ranges_to_contact.php:7
-#: ../app/views/module/module/diff_select.php:14
-#: ../app/views/studiengaenge/versionen/abschnitte.php:65
-#: ../app/views/studiengaenge/versionen/details_abschnitt.php:59
-msgid "Modul suchen"
-msgstr "Search for module"
-
-#: ../app/controllers/module/module.php:386
-#: ../app/controllers/module/module.php:809
-msgid "Unbekannter Deskriptor"
-msgstr "Unknown descriptor"
-
-#: ../app/controllers/module/module.php:390
-#: ../app/controllers/module/module.php:813
-msgid "Ein Deskriptor in der Original-Sprache kann nicht gelöscht werden."
-msgstr "A descriptor in the original language cannot be deleted."
-
-#: ../app/controllers/module/module.php:396
-#, php-format
-msgid "Der Deskriptor \"%s\" des Moduls \"%s\" wurde gelöscht!"
-msgstr "Descriptor \"%s\" of module \"%s\" deleted!"
-
-#: ../app/controllers/module/module.php:408
-#: ../app/views/shared/contacts/range.php:27
-#: ../app/views/shared/contacts/index.php:17
-#: ../app/views/materialien/files/range.php:33
-#: ../app/views/materialien/files/index.php:16
-#: ../app/views/materialien/files/details.php:56
-msgid "Zuordnungen"
-msgstr "Assignments"
-
-#: ../app/controllers/module/module.php:432
-#, php-format
-msgid "Modul \"%s\" genehmigt!"
-msgstr "Module \"%s\" approved!"
-
-#: ../app/controllers/module/module.php:454
-#: ../app/controllers/module/module.php:468
-#: ../app/controllers/module/module.php:602
-#: ../app/controllers/module/module.php:1004
-#: ../app/controllers/module/module.php:1080
-#: ../app/controllers/module/module.php:1091
-#: ../app/controllers/studiengaenge/shared_version.php:422
-#: ../app/controllers/studiengaenge/shared_version.php:508
-msgid "Unbekanntes Modul"
-msgstr "Unknown module"
-
-#: ../app/controllers/module/module.php:460
-#: ../app/views/module/module/copy_form.php:90
-#: ../app/views/module/module/module.php:96
-#: ../app/views/module/module/module.php:97
-msgid "Modul kopieren"
-msgstr "Copy module"
-
-#: ../app/controllers/module/module.php:505
-#, php-format
-msgid "Das Modul \"%s\" und alle zugehörigen Modulteile wurden kopiert!"
-msgstr "Module \"%s\" and all associated module parts copied!"
-
-#: ../app/controllers/module/module.php:510
-msgid "Das Modul konnte nicht kopiert werden!"
-msgstr "Cannot copy module!"
-
-#: ../app/controllers/module/module.php:513
-msgid "Beim Kopieren trat ein Fehler auf!"
-msgstr "An error occurred while copying!"
-
-#: ../app/controllers/module/module.php:567
-#: ../app/controllers/module/module.php:582
-msgid "Keine Angabe in Originalfassung."
-msgstr "No entry in standard language."
-
-#: ../app/controllers/module/module.php:633
-msgid "Neuen Modulteil anlegen"
-msgstr "Create new component"
-
-#: ../app/controllers/module/module.php:638
-#, php-format
-msgid ""
-"Sie legen einen neuen Modulteil für das Modul <em>%s</em> an. Der Modulteil "
-"muss zunächst in der Ausgabesprache <em>%s</em> angelegt werden."
-msgstr ""
-"You want to add a part for module <em>%s</em>. It needs to be set up in the "
-"standard language <em>%s</em> first."
-
-#: ../app/controllers/module/module.php:655
-#, php-format
-msgid "Modulteil: \"%s\" in der Ausgabesprache \"%s\" neu anlegen."
-msgstr "Module component: Recreate \"%s\" in the output language \"%s\"."
-
-#: ../app/controllers/module/module.php:660
-#, php-format
-msgid "Modulteil: %s"
-msgstr "Module component: %s"
-
-#: ../app/controllers/module/module.php:662
-#, php-format
-msgid "Der Modulteil \"%s\" wurde geändert."
-msgstr "Changes to \"%s\" saved."
-
-#: ../app/controllers/module/module.php:780
-#, php-format
-msgid ""
-"Neue Beschreibung zum Modulteil \"%s\" in der Ausgabesprache %s anlegen."
-msgstr "Create new description for \"%s\" in the language %s."
-
-#: ../app/controllers/module/module.php:789
-msgid "Log-Einträge dieses Modulteils"
-msgstr "Log entries of this module part"
-
-#: ../app/controllers/module/module.php:819
-#, php-format
-msgid "Der Deskriptor \"%s\" des Modulteils \"%s\" wurde gelöscht!"
-msgstr "Descriptor \"%s\" of module part \"%s\" has been deleted!"
-
-#: ../app/controllers/module/module.php:832
-#: ../app/controllers/module/module.php:849
-#: ../app/controllers/module/module.php:885
-#: ../app/controllers/module/module.php:945
-#: ../app/controllers/module/module.php:1023
-msgid "Unbekannter Modulteil"
-msgstr "Unknown module component"
-
-#: ../app/controllers/module/module.php:839
-#, php-format
-msgid ""
-"Der Modulteil \"%s\" wurde kopiert. Klicken Sie auf \"übernehmen\", um "
-"Änderungen an der Kopie zu speichern."
-msgstr ""
-"The module part \"%s\" has been copied. Click \"Apply\" to save changes made "
-"to the copy."
-
-#: ../app/controllers/module/module.php:873
-#: ../app/controllers/lvgruppen/lvgruppen.php:441
-#: ../app/controllers/lvgruppen/lvgruppen.php:446
-#: ../app/views/module/module/modulteil_lvg.php:57
-msgid "LV-Gruppe suchen"
-msgstr "Search course group"
-
-#: ../app/controllers/module/module.php:893
-msgid "Unbekannte Lehrveranstaltungsgruppe"
-msgstr "Unknown course group"
-
-#: ../app/controllers/module/module.php:904
-#, php-format
-msgid ""
-"Die Lehrveranstaltungsgruppe \"%s\" wurde dem Modulteil \"%s\" zugeordnet."
-msgstr "Course group \"%s\" added to \"%s\"."
-
-#: ../app/controllers/module/module.php:910
-#, php-format
-msgid ""
-"Die bestehende Zuordnung der Lehrveranstaltungsgruppe \"%s\" zum Modulteil "
-"\"%s\" wurde nicht geändert."
-msgstr "No changes to course group \"%s\" nor \"%s\"."
-
-#: ../app/controllers/module/module.php:924
-#: ../app/controllers/studiengaenge/shared_version.php:461
-msgid "Unbekannte Zuordnung"
-msgstr "Unknown allocation"
-
-#: ../app/controllers/module/module.php:931
-#, php-format
-msgid ""
-"Die Lehrveranstaltungsgruppe \"%s\" wurde vom Modulteil \"%s\" entfernt."
-msgstr "Course group \"%s\" deleted from %s\"."
-
-#: ../app/controllers/module/module.php:952
-#: ../app/controllers/lvgruppen/lvgruppen.php:176
-msgid "Neue Lehrveranstaltungsgruppe anlegen"
-msgstr "Create new course group"
-
-#: ../app/controllers/module/module.php:953
-#: ../app/controllers/lvgruppen/lvgruppen.php:177
-#, php-format
-msgid "Die Lehrveranstaltungsgruppe \"%s\" wurde angelegt."
-msgstr "Course groups \"%s\" created."
-
-#: ../app/controllers/module/module.php:954
-#: ../app/controllers/lvgruppen/lvgruppen.php:178
-msgid "Neue Lehrveranstaltungsgruppe anlegen."
-msgstr "Create new course group."
-
-#: ../app/controllers/module/module.php:956
-#: ../app/controllers/lvgruppen/lvgruppen.php:180
-#: ../app/views/lvgruppen/lvgruppen/index.php:34
-#: ../app/views/lvgruppen/lvgruppen/index.php:35
-msgid "Lehrveranstaltungsgruppe bearbeiten"
-msgstr "Edit course group"
-
-#: ../app/controllers/module/module.php:957
-#, php-format
-msgid "Die Lehrveranstaltungsgruppe \"%s\" wurde geändert."
-msgstr "The course group \"%s\" has been modified."
-
-#: ../app/controllers/module/module.php:958
-#: ../app/controllers/lvgruppen/lvgruppen.php:183
-#, php-format
-msgid "Lehrveranstaltungsgruppe \"%s\" bearbeiten."
-msgstr "Edit course group \"%s\"."
-
-#: ../app/controllers/module/module.php:1009
-#, php-format
-msgid "Modul \"%s\" gelöscht!"
-msgstr "Module \"%s\" deleted!"
-
-#: ../app/controllers/module/module.php:1028
-#, php-format
-msgid "Modulteil \"%s\" gelöscht!"
-msgstr "Module component \"%s\" deleted!"
-
-#: ../app/controllers/module/module.php:1120
-#: ../app/controllers/studiengaenge/shared_version.php:176
-msgid "Vergleichsansicht"
-msgstr "Comparison view"
-
-#: ../app/controllers/module/module.php:1309
-msgid "Liste der Module"
-msgstr "Module list"
-
-#: ../app/controllers/module/module.php:1313
-msgid "Gruppiert nach verantwortlichen Einrichtungen"
-msgstr "Grouped by responsible institute"
-
-#: ../app/controllers/module/module.php:1337
-msgid ""
-"Auf diesen Seiten können Sie die Module verwalten. Ein Modul kann ein oder "
-"mehrere Modulteil(e) haben."
-msgstr ""
-"On these pages, you may edit modules. A module can have one or more "
-"components."
-
-#: ../app/controllers/module/module.php:1338
-msgid ""
-"Module können nur gelöscht werden, wenn Sie noch keinem Studiengang "
-"zugeordnet sind."
-msgstr "Modules assigned to a course of study cannot be deleted."
-
-#: ../app/controllers/module/mvv_controller.php:302
-#, php-format
-msgid "\"%s\" ausgewählt."
-msgstr "\"%s\" selected."
-
-#: ../app/controllers/module/mvv_controller.php:318
-#, php-format
-msgid "%s Treffer für die Suche nach \"%s\"."
-msgstr "\"%s\" results found for \"%s\"."
-
-#: ../app/controllers/module/mvv_controller.php:325
-#, php-format
-msgid "Keine Treffer für die Suche nach \"%s\"."
-msgstr "No results for \"%s\"."
-
-#: ../app/controllers/archive.php:36
-msgid "Veranstaltungsarchiv"
-msgstr "Course archive"
-
-#: ../app/controllers/archive.php:47
-msgid "Name der archivierten Veranstaltung"
-msgstr "Name of archived course"
-
-#: ../app/controllers/archive.php:84
-#, php-format
-msgid "Die Veranstaltung %1$s wurde aus dem Archiv gelöscht!"
-msgstr "The course %1$s has been deleted from the archive!"
-
-#: ../app/controllers/archive.php:89
-#, php-format
-msgid "Fehler beim Löschen der Veranstaltung %1$s aus dem Archiv!"
-msgstr "Error while deleting the course %1$s from the archive!"
-
-#: ../app/controllers/web_migrate.php:33
-msgid "Stud.IP Web-Migrator"
-msgstr "Stud.IP web migrator"
-
-#: ../app/controllers/web_migrate.php:56 ../app/controllers/web_migrate.php:102
-msgid "Die Datenbank wurde erfolgreich migriert."
-msgstr "Database was migrated successfully."
-
-#: ../app/controllers/web_migrate.php:73
-msgid "Die Sperre wurde aufgehoben."
-msgstr ""
-
-#: ../app/controllers/web_migrate.php:118
-msgid "Offene Migrationen"
-msgstr ""
-
-#: ../app/controllers/web_migrate.php:122
-msgid "Ausgeführte Migrationen"
-msgstr ""
-
-#: ../app/controllers/web_migrate.php:127
-msgid "Aktueller Versionsstand"
-msgstr "Current version"
-
-#: ../app/controllers/library_file.php:22
-#: ../app/controllers/library_file.php:59 ../app/controllers/file.php:892
-#: ../app/controllers/file.php:1056
-msgid "Die Literaturverwaltung ist ausgeschaltet!"
-msgstr "The reference management is disabled!"
-
-#: ../app/controllers/library_file.php:26
-#: ../app/controllers/library_file.php:31
-#: ../app/controllers/library_file.php:64
-#: ../app/controllers/library_file.php:71
-msgid ""
-"Der Bibliothekseintrag kann nicht erstellt werden, da kein Ordner angegeben "
-"wurde!"
-msgstr ""
-"The library entry could not be created because no folder has been selected!"
-
-#: ../app/controllers/library_file.php:36
-#: ../app/controllers/library_file.php:97
-#: ../app/controllers/library_file.php:238
-msgid "Es sind keine Eigenschaften für Bibliothekseinträge definiert!"
-msgstr "No properties for library entries are defined!"
-
-#: ../app/controllers/library_file.php:41
-msgid "Es sind keine Dokumenttypen für Bibliothekseinträge definiert!"
-msgstr "No document types for library entries are defined!"
-
-#: ../app/controllers/library_file.php:57
-msgid "Literatureintrag anlegen"
-msgstr "Create reference entry"
-
-#: ../app/controllers/library_file.php:88
-#, php-format
-msgid "Der Dokumenttyp \"%s\" ist nicht definiert!"
-msgstr "The document type \"%s\" is not defined!"
-
-#: ../app/controllers/library_file.php:155
-#: ../app/controllers/library_file.php:296
-msgid "Es wurden keine Daten eingegeben!"
-msgstr "No files have been selected!"
-
-#: ../app/controllers/library_file.php:159
-#: ../app/controllers/library_file.php:300
-msgid "Mindestens ein Pflichfeld ist leer!"
-msgstr "At least one mandatory field is empty!"
-
-#: ../app/controllers/library_file.php:182
-#, php-format
-msgid "Der Bibliothekseintrag \"%s\" wurde hinzugefügt!"
-msgstr "The library entry \"%s\" has been added!"
-
-#: ../app/controllers/library_file.php:196
-msgid "Literatureintrag bearbeiten"
-msgstr "Edit reference entry"
-
-#: ../app/controllers/library_file.php:199
-msgid "Es wurde kein Literatureintrag ausgewählt!"
-msgstr "No reference entry has been selected!"
-
-#: ../app/controllers/library_file.php:206
-msgid "Der gewählte Literatureintrag wurde nicht gefunden!"
-msgstr "The selected reference entry could not be found!"
-
-#: ../app/controllers/library_file.php:214
-msgid "Die gewählte Datei ist kein Bibliothekseintrag!"
-msgstr "The selected file is not a library entry!"
-
-#: ../app/controllers/library_file.php:230
-msgid "Der Bibliothekseintrag ist von einem unbekannten Dokumenttyp!"
-msgstr "The library entry is of an unknown document type!"
-
-#: ../app/controllers/library_file.php:314
-msgid "Der Bibliothekseintrag wurde aktualisiert!"
-msgstr "The library entry has been updated!"
-
-#: ../app/controllers/library_file.php:320
-msgid "Es trat ein Fehler beim Aktualisieren des Bibliothekseintrages auf!"
-msgstr "An error occurred when updating the library entry!"
-
-#: ../app/controllers/materialien/files.php:35
-msgid "Verwaltung der Dokumente"
-msgstr "Document management"
-
-#: ../app/controllers/materialien/files.php:88
-#, php-format
-msgid ""
-"Es wurden noch keine Dokumente angelegt. Klicken Sie %shier%s, um ein neues "
-"Dokument anzulegen."
-msgstr "No documents yet. Click  %shere%s to create a new document."
-
-#: ../app/controllers/materialien/files.php:118
-msgid "MVV Dokument"
-msgstr "MVV document"
-
-#: ../app/controllers/materialien/files.php:166
-msgid "Das Dokument wurde gespeichert."
-msgstr "The document has been saved."
-
-#: ../app/controllers/materialien/files.php:204
-msgid "MVV Dokument Zuordnen"
-msgstr "Assign MVV document"
-
-#: ../app/controllers/materialien/files.php:240
-#, php-format
-msgid "%d Änderungen an der Zuweisung der Dokumente wurden gespeichert."
-msgstr "%d changes to the assignment of the documents have been saved."
-
-#: ../app/controllers/materialien/files.php:242
-msgid "Die Änderung der Zuweisung der Dokumente wurde gespeichert."
-msgstr "The change to the assignment of the documents has been saved."
-
-#: ../app/controllers/materialien/files.php:290
-#, php-format
-msgid "%d Änderungen an den Zuweisungen zum Dokument wurden gespeichert."
-msgstr "%d changes to the assignments of the document have been saved."
-
-#: ../app/controllers/materialien/files.php:292
-msgid "Die Änderung der Zuweisung zum Dokument wurde gespeichert."
-msgstr "The change to the assignment of the document has been saved."
-
-#: ../app/controllers/materialien/files.php:333
-msgid "Die angegebene URL muss mit http(s) beginnen."
-msgstr "The specified URL must start with http(s)."
-
-#: ../app/controllers/materialien/files.php:342
-msgid "Die angegebene URL ist ungültig. Die URL muss mit http(s) beginnen."
-msgstr "The specified URL is invalid. The URL must begin with http(s)."
-
-#: ../app/controllers/materialien/files.php:414
-msgid "Datei gelöscht."
-msgstr "File deleted."
-
-#: ../app/controllers/materialien/files.php:436
-msgid "Die Dokument Zuweisung wurde gelöscht."
-msgstr "The document assignment has been deleted."
-
-#: ../app/controllers/materialien/files.php:464
-msgid "Das Dokument wurde gelöscht."
-msgstr "The document has been deleted."
-
-#: ../app/controllers/materialien/files.php:484
-msgid "Das Dokument und alle seine Zuweisungen wurden gelöscht."
-msgstr "The document and all its assignments have been deleted."
-
-#: ../app/controllers/materialien/files.php:496
-msgid "Dokument Details"
-msgstr "Document details"
-
-#: ../app/controllers/materialien/files.php:624
-#: ../app/views/shared/form_dokumente.php:95
-msgid "Neues Dokument anlegen"
-msgstr "Create new document"
-
-#: ../app/controllers/materialien/files.php:636
-msgid ""
-"Auf dieser Seite können Sie Dokumente verwalten, die mit Studiengängen, "
-"Studiengangteilen usw. verknüpft sind."
-msgstr "Manage documents referenced by fields of study or other objects."
-
-#: ../app/controllers/materialien/files.php:668
-msgid "Name, Kategorie, Schlagwort"
-msgstr "Name, category, keyword"
-
-#: ../app/controllers/my_ilias_accounts.php:33
-#: ../app/controllers/admin/ilias_interface.php:42
-msgid "Ilias-Interface ist nicht aktiviert."
-msgstr "The ILIAS interface is not activated."
-
-#: ../app/controllers/my_ilias_accounts.php:49
-msgid "Meine Lernobjekte und ILIAS-Accounts"
-msgstr "My learning objects and ILIAS accounts"
-
-#: ../app/controllers/my_ilias_accounts.php:64
-#, php-format
-msgid "Zur %s-Startseite"
-msgstr "Go to the %s start page"
-
-#: ../app/controllers/my_ilias_accounts.php:88
-#: ../app/controllers/my_ilias_accounts.php:103
-#: ../app/controllers/course/ilias_interface.php:525
-#: ../app/controllers/course/ilias_interface.php:548
-msgid "Diese ILIAS-Installation ist nicht aktiv."
-msgstr "This ILIAS installation is inactive."
-
-#: ../app/controllers/my_ilias_accounts.php:134
-msgid "ILIAS-Account aktualisiert."
-msgstr "ILIAS account updated."
-
-#: ../app/controllers/my_ilias_accounts.php:147
-msgid "ILIAS-Account zugeordnet."
-msgstr "ILIAS account assigned."
-
-#: ../app/controllers/my_ilias_accounts.php:152
-msgid "Login fehlgeschlagen. Die Zuordnung konnte nicht geändert werden."
-msgstr "Login failed. The assignment could not be changed."
-
-#: ../app/controllers/my_ilias_accounts.php:157
-msgid "Account-Zuordnung entfernt."
-msgstr "Remove accound assignment."
-
-#: ../app/controllers/my_ilias_accounts.php:181
-#, php-format
-msgid "Automatischer Login für %s-Installation (Nutzername %s) fehlgeschlagen."
-msgstr "Automatic login for the installation %s (username %s) failed."
-
-#: ../app/controllers/my_ilias_accounts.php:185
-#, php-format
-msgid ""
-"Keine Kategorie zum Anlegen neuer Lernobjekte in der %s-Installation "
-"vorhanden."
-msgstr ""
-"No category available to create new learning objects in the %s installation."
-
-#: ../app/controllers/questionnaire.php:88
-#: ../app/views/questionnaire/evaluate.php:46
-#: ../app/views/questionnaire/answer.php:50
-msgid "Kontext auswählen"
-msgstr "Select context"
-
-#: ../app/controllers/questionnaire.php:98
-msgid "Neuer Fragebogen"
-msgstr "New questionnaire"
-
-#: ../app/controllers/questionnaire.php:100
-msgid "Fragebogen bearbeiten: "
-msgstr "Edit questionnaire: "
-
-#: ../app/controllers/questionnaire.php:103
-msgid "Fragebogen ist nicht bearbeitbar."
-msgstr "The questionnaire cannot be edited."
-
-#: ../app/controllers/questionnaire.php:107
-msgid ""
-"Fragebogen ist gestartet worden und kann jetzt nicht mehr bearbeitet werden. "
-"Stoppen oder löschen Sie den Fragebogen stattdessen."
-msgstr ""
-"The questionnaire has been started and cannot be edited anymore. Stop or "
-"delete the questionnaire instead."
-
-#: ../app/controllers/questionnaire.php:157
-msgid ""
-"Der Fragebogen darf nicht von Ihnen auf die Startseite eingehängt werden, "
-"sondern nur von einem Admin."
-msgstr ""
-"The questionnaire must not be put on the start page by you. Only an admin "
-"may do that."
-
-#: ../app/controllers/questionnaire.php:160
-msgid ""
-"Der Fragebogen darf nicht in die ausgewählte Veranstaltung eingebunden "
-"werden."
-msgstr "The questionnaire must not be inserted in the selected course."
-
-#: ../app/controllers/questionnaire.php:163
-msgid "Der Fragebogen darf nicht in diesen Bereich eingebunden werden."
-msgstr "The questionnaire must not be inserted in this area."
-
-#: ../app/controllers/questionnaire.php:173
-msgid "Der Fragebogen wurde erfolgreich erstellt."
-msgstr "Questionnaire created."
-
-#: ../app/controllers/questionnaire.php:175
-msgid "Der Fragebogen wurde gespeichert."
-msgstr "The questionnaire has been saved."
-
-#: ../app/controllers/questionnaire.php:221
-msgid "Der Fragebogen ist nicht kopierbar."
-msgstr "The questionnaire cannot be copied."
-
-#: ../app/controllers/questionnaire.php:246
-msgid "Der Fragebogen wurde kopiert. Wo soll er angezeigt werden?"
-msgstr "The questionnaire has been copied. Where shall it be displayed?"
-
-#: ../app/controllers/questionnaire.php:254
-#: ../app/controllers/questionnaire.php:337
-#: ../app/controllers/questionnaire.php:353
-#: ../app/controllers/questionnaire.php:410
-msgid "Der Fragebogen ist nicht bearbeitbar."
-msgstr "The questionnaire cannot be edited."
-
-#: ../app/controllers/questionnaire.php:257
-msgid "Der Fragebogen wurde gelöscht."
-msgstr "The questionnaire has been deleted."
-
-#: ../app/controllers/questionnaire.php:276
-msgid "Fragebögen wurden gelöscht."
-msgstr "Questionnaires have been deleted."
-
-#: ../app/controllers/questionnaire.php:291
-#: ../app/controllers/questionnaire.php:311
-#: ../app/controllers/questionnaire.php:323
-#: ../app/controllers/questionnaire.php:897
-msgid "Der Fragebogen ist nicht einsehbar."
-msgstr "The questionnaire cannot be shown."
-
-#: ../app/controllers/questionnaire.php:316
-#, php-format
-msgid "Fragebogen beantworten: %s"
-msgstr "Answer questionnaire: %s"
-
-#: ../app/controllers/questionnaire.php:326
-#, php-format
-msgid "Fragebogen: %s"
-msgstr "Questionnaire: %s"
-
-#: ../app/controllers/questionnaire.php:341
-msgid "Die Befragung wurde beendet."
-msgstr "The evaluation has ended."
-
-#: ../app/controllers/questionnaire.php:357
-msgid "Die Befragung wurde gestartet."
-msgstr "The evaluation has been started."
-
-#: ../app/controllers/questionnaire.php:369
-msgid "Der Fragebogen ist nicht exportierbar."
-msgstr "The questionnaire cannot be exported."
-
-#: ../app/controllers/questionnaire.php:523
-msgid "Die Bereichszuweisungen wurden gespeichert."
-msgstr "Allocation saved."
-
-#: ../app/controllers/questionnaire.php:535
-#, php-format
-msgid "Bereiche für Fragebogen: %s"
-msgstr "Allocation for questionnaire: %s"
-
-#: ../app/controllers/questionnaire.php:543
-#: ../app/controllers/questionnaire.php:555
-#: ../app/controllers/questionnaire.php:566
-msgid "Teilnehmergruppe suchen"
-msgstr ""
-
-#: ../app/controllers/questionnaire.php:691
-msgid ""
-"Sie haben unzureichende Berechtigungen an der gewählten Einrichtung! Bitte "
-"wählen Sie eine andere Einrichtung!"
-msgstr ""
-"You have insufficient permissions on the selected institute! Please select "
-"another institute!"
-
-#: ../app/controllers/questionnaire.php:706
-msgid "Es wurde kein gültiges Semester ausgewählt!"
-msgstr "No valid semester has been selected!"
-
-#: ../app/controllers/questionnaire.php:748
-msgid ""
-"Es wurde keine Veranstaltung ausgewählt! Bitte mindestens eine Veranstaltung "
-"auswählen!"
-msgstr "No course has been specified! Please select at least one course!"
-
-#: ../app/controllers/questionnaire.php:763
-msgid ""
-"Ihre Berechtigungen reichen nicht, um Fragebögen zu der folgenden "
-"Veranstaltung zuweisen zu können:"
-msgid_plural ""
-"Ihre Berechtigungen reichen nicht, um Fragebögen zu den folgenden "
-"Veranstaltungen zuweisen zu können:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/questionnaire.php:799
-msgid ""
-"Es wurde kein Fragebogen ausgewählt! Bitte mindestens einen Fragebogen "
-"auswählen!"
-msgstr ""
-"No questionnaire has been selected! Please select at least one questionnaire!"
-
-#: ../app/controllers/questionnaire.php:847
-#, php-format
-msgid ""
-"Fragebogen \"%1$s\" konnte nicht in Veranstaltung \"%2$s\" kopiert werden!"
-msgstr "Questionnaire \"%1$s\" could not be copied into course \"%2$s\"!"
-
-#: ../app/controllers/questionnaire.php:869
-#, php-format
-msgid ""
-"Fragebogen \"%1$s\" konnte nicht zu Veranstaltung \"%2$s\" zugeordnet werden!"
-msgstr "Questionnaire \"%1$s\" could not be assigned to course \"%2$s\"!"
-
-#: ../app/controllers/questionnaire.php:881
-msgid "Beim Zuordnen traten Fehler auf:"
-msgstr "Errors occurred while assigning:"
-
-#: ../app/controllers/questionnaire.php:886
-msgid ""
-"Alle gewählten Fragebögen wurden den gewählten Veranstaltungen zugeordnet!"
-msgstr ""
-"All selected questionnaires have been assigned to the selected courses!"
-
-#: ../app/controllers/questionnaire.php:930
-#, php-format
-msgid "%s hat an der Befragung '%s' teilgenommen."
-msgstr "%s has participated in the survey '%s'."
-
-#: ../app/controllers/questionnaire.php:943
-#: ../app/controllers/questionnaire.php:946
-#: ../app/controllers/questionnaire.php:949
-#: ../app/controllers/questionnaire.php:952
-msgid "Danke für die Teilnahme!"
-msgstr "Thanks for your participation!"
-
-#: ../app/controllers/loncapa.php:34
-msgid "LonCapa Zugang nicht erlaubt"
-msgstr "LonCapa access denied"
-
-#: ../app/controllers/course/feedback.php:28
-#, php-format
-msgid "%s - Feedback"
-msgstr "%s - Feedback"
-
-#: ../app/controllers/course/feedback.php:36
-msgid ""
-"Auf dieser Seite werden sämtliche Feedback Elemente der Veranstaltung "
-"angezeigt"
-msgstr "This page displays every feedback element of the course"
-
-#: ../app/controllers/course/feedback.php:62
-msgid "Neues Feedback-Element anlegen"
-msgstr "Create new Feedback-Element"
-
-#: ../app/controllers/course/feedback.php:104
-msgid "Feedback-Element erfolgreich angelegt"
-msgstr "Feedback-Element created successfully"
-
-#: ../app/controllers/course/feedback.php:106
-msgid ""
-"Sie haben keine Berechtigung, an dieser Stelle ein Feedback-Element "
-"anzulegen."
-msgstr "You are not allowed to create a feedback element in this place."
-
-#: ../app/controllers/course/feedback.php:134
-#: ../app/controllers/course/feedback.php:271
-msgid "Änderungen gespeichert"
-msgstr "Saved changes"
-
-#: ../app/controllers/course/feedback.php:147
-msgid "Das Feedback-Element und dazugehörige Einträge wurden gelöscht."
-msgstr "The feedback element and the associated entries have been deleted."
-
-#: ../app/controllers/course/feedback.php:149
-msgid "Das Feedback-Element konnte nicht gelöscht werden."
-msgstr "The feedback element could not be deleted."
-
-#: ../app/controllers/course/feedback.php:171
-msgid "Sie haben keine Berechtigung, die Einstellungen zu ändern."
-msgstr "You are not allowed to change the setting."
-
-#: ../app/controllers/course/feedback.php:205
-#, php-format
-msgid "Feedback: %s"
-msgstr "Feedback: %s"
-
-#: ../app/controllers/course/feedback.php:241
-msgid "Feedback gespeichert"
-msgstr "Feedback saved"
-
-#: ../app/controllers/course/feedback.php:243
-msgid "Feedback konnte nicht gespeichert werden"
-msgstr "Feedback could not be saved"
-
-#: ../app/controllers/course/feedback.php:281
-msgid "Das Feedback wurde erfolgreich gelöscht."
-msgstr "The feedback has been deleted successfully."
-
-#: ../app/controllers/course/feedback.php:283
-msgid "Das Feedback konnte nicht gelöscht werden"
-msgstr "The feedback could not be deleted"
-
-#: ../app/controllers/course/overview.php:116
-msgid ""
-"Sie haben noch nicht die für diese Veranstaltung benötigten "
-"Zusatzinformationen eingetragen."
-msgstr ""
-"You have not entered all the additional information required for this course."
-
-#: ../app/controllers/course/overview.php:119
-#, php-format
-msgid ""
-"Um das nachzuholen, gehen Sie unter \"Teilnehmende\" auf \"Zusatzangaben\" "
-"oder %1$s direkt zu den Zusatzangaben. %2$s"
-msgstr ""
-"To make good for that go to \"participants\" and then to \"additional "
-"information\" or %1$s go directly to additional information. %2$s"
-
-#: ../app/controllers/course/overview.php:143
-#: ../app/controllers/course/details.php:273
-#: ../app/views/course/statusgroups/getgroup.php:99
-msgid "Austragen aus der Veranstaltung"
-msgstr "Sign out of the course"
-
-#: ../app/controllers/course/overview.php:152
-msgid "Sprechstunden der Lehrenden"
-msgstr "Consultation hours of the lecturers"
-
-#: ../app/controllers/course/overview.php:181
-#: ../app/controllers/course/studygroup.php:158
-msgid "Link zu dieser Studiengruppe kopieren"
-msgstr "Copy link to this study group"
-
-#: ../app/controllers/course/overview.php:190
-#: ../app/controllers/course/details.php:285
-msgid "Link zu dieser Veranstaltung kopieren"
-msgstr "Copy link to this course"
-
-#: ../app/controllers/course/room_requests.php:49
-msgid "Verwalten von Raumanfragen"
-msgstr "Room request management"
-
-#: ../app/controllers/course/room_requests.php:79
-#: ../app/views/course/room_requests/index.php:139
-msgid "Neue Raumanfrage erstellen"
-msgstr "Create new room request"
-
-#: ../app/controllers/course/room_requests.php:132
-msgid "alle regelmäßigen und unregelmäßigen Termine der Veranstaltung"
-msgstr "all periodic and aperiodic dates of the course"
-
-#: ../app/controllers/course/room_requests.php:137
-msgid "alle Termine einer regelmäßigen Zeit"
-msgstr "all dates of a periodic date"
-
-#: ../app/controllers/course/room_requests.php:144
-msgid "Einzeltermin der Veranstaltung"
-msgstr "Single date of the course"
-
-#: ../app/controllers/course/room_requests.php:151
-msgid ""
-"Hier können Sie festlegen, welche Art von Raumanfrage Sie erstellen möchten."
-msgstr "Here you can choose which type of room request you want to create."
-
-#: ../app/controllers/course/room_requests.php:260
-#: ../app/controllers/course/room_requests.php:401
-#: ../app/controllers/course/room_requests.php:574
-#: ../app/controllers/course/room_requests.php:764
-#: ../app/controllers/course/room_requests.php:941
-msgid "Hier können Sie Angaben zu gewünschten Raumeigenschaften machen."
-msgstr "Here, you can provide information about wished room properties."
-
-#: ../app/controllers/course/room_requests.php:346
-#: ../app/controllers/course/room_requests.php:649
-msgid "Es wurde kein Raumname angegeben!"
-msgstr "No room name has been provided!"
-
-#: ../app/controllers/course/room_requests.php:359
-#: ../app/controllers/course/room_requests.php:671
-msgid "Es wurde keine Raumkategorie ausgewählt!"
-msgstr "No room category has been selected!"
-
-#: ../app/controllers/course/room_requests.php:412
-msgid ""
-"Das Erstellen von Raumanfragen anhand von Eigenschaften ist nicht erlaubt!"
-msgstr "Creating a room request from properties is not allowed!"
-
-#: ../app/controllers/course/room_requests.php:509
-#: ../app/controllers/course/room_requests.php:701
-msgid "Es wurde keine Anzahl an gewünschten Sitzplätzen angegeben!"
-msgstr "No amount of requested seats has been specified!"
-
-#: ../app/controllers/course/room_requests.php:544
-#: ../app/controllers/course/room_requests.php:736
-#: ../app/controllers/course/room_requests.php:912
-msgid "Die Anfrage wurde gespeichert!"
-msgstr "The request has been saved!"
-
-#: ../app/controllers/course/room_requests.php:550
-#: ../app/controllers/course/room_requests.php:742
-#: ../app/controllers/course/room_requests.php:919
-msgid "Die Anfrage konnte nicht gespeichert werden!"
-msgstr "The request could not be saved!"
-
-#: ../app/controllers/course/room_requests.php:806
-msgid "Die ausgewählte Ressource ist kein Raum!"
-msgstr "The selected resource is not a room!"
-
-#: ../app/controllers/course/room_requests.php:854
-msgid "Es wurde keine Anzahl an Sitzplätzen angegeben!"
-msgstr "No amount of seats has been specified!"
-
-#: ../app/controllers/course/room_requests.php:962
-#, php-format
-msgid "Möchten Sie die Raumanfrage \"%s\" löschen?"
-msgstr "Are you sure you want to delete the room request \"%s\"?"
-
-#: ../app/controllers/course/lvgselector.php:28
-#: ../app/controllers/course/timesrooms.php:25
-#: ../app/views/course/archive/confirm.php:76
-#: ../app/views/archive/overview.php:4 ../app/views/archive/wiki.php:4
-#: ../app/views/archive/forum.php:4
-msgid "Es wurde keine Veranstaltung ausgewählt!"
-msgstr "No course selected!"
-
-#: ../app/controllers/course/lvgselector.php:64
-msgid ""
-"Für diesen Veranstaltungstyp ist die Zuordnung zu Lehrveranstaltungsgruppen "
-"nicht vorgesehen."
-msgstr "This kind of course cannot assigned to course groups."
-
-#: ../app/controllers/course/lvgselector.php:295
-msgid "Die Zuordnung der LV-Gruppen wurde übernommen."
-msgstr "The assignment to course groups has been saved."
-
-#: ../app/controllers/course/lvgselector.php:305
-msgid ""
-"Auf dieser Seite kann die Veranstaltung ausgewählten "
-"Lehrveranstaltungsgruppen zugeordnet werden."
-msgstr "Assign courses to course groups."
-
-#: ../app/controllers/course/members.php:79
-#: ../app/controllers/course/members.php:80
-msgid "Wartende Personen"
-msgstr "Persons waiting"
-
-#: ../app/controllers/course/members.php:126
-#: ../app/controllers/course/management.php:85
-msgid "Sichtbarkeit ändern"
-msgstr "Change visibility"
-
-#: ../app/controllers/course/members.php:151
-msgid "Warteliste (nicht aktiv)"
-msgstr "Waitlist (not active)"
-
-#: ../app/controllers/course/members.php:159
-msgid "automatisches Nachrücken ist eingeschaltet"
-msgstr "automatic moving up is activated"
-
-#: ../app/controllers/course/members.php:161
-msgid "automatisches Nachrücken ist ausgeschaltet"
-msgstr "automatic moving up is deactivated"
-
-#: ../app/controllers/course/members.php:166
-#, php-format
-msgid "Anmeldeliste (Platzverteilung am %s)"
-msgstr "Application list (will be drawn on %s)"
-
-#: ../app/controllers/course/members.php:200
-msgid "Wartenden"
-msgstr "Persons waiting"
-
-#: ../app/controllers/course/members.php:235
-#, php-format
-msgid "Bemerkung für %s"
-msgstr "Comment for %s"
-
-#: ../app/controllers/course/members.php:269
-msgid "Bemerkung wurde erfolgreich gespeichert."
-msgstr "Comment has been saved successfully."
-
-#: ../app/controllers/course/members.php:271
-msgid "Bemerkung konnte nicht erfolgreich gespeichert werden."
-msgstr "Comment not saved."
-
-#: ../app/controllers/course/members.php:298
-msgid "Es wurde eine neue Person hinzugefügt."
-msgstr "One new person added."
-
-#: ../app/controllers/course/members.php:300
-#, php-format
-msgid "Es wurden %s neue Personen hinzugefügt."
-msgstr "%s new persons have been added."
-
-#: ../app/controllers/course/members.php:329
-#, php-format
-msgid "Ein %s wurde hinzugefügt."
-msgstr "A %s has been added."
-
-#: ../app/controllers/course/members.php:331
-#, php-format
-msgid "Es wurden %s %s Personen hinzugefügt."
-msgstr "%s %s persons have been added."
-
-#: ../app/controllers/course/members.php:362
-#, php-format
-msgid "Es wurde %u neue Person auf der Warteliste hinzugefügt."
-msgid_plural "Es wurden %u neue Personen auf der Warteliste hinzugefügt."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/members.php:366
-#, php-format
-msgid "%u Person konnte nicht auf die Warteliste eingetragen werden."
-msgid_plural ""
-"%u neue Personen konnten nicht auf die Warteliste eingetragen werden."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/members.php:427
-#: ../app/controllers/course/basicdata.php:556
-#: ../app/controllers/admin/user.php:524
-#, php-format
-msgid "%s wurde hinzugefügt."
-msgstr "%s has been added."
-
-#: ../app/controllers/course/members.php:494
-#: ../app/views/course/members/select_course.php:5
-msgid "Zielveranstaltung auswählen"
-msgstr "Select target course"
-
-#: ../app/controllers/course/members.php:519
-msgid "Eine Person wurde in die Zielveranstaltung eingetragen."
-msgstr "One person has been entered into the course."
-
-#: ../app/controllers/course/members.php:521
-#, php-format
-msgid "%s Person(en) wurde(n) in die Zielveranstaltung eingetragen."
-msgstr "%s persons added to course."
-
-#: ../app/controllers/course/members.php:528
-msgid ""
-"Eine Person ist bereits in die Zielveranstaltung eingetragen und kann daher "
-"nicht verschoben/kopiert werden."
-msgstr "Person is already assigned to course."
-
-#: ../app/controllers/course/members.php:531
-#, php-format
-msgid ""
-"%s Person(en) sind bereits in die Zielveranstaltung eingetragen und konnten "
-"daher nicht verschoben/kopiert werden."
-msgstr "%s persons have already been enroled to the course."
-
-#: ../app/controllers/course/members.php:539
-msgid "Eine Person kann nicht in die Zielveranstaltung eingetragen werden."
-msgstr "Unable to enrol one person to the course."
-
-#: ../app/controllers/course/members.php:541
-#, php-format
-msgid ""
-"%s Person(en) konnten nicht in die Zielveranstaltung eingetragen werden."
-msgstr "%s persons not enroled to the course."
-
-#: ../app/controllers/course/members.php:547
-msgid "Bitte wählen Sie eine Zielveranstaltung."
-msgstr "Please select a course."
-
-#: ../app/controllers/course/members.php:677
-#, php-format
-msgid "Sie wurden in die Veranstaltung **%s** eingetragen."
-msgstr "You have been enroled in the course **%s**."
-
-#: ../app/controllers/course/members.php:701
-#, php-format
-msgid "Sie wurden manuell in die Veranstaltung **%s** eingetragen."
-msgstr "You have been enroled in the course **%s**."
-
-#: ../app/controllers/course/members.php:713
-msgid "Niemanden gefunden!"
-msgstr "Nobody found!"
-
-#: ../app/controllers/course/members.php:717
-#, php-format
-msgid "%s Personen in die Veranstaltung eingetragen!"
-msgstr "%s persons added to the course!"
-
-#: ../app/controllers/course/members.php:721
-#, php-format
-msgid "%s Personen waren bereits in der Veranstaltung eingetragen!"
-msgstr "%s persons have already been enroled in the course!"
-
-#: ../app/controllers/course/members.php:726
-#, php-format
-msgid ""
-"%s Personen konnten <b>nicht eindeutig</b>\n"
-"                zugeordnet werden! Nehmen Sie die Zuordnung bitte manuell "
-"vor."
-msgstr ""
-"%s persons could <b>not be assigned unambiguously</b>! Please do a manual "
-"assignment."
-
-#: ../app/controllers/course/members.php:733
-#, php-format
-msgid "%s konnten <b>nicht</b> zugeordnet werden!"
-msgstr "%s could <b>not</b> be assigned!"
-
-#: ../app/controllers/course/members.php:737
-#, php-format
-msgid ""
-"%s Personen konnten <b>nicht</b> zugeordnet werden, da das ausgewählte "
-"Kontingent keine freien Plätze hat."
-msgstr ""
-"%s persons could <b>not</b> be assigned since the selected quota doesn't "
-"have free seats."
-
-#: ../app/controllers/course/members.php:788
-msgid "Ihre Sichtbarkeit wurde erfolgreich geändert."
-msgstr "Your visibility was changed successfully."
-
-#: ../app/controllers/course/members.php:790
-msgid ""
-"Leider ist beim Ändern der Sichtbarkeit ein Fehler aufgetreten. Die "
-"Einstellung konnte nicht vorgenommen werden."
-msgstr ""
-"An error occurred while changing the visibility. The setting was not altered."
-
-#: ../app/controllers/course/members.php:1029
-#, php-format
-msgid "%s wurde in die Veranstaltung mit dem Status <b>%s</b> eingetragen."
-msgstr "%s has been enroled in the course with status <b>%s</b>."
-
-#: ../app/controllers/course/members.php:1032
-#, php-format
-msgid ""
-"%s wurde aus der Anmelde bzw. Warteliste mit dem Status\n"
-"                            <b>%s</b> in die Veranstaltung eingetragen."
-msgstr ""
-"%s has been removed from the registration resp. waiting list and enroled in "
-"this course with status <b>%s</b>."
-
-#: ../app/controllers/course/members.php:1035
-#, php-format
-msgid ""
-"%s wurde mit dem Status <b>%s</b> endgültig akzeptiert\n"
-"                            und damit in die Veranstaltung aufgenommen."
-msgstr "%s has finally been enroled in the course with status <b>%s</b>."
-
-#: ../app/controllers/course/members.php:1046
-msgid "Sie haben niemanden zum Hochstufen ausgewählt."
-msgstr "No-one selected."
-
-#: ../app/controllers/course/members.php:1081
-#, php-format
-msgid "%s %s wurde aus der Veranstaltung ausgetragen."
-msgstr "%s %s were removed from the course."
-
-#: ../app/controllers/course/members.php:1087
-#, php-format
-msgid "%u %s wurden aus der Veranstaltung entfernt."
-msgstr "%u %s were removed from the course."
-
-#: ../app/controllers/course/members.php:1095
-#, php-format
-msgid "Sie haben keine %s zum Austragen ausgewählt"
-msgstr "You didn't select %s to be removed"
-
-#: ../app/controllers/course/members.php:1113
-#, php-format
-msgid "Wollen Sie die/den \"%s\" wirklich austragen?"
-msgstr "Do you really want to sign off the \"%s\"?"
-
-#: ../app/controllers/course/members.php:1165
-#, php-format
-msgid "Das Hochstufen auf den Status  %s von %s wurde erfolgreich durchgeführt"
-msgstr "The promotion to state %s from %s has been successful"
-
-#: ../app/controllers/course/members.php:1173
-#, php-format
-msgid ""
-"Das Hochstufen auf den Status %s von %s konnte nicht durchgeführt werden, "
-"weil die globale Rechtestufe \"tutor\" fehlt."
-msgstr ""
-"Promotion to the status %s from %s could not be done since the global "
-"permission level \"tutor\" is missing."
-
-#: ../app/controllers/course/members.php:1173
-#, php-format
-msgid "Bitte wenden Sie sich an den Support."
-msgstr "Please contact the support."
-
-#: ../app/controllers/course/members.php:1179
-#, php-format
-msgid "Sie haben keine %s zum Hochstufen ausgewählt"
-msgstr "You didn't select any %s to promote"
-
-#: ../app/controllers/course/members.php:1217
-#, php-format
-msgid "Der/die %s %s wurde auf den Status %s heruntergestuft."
-msgstr "The %s %s has been degraded to the state %s."
-
-#: ../app/controllers/course/members.php:1224
-#, php-format
-msgid "Sie haben keine %s zum Herunterstufen ausgewählt"
-msgstr "You didn't select any %s to demote"
-
-#: ../app/controllers/course/members.php:1251
-#, php-format
-msgid "%s Person(en) wurden auf die Warteliste verschoben."
-msgstr "%s persons added to waiting list."
-
-#: ../app/controllers/course/members.php:1256
-#, php-format
-msgid "%s Person(en) konnten nicht auf die Warteliste verschoben werden."
-msgstr "%s person(s) could not be moved to the wait list."
-
-#: ../app/controllers/course/members.php:1261
-msgid "Sie haben keine Personen zum Verschieben auf die Warteliste ausgewählt"
-msgstr "You did not select a person for moving them onto the wait list"
-
-#: ../app/controllers/course/members.php:1287
-msgid "Zusatzangaben exportieren"
-msgstr "Export additional information"
-
-#: ../app/controllers/course/members.php:1364
-#: ../app/controllers/admin/coursewizardsteps.php:95
-#: ../app/controllers/admin/coursewizardsteps.php:116
-msgid "Die Daten wurden gespeichert."
-msgstr "The data have been saved."
-
-#: ../app/controllers/course/members.php:1408
-#, php-format
-msgid "[%s: %s]"
-msgstr "[%s: %s]"
-
-#: ../app/controllers/course/members.php:1423
-msgid "Nachricht an alle eingetragenen Teilnehmenden (Rundmail)"
-msgstr "Message to all participants (Circular mail)"
-
-#: ../app/controllers/course/members.php:1460
-#: ../app/controllers/course/members.php:1517
-#: ../app/controllers/course/members.php:1583
-#: ../app/controllers/course/basicdata.php:316
-#: ../app/controllers/course/basicdata.php:331
-#: ../app/controllers/course/basicdata.php:342
-#: ../app/controllers/course/grouping.php:424
-#: ../app/views/course/members/add_dozent.php:9
-#: ../app/views/course/members/add_tutor.php:10
-#, php-format
-msgid "%s suchen"
-msgstr "search %s"
-
-#: ../app/controllers/course/members.php:1483
-#: ../app/controllers/course/members.php:1486
-#: ../app/controllers/course/members.php:1540
-#: ../app/controllers/course/members.php:1543
-#: ../app/controllers/course/members.php:1606
-#: ../app/controllers/course/members.php:1609
-#: ../app/views/course/grouping/members.php:67
-#: ../app/views/course/grouping/members.php:75
-#: ../app/views/course/grouping/members.php:78
-#, php-format
-msgid "%s eintragen"
-msgstr "insert %s"
-
-#: ../app/controllers/course/members.php:1492
-#: ../app/controllers/course/members.php:1549
-#: ../app/controllers/course/members.php:1615
-#: ../app/views/course/basicdata/view.php:97
-#: ../app/views/course/basicdata/view.php:233
-#: ../app/views/course/basicdata/view.php:234
-#, php-format
-msgid "%s der Einrichtung"
-msgid_plural "%s der Einrichtungen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/members.php:1645
-#: ../app/controllers/course/members.php:1648
-msgid "Person(en) auf Warteliste eintragen"
-msgstr "Add person(s) to waiting list"
-
-#: ../app/controllers/course/members.php:1651
-msgid "Mitglieder der Einrichtung"
-msgstr "Members of the institution"
-
-#: ../app/controllers/course/members.php:1658
-msgid "Teilnehmendenliste importieren"
-msgstr "Import participant list"
-
-#: ../app/controllers/course/members.php:1676
-msgid "Liste als csv-Dokument exportieren"
-msgstr "Export list as csv document"
-
-#: ../app/controllers/course/members.php:1692
-msgid "Liste als rtf-Dokument exportieren"
-msgstr "Export list as rtf document"
-
-#: ../app/controllers/course/members.php:1704
-#: ../app/controllers/course/members.php:1719
-#, php-format
-msgid "Warteliste %s"
-msgstr "Wait list %s"
-
-#: ../app/controllers/course/members.php:1708
-msgid "Warteliste als rtf-Dokument exportieren"
-msgstr "Export waiting list as rtf document"
-
-#: ../app/controllers/course/members.php:1723
-msgid "Warteliste als csv-Dokument exportieren"
-msgstr "Export waiting list as csv document"
-
-#: ../app/controllers/course/members.php:1735
-#: ../app/controllers/course/statusgroups.php:298
-msgid "Diese Seite für Studierende verbergen"
-msgstr ""
-
-#: ../app/controllers/course/members.php:1739
-msgid ""
-"Über diese Option können Sie die Teilnehmendenliste für Studierende der "
-"Veranstaltung unsichtbar machen"
-msgstr ""
-
-#: ../app/controllers/course/members.php:1744
-msgid "Rundmails von Studierenden erlauben"
-msgstr "Allow circular mails from students"
-
-#: ../app/controllers/course/members.php:1748
-msgid ""
-"Über diese Option können Sie Studierenden das Schreiben von Nachrichten an "
-"alle anderen Teilnehmenden der Veranstaltung erlauben"
-msgstr ""
-"Via this option you may allow students to write messages to all other "
-"participants of the course"
-
-#: ../app/controllers/course/members.php:1755
-msgid "Sie sind für andere Teilnehmenden auf der Teilnehmendenliste sichtbar."
-msgstr "You are visible to other participants on the participants list."
-
-#: ../app/controllers/course/members.php:1758
-msgid "Klicken Sie hier, um unsichtbar zu werden."
-msgstr "Click here for becoming invisible."
-
-#: ../app/controllers/course/members.php:1760
-msgid ""
-"Sie sind für andere Teilnehmenden auf der Teilnehmendenliste nicht sichtbar."
-msgstr "You are not visible to other participants on the participants list."
-
-#: ../app/controllers/course/members.php:1763
-msgid "Klicken Sie hier, um sichtbar zu werden."
-msgstr "Click here for becoming visible."
-
-#: ../app/controllers/course/members.php:1788
-msgid "Titel2"
-msgstr "Title2"
-
-#: ../app/controllers/course/members.php:1788
-msgid "Nutzernamen"
-msgstr "Username"
-
-#: ../app/controllers/course/members.php:1788
-msgid "Privatadr"
-msgstr "Home address"
-
-#: ../app/controllers/course/members.php:1788
-msgid "Privatnr"
-msgstr "Home number"
-
-#: ../app/controllers/course/members.php:1788
-#: ../app/views/course/members/tutor_list.php:70
-#: ../app/views/course/members/accepted_list.php:65
-#: ../app/views/course/members/autor_list.php:75
-#: ../app/views/course/members/user_list.php:70
-#: ../app/views/course/statusgroups/getgroup.php:58
-msgid "Anmeldedatum"
-msgstr "Date of enrolment"
-
-#: ../app/controllers/course/management.php:36
-msgid "Dies ist eine Studiengruppe und kein Seminar!"
-msgstr "This is not a seminar but a study group!"
-
-#: ../app/controllers/course/management.php:39
-#, php-format
-msgid "%s - Verwaltung"
-msgstr "%s - administration"
-
-#: ../app/controllers/course/management.php:53
-msgid ""
-"Als Mitarbeiter Ihrer Einrichtung können Sie für diese Inhalte in mehreren "
-"Kategorien bereitstellen.Inhalte in Ihrer Einrichtung können von allen Stud."
-"IP-Nutzern abgerufen werden."
-msgstr ""
-"As staff member or your institute you may provide these content in various "
-"categories. Content at your institute is by default available to all Stud.IP "
-"users."
-
-#: ../app/controllers/course/management.php:55
-msgid ""
-"Sie können hier Ihre Veranstaltung in mehreren Kategorien anpassen. "
-"Informationen wie Grunddaten oder Termine und Einstellungen, "
-"Zugangsbeschränkungen und Funktionen können Sie hier administrieren."
-msgstr ""
-"You may customise your course in several categories here. You can manage "
-"information such as basic details, dates and settings, access restrictions "
-"and features here."
-
-#: ../app/controllers/course/management.php:75
-msgid "Veranstaltung löschen"
-msgstr "Delete course"
-
-#: ../app/controllers/course/management.php:85
-#: ../app/views/materialien/files/range.php:59
-#: ../app/views/materialien/files/index.php:45
-#: ../app/views/materialien/files/details.php:52
-#: ../app/views/settings/privacy.php:33
-msgid "sichtbar"
-msgstr "visible"
-
-#: ../app/controllers/course/management.php:85
-#: ../app/views/materialien/files/range.php:59
-#: ../app/views/materialien/files/index.php:45
-#: ../app/views/materialien/files/details.php:52
-#: ../app/views/course/wizard/steps/basicdata/index_studygroup.php:53
-#: ../app/views/course/members/autor_list.php:107
-#: ../app/views/course/statusgroups/_member.php:21
-#: ../app/views/settings/privacy.php:36 ../app/views/tour/admin_details.php:55
-#, php-format
-msgid "unsichtbar"
-msgstr "invisible"
-
-#: ../app/controllers/course/management.php:94
-#: ../app/controllers/course/management.php:166
-msgid "Sperrebene ändern"
-msgstr "Change lock rule"
-
-#: ../app/controllers/course/management.php:94
-#: ../app/views/admin/semester/index.php:58
-#: ../app/views/admin/lockrules/_form.php:67
-msgid "gesperrt"
-msgstr "locked"
-
-#: ../app/controllers/course/management.php:94
-#: ../app/views/admin/lockrules/_form.php:68
-msgid "nicht gesperrt"
-msgstr "not locked"
-
-#: ../app/controllers/course/management.php:102
-msgid "Studierendenansicht simulieren"
-msgstr "Simulate student's view"
-
-#: ../app/controllers/course/management.php:144
-msgid "Die Veranstaltung wurde sichtbar gemacht."
-msgstr "The course has been made visible."
-
-#: ../app/controllers/course/management.php:148
-msgid "Die Veranstaltung wurde versteckt."
-msgstr "Course is now hidden."
-
-#: ../app/controllers/course/management.php:174
-#: ../app/controllers/admin/courses.php:374
-#: ../app/views/admin/semester/lock.php:28
-msgid "keine Sperrebene"
-msgstr "no locking level"
-
-#: ../app/controllers/course/management.php:198
-#, php-format
-msgid "Die Sperrebene %s wurde erfolgreich übernommen!"
-msgstr "The lock rule %s has been applied successfully!"
-
-#: ../app/controllers/course/management.php:200
-msgid "Die Sperrebene wurde erfolgreich zurückgesetzt!"
-msgstr "The lock rule has been successfully reset!"
-
-#: ../app/controllers/course/basicdata.php:90
-#: ../app/views/course/wizard/steps/advancedbasicdata/index.php:23
-msgid "max. Teilnehmendenzahl"
-msgstr "max. number of participants"
-
-#: ../app/controllers/course/basicdata.php:182
-msgid "Achtung:"
-msgstr "Attention:"
-
-#: ../app/controllers/course/basicdata.php:184
-msgid ""
-"Diese Ortsangabe wird nur angezeigt, wenn keine Angaben aus Zeiten oder "
-"Sitzungsterminen gemacht werden können."
-msgstr ""
-"These location details will be displayed only if no data about times or "
-"appointments are available."
-
-#: ../app/controllers/course/basicdata.php:200
-msgid ""
-"Diese Felder werden zentral durch die zuständigen Administratoren erfasst."
-msgstr "These fields will be filled in by the administrators in charge."
-
-#: ../app/controllers/course/basicdata.php:281
-#: ../app/controllers/course/basicdata.php:496
-#: ../app/controllers/course/basicdata.php:660
-#: ../app/controllers/course/basicdata.php:700
-#: ../app/controllers/course/basicdata.php:741
-#: ../app/controllers/course/basicdata.php:797
-#: ../app/controllers/course/basicdata.php:834
-#: ../app/controllers/admin/additional.php:30
-msgid "Sie haben keine Berechtigung diese Veranstaltung zu verändern."
-msgstr "You are not allowed to modify this course."
-
-#: ../app/controllers/course/basicdata.php:287
-#: ../app/controllers/institute/basicdata.php:36
-msgid "Verwaltung der Grunddaten"
-msgstr "Basic data management"
-
-#: ../app/controllers/course/basicdata.php:366
-#: ../app/controllers/course/studygroup.php:387
-msgid "Bild ändern"
-msgstr "Change picture"
-
-#: ../app/controllers/course/basicdata.php:372
-msgid "Lehrende werden"
-msgstr "Become lecturer"
-
-#: ../app/controllers/course/basicdata.php:375
-msgid "Vertretung werden"
-msgstr "Become substitute"
-
-#: ../app/controllers/course/basicdata.php:449
-msgid "Name der Veranstaltung darf nicht leer sein."
-msgstr "Course title must not be empty."
-
-#: ../app/controllers/course/basicdata.php:465
-#, php-format
-msgid ""
-"Das folgende Datenfeld der Veranstaltung wurde falsch angegeben, bitte "
-"korrigieren Sie dies unter \"Beschreibungen\": %s"
-msgid_plural ""
-"Die folgenden Datenfelder der Veranstaltung wurden falsch angegeben, bitte "
-"korrigieren Sie dies unter \"Beschreibungen\": %s"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/basicdata.php:492
-msgid "Die Grunddaten der Veranstaltung wurden verändert."
-msgstr "The basic course details have been changed."
-
-#: ../app/controllers/course/basicdata.php:550
-#, php-format
-msgid "%u %s wurden hinzugefügt."
-msgstr "%u %s were added."
-
-#: ../app/controllers/course/basicdata.php:570
-msgid "Bei den folgenden Nutzer/-innen ist ein Fehler aufgetreten"
-msgstr "There has been an error with the following users"
-
-#: ../app/controllers/course/basicdata.php:662
-#: ../app/controllers/course/basicdata.php:702
-msgid "Sie dürfen sich nicht selbst aus der Veranstaltung austragen."
-msgstr "You are not allowed to sign out of the course by yourself."
-
-#: ../app/controllers/course/basicdata.php:714
-#, php-format
-msgid "%s wurde entfernt."
-msgstr "%s has been removed."
-
-#: ../app/controllers/course/basicdata.php:719
-#, php-format
-msgid "%s konnte nicht entfernt werden."
-msgstr "%s could not be removed."
-
-#: ../app/controllers/course/basicdata.php:857
-#, php-format
-msgid "Sie wurden als %s eingetragen."
-msgstr "You have been entered as %s."
-
-#: ../app/controllers/course/basicdata.php:860
-#, php-format
-msgid "Sie konnten nicht als %s eingetragen werden."
-msgstr "You could not be entered as %s."
-
-#: ../app/controllers/course/basicdata.php:868
-msgid "Sie wurden als Vertretung eingetragen."
-msgstr "You have been entered as substitute."
-
-#: ../app/controllers/course/basicdata.php:870
-msgid "Sie konnten nicht als Vertretung eingetragen werden."
-msgstr "You have not been added as substitute."
-
-#: ../app/controllers/course/archive.php:70
-msgid "Erster Temin"
-msgstr "First appointment"
-
-#: ../app/controllers/course/archive.php:132
-msgid "Löschen von Veranstaltungen"
-msgstr "Deleting courses"
-
-#: ../app/controllers/course/archive.php:173
-#, php-format
-msgid "Die Veranstaltung %s wurde erfolgreich gelöscht."
-msgstr "The course %s has been deleted successfully."
-
-#: ../app/controllers/course/archive.php:178
-msgid "Veranstaltung nicht in Datenbank gefunden!"
-msgstr "Course not found in database!"
-
-#: ../app/controllers/course/scm.php:51
-msgid "Die freien Informationsseiten sind nicht aktiviert."
-msgstr "The free information pages are not activated."
-
-#: ../app/controllers/course/scm.php:68
-msgid "Neuen Eintrag anlegen"
-msgstr "Create a new entry"
-
-#: ../app/controllers/course/scm.php:94
-msgid ""
-"Es konnte keine freie Informationsseite mit der angegebenen Id gefunden "
-"werden."
-msgstr "No free information page found with the given ID."
-
-#: ../app/controllers/course/scm.php:99
-msgid "Wollen Sie diese Seite wirklich löschen?"
-msgstr "Are you sure you want to delete this page?"
-
-#: ../app/controllers/course/scm.php:141
-msgid "Die Änderungen wurden übernommen."
-msgstr "Changes saved."
-
-#: ../app/controllers/course/scm.php:148
-msgid "Informationsseite bearbeiten"
-msgstr "Edit information page"
-
-#: ../app/controllers/course/scm.php:171
-msgid "Der Eintrag wurde an die erste Position verschoben."
-msgstr "The entry has been moved to the first position."
-
-#: ../app/controllers/course/scm.php:188
-msgid "Der Eintrag wurde gelöscht."
-msgstr "Entry deleted."
-
-#: ../app/controllers/course/scm.php:195
-msgid "Bitte versuchen Sie erneut, diese Seite zu löschen."
-msgstr "Please try again to delete this page."
-
-#: ../app/controllers/course/dates.php:44
-msgid "Thema wurde hinzugefügt."
-msgstr "Topic added."
-
-#: ../app/controllers/course/dates.php:46
-msgid "Thema war schon mit dem Termin verknüpft."
-msgstr "The topic had already been linked with the date."
-
-#: ../app/controllers/course/dates.php:74
-msgid "Neuer Einzeltermin"
-msgstr "New single date"
-
-#: ../app/controllers/course/dates.php:82
-msgid "Sitzungsordner anlegen"
-msgstr "Create session folder"
-
-#: ../app/controllers/course/dates.php:88
-msgid "Als Doc-Datei runterladen"
-msgstr "Download as .doc file"
-
-#: ../app/controllers/course/dates.php:94
-msgid "Als CSV-Datei exportieren"
-msgstr "Export as CSV file"
-
-#: ../app/controllers/course/dates.php:122
-msgid "Zeiten und Räume bearbeiten"
-msgstr "Edit times and rooms"
-
-#: ../app/controllers/course/dates.php:193
-msgid "Bitte geben Sie ein korretes Datum an!"
-msgstr "Please enter a valid date!"
-
-#: ../app/controllers/course/dates.php:198
-#: ../app/controllers/course/block_appointments.php:132
-msgid "Bitte geben Sie korrekte Werte für Start- und Endzeit an!"
-msgstr "Please enter correct values as start and end time!"
-
-#: ../app/controllers/course/dates.php:213
-#: ../app/controllers/course/dates.php:262
-msgid "Der Termin wurde geändert."
-msgstr "The date has been changed."
-
-#: ../app/controllers/course/dates.php:217
-#: ../app/controllers/course/block_appointments.php:160
-msgid "Bitte korrigieren Sie Ihre Eingaben:"
-msgstr "Please correct your input:"
-
-#: ../app/controllers/course/dates.php:226
-#: ../app/controllers/course/timesrooms.php:475
-#: ../app/views/course/timesrooms/createSingleDate.php:5
-msgid "Einzeltermin anlegen"
-msgstr "Add single date"
-
-#: ../app/controllers/course/dates.php:272
-#: ../app/views/oer/mymaterial/edit.php:218
-#: ../app/views/course/dates/_date_row.php:57
-#: ../app/views/course/dates/details-edit.php:34
-msgid "Thema hinzufügen"
-msgstr "Add topic"
-
-#: ../app/controllers/course/dates.php:285
-msgid "Geben Sie einen Titel an."
-msgstr "Please enter a title."
-
-#: ../app/controllers/course/dates.php:392
-#: ../app/views/shared/version/_versionmodule.php:51
-#: ../app/views/shared/version/_versionmodule.php:108
-#: ../app/views/studiengaenge/versionen/version.php:126
-msgid "Kommentar:"
-msgstr "Commentary:"
-
-#: ../app/controllers/course/dates.php:444
-msgid "Raumbeschreibung"
-msgstr "Room description"
-
-#: ../app/controllers/course/dates.php:603 ../app/controllers/file.php:1737
-#, php-format
-msgid ""
-"Für den Termin am %s existiert bereits ein Sitzungs-Ordner. Möchten Sie "
-"trotzdem einen weiteren Sitzungs-Ordner erstellen?"
-msgstr ""
-"There is already a session folder for the date %s. Do you nonetheless want "
-"to create another session folder?"
-
-#: ../app/controllers/course/dates.php:612
-msgid ""
-"Für die folgenden Termine gibt es bereits Sitzungs-Ordner. Möchten Sie "
-"trotzdem weitere Sitzungs-Ordner erstellen?"
-msgstr ""
-"There are already session folders for the following dates. Do you "
-"nonetheless want to create more session folders?"
-
-#: ../app/controllers/course/dates.php:625
-#, php-format
-msgid "Es wurden %u Ordner erstellt."
-msgstr "%u folders have been created."
-
-#: ../app/controllers/course/gradebook/students.php:85
-msgid "Leistung"
-msgstr "Achievement"
-
-#: ../app/controllers/course/gradebook/students.php:86
-msgid "Werkzeug"
-msgstr "Tool"
-
-#: ../app/controllers/course/gradebook/students.php:87
-msgid "Fortschritt"
-msgstr "Progress"
-
-#: ../app/controllers/course/gradebook/template_helpers.php:14
-#: ../app/controllers/course/gradebook/lecturers.php:71
-msgid "Manuell eingetragen"
-msgstr "Enter manually"
-
-#: ../app/controllers/course/gradebook/template_helpers.php:49
-msgid "Leistungen als CSV exportieren"
-msgstr "Export achievements as CSV"
-
-#: ../app/controllers/course/gradebook/template_helpers.php:60
-msgid "Leistungen exportieren"
-msgstr "Export achievements"
-
-#: ../app/controllers/course/gradebook/lecturers.php:133
-msgid "Gewichtungen erfolgreich verändert."
-msgstr "Successfully modified weighting."
-
-#: ../app/controllers/course/gradebook/lecturers.php:186
-msgid "Die Noten wurden gespeichert."
-msgstr "The grades have been saved."
-
-#: ../app/controllers/course/gradebook/lecturers.php:220
-#: ../app/controllers/course/gradebook/lecturers.php:267
-msgid "Der Name einer Leistung darf nicht leer sein."
-msgstr "The name of an achievement cannot be empty."
-
-#: ../app/controllers/course/gradebook/lecturers.php:235
-msgid "Die Leistung konnte nicht definiert werden."
-msgstr "The achievement could not be defined."
-
-#: ../app/controllers/course/gradebook/lecturers.php:237
-msgid "Die Leistung wurde erfolgreich definiert."
-msgstr "The achievement has been defined successfully."
-
-#: ../app/controllers/course/gradebook/lecturers.php:271
-msgid "Die Leistung konnte nicht geändert werden."
-msgstr "The achievement could not be modified."
-
-#: ../app/controllers/course/gradebook/lecturers.php:289
-#: ../app/controllers/course/gradebook/lecturers.php:294
-msgid "Die Leistung konnte nicht gelöscht werden."
-msgstr "The achievement could not be deleted."
-
-#: ../app/controllers/course/gradebook/lecturers.php:292
-msgid "Die Leistung wurde gelöscht."
-msgstr "The achivement has been deleted."
-
-#: ../app/controllers/course/study_areas.php:156
-#: ../app/controllers/course/study_areas.php:193
-msgid "Sie müssen mindestens einen Studienbereich auswählen"
-msgstr "You must at least select one field of study"
-
-#: ../app/controllers/course/study_areas.php:161
-msgid "Sie dürfen keine Studienbereiche zuweisen."
-msgstr ""
-
-#: ../app/controllers/course/study_areas.php:175
-msgid "Die Studienbereichszuordnung wurde übernommen."
-msgstr "The assignment to study areas has been applied."
-
-#: ../app/controllers/course/statusgroups.php:169
-#: ../app/controllers/course/statusgroups.php:341
-msgid "keiner Gruppe zugeordnet"
-msgstr "not assigned to a group"
-
-#: ../app/controllers/course/statusgroups.php:222
-msgid "Personen suchen"
-msgstr "Search user"
-
-#: ../app/controllers/course/statusgroups.php:239
-#: ../app/controllers/admin/statusgroups.php:71
-#: ../app/controllers/contact.php:222
-#: ../app/views/resources/admin/property_groups.php:119
-msgid "Neue Gruppe anlegen"
-msgstr "Create new group"
-
-#: ../app/controllers/course/statusgroups.php:244
-msgid "Mehrere Gruppen anlegen"
-msgstr "Create several groups"
-
-#: ../app/controllers/course/statusgroups.php:253
-#: ../app/controllers/course/statusgroups.php:262
-msgid "Gruppenliste"
-msgstr "List of groups"
-
-#: ../app/controllers/course/statusgroups.php:255
-msgid "Gruppen als CSV-Dokument exportieren"
-msgstr "Export groups as CSV document"
-
-#: ../app/controllers/course/statusgroups.php:264
-msgid "Gruppen als RTF-Dokument exportieren"
-msgstr "Export groups as RTF document"
-
-#: ../app/controllers/course/statusgroups.php:274
-msgid "In eine Gruppe eintragen"
-msgstr "Enter in a group"
-
-#: ../app/controllers/course/statusgroups.php:282
-msgid "Alle Gruppen zuklappen"
-msgstr "Fold all groups"
-
-#: ../app/controllers/course/statusgroups.php:288
-msgid "Alle Gruppen aufklappen"
-msgstr "Expand all groups"
-
-#: ../app/controllers/course/statusgroups.php:302
-msgid ""
-"Über diese Option können Sie die Teilnehmendengruppenliste für Studierende "
-"der Veranstaltung unsichtbar machen"
-msgstr ""
-
-#: ../app/controllers/course/statusgroups.php:446
-#: ../app/controllers/course/statusgroups.php:452
-#, php-format
-msgid "%u Person wurde zu %s hinzugefügt."
-msgid_plural "%u Personen wurden zu %s hinzugefügt."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/statusgroups.php:457
-#: ../app/controllers/course/statusgroups.php:464
-#, php-format
-msgid "%u Person konnte nicht zu %s hinzugefügt werden."
-msgid_plural "%u Personen konnten nicht zu %s hinzugefügt werden."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/statusgroups.php:536
-#, php-format
-msgid "Die Gruppe \"%s\" wurde angelegt."
-msgstr "Group \"%s\" has been created."
-
-#: ../app/controllers/course/statusgroups.php:541
-#, php-format
-msgid "Die Daten der Gruppe \"%s\" wurden gespeichert."
-msgstr "Data of group \"%s\" has been saved."
-
-#: ../app/controllers/course/statusgroups.php:581
-#, php-format
-msgid "Die Gruppe \"%s\" wurde gelöscht."
-msgstr "Group %s deleted."
-
-#: ../app/controllers/course/statusgroups.php:605
-#: ../app/controllers/course/statusgroups.php:738
-#, php-format
-msgid "Sie wurden aus der Gruppe %s ausgetragen."
-msgstr "You have been signed out from group %s."
-
-#: ../app/controllers/course/statusgroups.php:610
-#: ../app/controllers/institute/members.php:421
-#, php-format
-msgid "%s wurde aus der Gruppe %s ausgetragen."
-msgstr "%s has been signed out from group %s."
-
-#: ../app/controllers/course/statusgroups.php:618
-#: ../app/controllers/course/statusgroups.php:743
-#, php-format
-msgid "Sie konnten nicht aus der Gruppe %s ausgetragen werden."
-msgstr "You could not be signed out from group %s."
-
-#: ../app/controllers/course/statusgroups.php:623
-#, php-format
-msgid "%s konnte nicht aus der Gruppe %s ausgetragen werden."
-msgstr "%s could not be signed out from group %s."
-
-#: ../app/controllers/course/statusgroups.php:709
-#, php-format
-msgid "Sie wurden als Mitglied der Gruppe %s eingetragen."
-msgstr "You have been signed into group %s as member."
-
-#: ../app/controllers/course/statusgroups.php:714
-#, php-format
-msgid "Sie konnten nicht als Mitglied der Gruppe %s eingetragen werden."
-msgstr "You could not be signed into group %s as member."
-
-#: ../app/controllers/course/statusgroups.php:800
-msgid "Thema:"
-msgstr "Topic:"
-
-#: ../app/controllers/course/statusgroups.php:922
-#, php-format
-msgid "Eine Gruppe wurde angelegt."
-msgid_plural "%u Gruppen wurden angelegt."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/statusgroups.php:949
-#: ../app/views/course/statusgroups/index.php:33
-msgid "Gruppengröße bearbeiten"
-msgstr "Edit group size"
-
-#: ../app/controllers/course/statusgroups.php:964
-#: ../app/views/course/statusgroups/index.php:34
-msgid "Selbsteintrag bearbeiten"
-msgstr "Edit self-entry"
-
-#: ../app/controllers/course/statusgroups.php:1030
-msgid "Gruppe(n) löschen?"
-msgstr "Delete group(s)?"
-
-#: ../app/controllers/course/statusgroups.php:1037
-msgid "Sie haben keine Gruppe ausgewählt."
-msgstr "You have not selected a group."
-
-#: ../app/controllers/course/statusgroups.php:1056
-msgid "Gruppenmitglieder verschieben"
-msgstr "Move group members"
-
-#: ../app/controllers/course/statusgroups.php:1059
-msgid "Gruppenmitglieder kopieren"
-msgstr ""
-
-#: ../app/controllers/course/statusgroups.php:1070
-msgid "Gruppenmitglieder entfernen"
-msgstr "Remove group members"
-
-#: ../app/controllers/course/statusgroups.php:1075
-msgid "Personen aus Veranstaltung austragen"
-msgstr "Sign out person from course"
-
-#: ../app/controllers/course/statusgroups.php:1105
-msgid "Die ausgewählten Gruppen wurden gelöscht."
-msgstr "The selected groups have been deleted."
-
-#: ../app/controllers/course/statusgroups.php:1130
-#: ../app/controllers/course/statusgroups.php:1163
-msgid "Die Einstellungen der ausgewählten Gruppen wurden gespeichert."
-msgstr "The settings of the selected groups have been saved."
-
-#: ../app/controllers/course/statusgroups.php:1215
-#: ../app/controllers/course/statusgroups.php:1222
-#, php-format
-msgid "%u Person wurde in die Gruppe %s verschoben."
-msgid_plural "%u Personen wurden in die Gruppe %s verschoben."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/statusgroups.php:1225
-#: ../app/controllers/course/statusgroups.php:1232
-#, php-format
-msgid "%u Person konnte nicht in die Gruppe %s verschoben werden."
-msgid_plural "%u Personen konnten nicht in die Gruppe %s verschoben werden."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/statusgroups.php:1270
-#, php-format
-msgid "%u Person wurde in die Gruppe %s kopiert."
-msgid_plural "%u Personen wurden in die Gruppe %s kopiert."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/statusgroups.php:1309
-#: ../app/controllers/course/statusgroups.php:1316
-#, php-format
-msgid "%u Person wurde aus der Gruppe %s entfernt."
-msgid_plural "%u Personen wurden aus der Gruppe %s entfernt."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/statusgroups.php:1319
-#: ../app/controllers/course/statusgroups.php:1326
-#, php-format
-msgid "%u Person konnte nicht aus der Gruppe %s entfernt werden."
-msgid_plural "%u Personen konnten nicht aus der Gruppe %s entfernt werden."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/statusgroups.php:1353
-msgid "Die folgenden Personen wurden aus der Veranstaltung ausgetragen"
-msgstr "The following persons have been signed out of the course"
-
-#: ../app/controllers/course/ilias_interface.php:33
-msgid "ILIAS-Interface ist nicht aktiviert."
-msgstr "The ILIAS interface is not activated."
-
-#: ../app/controllers/course/ilias_interface.php:92
-msgid "Momentan sind dieser Einrichtung keine Lernobjekte zugeordnet."
-msgstr "No learning objects are assigned to this institute at the moment."
-
-#: ../app/controllers/course/ilias_interface.php:94
-msgid "Momentan sind dieser Veranstaltung keine Lernobjekte zugeordnet."
-msgstr "No learning objects are assigned to this course at the moment."
-
-#: ../app/controllers/course/ilias_interface.php:100
-msgid "Lernobjekte hinzufügen"
-msgstr "Add learning objects"
-
-#: ../app/controllers/course/ilias_interface.php:103
-msgid "Lernobjekte suchen"
-msgstr "Search learning objects"
-
-#: ../app/controllers/course/ilias_interface.php:110
-#: ../app/views/course/ilias_interface/add_object.php:69
-msgid "Meine Lernobjekte"
-msgstr "My learning objects"
-
-#: ../app/controllers/course/ilias_interface.php:121
-msgid "ILIAS-Kurse"
-msgstr "ILIAS courses"
-
-#: ../app/controllers/course/ilias_interface.php:121
-#: ../app/views/course/ilias_interface/index.php:92
-#: ../app/views/course/ilias_interface/index.php:98
-msgid "ILIAS-Kurs"
-msgstr "ILIAS course"
-
-#: ../app/controllers/course/ilias_interface.php:124
-msgid "Neuen ILIAS-Kurs anlegen"
-msgstr "Create new ILIAS course"
-
-#: ../app/controllers/course/ilias_interface.php:130
-msgid "ILIAS-Kurs aus einer anderen Veranstaltung zuordnen"
-msgstr "Assign ILIAS course from another course"
-
-#: ../app/controllers/course/ilias_interface.php:137
-msgid "Eigenen ILIAS-Kurs zuordnen"
-msgstr "Assign own ILIAS course"
-
-#: ../app/controllers/course/ilias_interface.php:145
-#: ../app/views/course/ilias_interface/index.php:32
-#: ../app/views/course/ilias_interface/index.php:96
-msgid "(offline)"
-msgstr "(offline)"
-
-#: ../app/controllers/course/ilias_interface.php:152
-#, php-format
-msgid "Verknüpfung zu %s entfernen"
-msgstr "Remove link to %s"
-
-#: ../app/controllers/course/ilias_interface.php:157
-#: ../app/views/course/ilias_interface/index.php:117
-#, php-format
-msgid ""
-"Verknüpfung zum Kurs in %s entfernen? Hierdurch werden auch die "
-"Verknüpfungen zu allen Objekten innerhalb des Kurses entfernt."
-msgstr ""
-"Remove the link to the course in %s? The links to all objects inside the "
-"course will hereby be removed, too."
-
-#: ../app/controllers/course/ilias_interface.php:170
-#: ../app/controllers/course/ilias_interface.php:396
-msgid "Gruppen übertragen"
-msgstr "Transfer groups"
-
-#: ../app/controllers/course/ilias_interface.php:177
-#: ../app/controllers/course/elearning.php:146
-msgid "Externe Accounts verwalten"
-msgstr "Manage external accounts"
-
-#: ../app/controllers/course/ilias_interface.php:184
-msgid "Seite umbenennen"
-msgstr "Rename page"
-
-#: ../app/controllers/course/ilias_interface.php:222
-#: ../app/controllers/course/elearning.php:204
-msgid "Die Zuordnung wurde entfernt."
-msgstr "Allocation removed."
-
-#: ../app/controllers/course/ilias_interface.php:226
-#: ../app/controllers/course/ilias_interface.php:230
-#: ../app/controllers/course/elearning.php:209
-msgid "Die Zuordnung wurde gespeichert."
-msgstr "Allocation saved."
-
-#: ../app/controllers/course/ilias_interface.php:244
-msgid "Lernobjekt hinzufügen"
-msgstr "Add learning object"
-
-#: ../app/controllers/course/ilias_interface.php:306
-msgid "Zurück zur Suche"
-msgstr "Back to the search"
-
-#: ../app/controllers/course/ilias_interface.php:316
-msgid "Kurs anlegen"
-msgstr "Create course"
-
-#: ../app/controllers/course/ilias_interface.php:320
-msgid "Neuer Kurs wurde angelegt."
-msgstr "The course has been created."
-
-#: ../app/controllers/course/ilias_interface.php:326
-#: ../app/controllers/course/ilias_interface.php:360
-msgid "Kurs zuordnen"
-msgstr "Assign course"
-
-#: ../app/controllers/course/ilias_interface.php:346
-#: ../app/controllers/course/ilias_interface.php:362
-#: ../app/controllers/course/elearning.php:317
-#, php-format
-msgid "(Kurs-ID %s)"
-msgstr "(Course-ID %s)"
-
-#: ../app/controllers/course/ilias_interface.php:353
-#: ../app/controllers/course/ilias_interface.php:372
-msgid "Kurs wurde zugeordnet."
-msgstr "The course has been assigned."
-
-#: ../app/controllers/course/ilias_interface.php:429
-msgid "Gruppen anlegen"
-msgstr "Create groups"
-
-#: ../app/controllers/course/ilias_interface.php:465
-#, php-format
-msgid "Gruppe \"%s\" (%s Teilnehmende) aktualisiert."
-msgstr "Group \"%s\" (%s participants) updated."
-
-#: ../app/controllers/course/ilias_interface.php:485
-#, php-format
-msgid "Gruppe \"%s\" (%s Teilnehmende) angelegt."
-msgstr "Group \"%s\" (%s participants) created."
-
-#: ../app/controllers/course/ilias_interface.php:495
-msgid "Gruppen aktualisieren"
-msgstr "Update groups"
-
-#: ../app/controllers/course/ilias_interface.php:522
-msgid "Kurs-Verknüpfung entfernt."
-msgstr "Course link removed."
-
-#: ../app/controllers/course/ilias_interface.php:561
-msgid "Seitentitel gespeichert"
-msgstr "Page title saved"
-
-#: ../app/controllers/course/ilias_interface.php:565
-msgid "Seitentitel zurückgesetzt"
-msgstr "Page title reset"
-
-#: ../app/controllers/course/plus.php:19
-#: ../app/controllers/profilemodules.php:31
-msgid "Mehr Funktionen"
-msgstr "More functions"
-
-#: ../app/controllers/course/plus.php:143
-msgid "Das Plugin/Modul enthält keine Funktion zum Löschen der Inhalte."
-msgstr "This plug-in offers no functionality to delete content."
-
-#: ../app/controllers/course/plus.php:146
-#, php-format
-msgid "Sie beabsichtigen die Inhalte von %s zu löschen."
-msgstr "You are about to delete the content of %s."
-
-#: ../app/controllers/course/plus.php:147
-msgid "Wollen Sie die Inhalte wirklich löschen?"
-msgstr "Do you really intend to delete this content?"
-
-#: ../app/controllers/course/plus.php:224
-#: ../app/controllers/profilemodules.php:145
-msgid "Alles zuklappen"
-msgstr "Collapse all"
-
-#: ../app/controllers/course/plus.php:227
-#: ../app/controllers/profilemodules.php:151
-msgid "Alles aufklappen"
-msgstr "Open all"
-
-#: ../app/controllers/course/plus.php:232
-#: ../app/controllers/profilemodules.php:159
-msgid "Alphabetische Anzeige ohne Kategorien"
-msgstr "Display alphabetical without categories"
-
-#: ../app/controllers/course/plus.php:235
-#: ../app/controllers/profilemodules.php:165
-msgid "Anzeige nach Kategorien"
-msgstr "Display by categories"
-
-#: ../app/controllers/course/elearning.php:30
-#: ../app/controllers/elearning.php:34
-msgid "Elearning-Interface ist nicht aktiviert."
-msgstr "The elearning interface is not active."
-
-#: ../app/controllers/course/elearning.php:138
-#: ../app/controllers/course/elearning.php:261
-msgid "Momentan sind dieser Einrichtung keine Lernmodule zugeordnet."
-msgstr "At present, no learning module has been allocated to this institute."
-
-#: ../app/controllers/course/elearning.php:140
-#: ../app/controllers/course/elearning.php:263
-msgid "Momentan sind dieser Veranstaltung keine Lernmodule zugeordnet."
-msgstr "At present, no learning module has been allocated to this course."
-
-#: ../app/controllers/course/elearning.php:153
-#, php-format
-msgid "Direkt zum Kurs in %s"
-msgstr "Directly to the course in %s"
-
-#: ../app/controllers/course/elearning.php:180
-msgid "Kurs wurde angelegt."
-msgstr "Course created."
-
-#: ../app/controllers/course/elearning.php:187
-msgid "Zuordnung wurde gespeichert."
-msgstr "Allocation saved."
-
-#: ../app/controllers/course/elearning.php:217
-msgid "Jeder Suchbegriff muss mindestens 3 Zeichen lang sein!"
-msgstr "Your search string must comprise at least 3 characters!"
-
-#: ../app/controllers/course/elearning.php:337
-msgid "Zuordnungen aktualisieren"
-msgstr "Update allocation"
-
-#: ../app/controllers/course/details.php:37
-msgid "Es konnte keine Veranstaltung gefunden werden"
-msgstr "No course could be found"
-
-#: ../app/controllers/course/details.php:46
-msgid "Diese Veranstaltung ist versteckt. Hier gibt es nichts zu sehen."
-msgstr "This course is hidden. There's nothing to see here."
-
-#: ../app/controllers/course/details.php:223
-msgid "direkt zur Veranstaltung"
-msgstr "directly to the course"
-
-#: ../app/controllers/course/details.php:225
-msgid "Zugang zur Veranstaltung"
-msgstr "Go to course"
-
-#: ../app/controllers/course/details.php:227
-#: ../app/views/course/details/index.php:469
-msgid ""
-"Die Anmeldung ist verbindlich, Teilnehmende können sich nicht selbst "
-"austragen."
-msgstr "The enrolment is binding, participants cannot unsubscribe themselves."
-
-#: ../app/controllers/course/details.php:253
-msgid "Nur im Stundenplan vormerken"
-msgstr "Reserve only in the timetable"
-
-#: ../app/controllers/course/details.php:262
-msgid "Zurück zur letzten Auswahl"
-msgstr "Return to last selection"
-
-#: ../app/controllers/course/timesrooms.php:43
-msgid ""
-"Diese Seite ist für die Bearbeitung gesperrt. Sie können die Daten einsehen, "
-"jedoch nicht verändern."
-msgstr "This page is locked for editing. You can view but not modify the data."
-
-#: ../app/controllers/course/timesrooms.php:55
-#: ../app/views/resources/booking/index.php:102
-#: ../app/views/resources/booking/index.php:107
-msgid "Verwaltung von Zeiten und Räumen"
-msgstr "Manage appointments and room assignments"
-
-#: ../app/controllers/course/timesrooms.php:114
-msgid "Rot"
-msgstr "Red"
-
-#: ../app/controllers/course/timesrooms.php:114
-msgid "Kein Termin hat eine Raumbuchung."
-msgstr "No date has a room booking."
-
-#: ../app/controllers/course/timesrooms.php:115
-msgid "Gelb"
-msgstr "Yellow"
-
-#: ../app/controllers/course/timesrooms.php:115
-msgid "Mindestens ein Termin hat keine Raumbuchung."
-msgstr "At least one date has no room allocation."
-
-#: ../app/controllers/course/timesrooms.php:116
-#: ../app/views/contents/courseware/create_project.php:102
-msgid "Grün"
-msgstr "Green"
-
-#: ../app/controllers/course/timesrooms.php:116
-msgid "Alle Termine haben eine Raumbuchung."
-msgstr "All dates have a room booking."
-
-#: ../app/controllers/course/timesrooms.php:174
-msgid "mehrere gebuchte Räume"
-msgstr "multiple booked rooms"
-
-#: ../app/controllers/course/timesrooms.php:248
-msgid "Das Startsemester liegt nach dem Endsemester!"
-msgstr "Start semester is after end semester!"
-
-#: ../app/controllers/course/timesrooms.php:304
-msgid "Einzeltermin bearbeiten"
-msgstr "Edit single date"
-
-#: ../app/controllers/course/timesrooms.php:324
-msgid ""
-"Die Raumbuchung zu diesem Termin wird bei der Verlängerung des Zeitbereiches "
-"gelöscht, da sie keine Buchungsrechte am Raum haben!"
-msgstr ""
-"The room booking for this date will be deleted if the time range is expanded "
-"because you don't have booking rights for the room!"
-
-#: ../app/controllers/course/timesrooms.php:364
-#: ../app/controllers/course/timesrooms.php:500
-#: ../app/controllers/course/timesrooms.php:1087
-#: ../app/controllers/course/timesrooms.php:1148
-msgid "Die Zeitangaben sind nicht korrekt. Bitte überprüfen Sie diese!"
-msgstr "Please check dates!"
-
-#: ../app/controllers/course/timesrooms.php:374
-#, php-format
-msgid ""
-"Der Termin %s wurde aus der Liste der regelmäßigen Termine gelöscht und als "
-"unregelmäßiger Termin eingetragen, da Sie die Zeiten des Termins verändert "
-"haben, so dass dieser Termin nun nicht mehr regelmäßig ist."
-msgstr ""
-"The date %s has been removed from the list of periodic dates and has instead "
-"been inserted as aperiodic date. This is because you have modified the times "
-"of the date so that it is no longer periodic."
-
-#: ../app/controllers/course/timesrooms.php:435
-#: ../app/controllers/course/timesrooms.php:881
-#, php-format
-msgid "Der angegebene Raum konnte für den Termin %s nicht gebucht werden!"
-msgstr "The specified room could not be allocated for the date %s!"
-
-#: ../app/controllers/course/timesrooms.php:443
-#, php-format
-msgid ""
-"Die Raumbuchung für den Termin %s wurde aufgehoben, da die neuen Zeiten "
-"außerhalb der alten liegen!"
-msgstr ""
-"The room allocation for the date %s has been cancelled since the new times "
-"lie outside of the old ones!"
-
-#: ../app/controllers/course/timesrooms.php:445
-#: ../app/controllers/course/timesrooms.php:536
-#: ../app/controllers/course/timesrooms.php:890
-msgid ""
-"Um eine Raumbuchung durchzuführen, müssen Sie einen Raum aus dem "
-"Suchergebnis auswählen!"
-msgstr "To book a room you must first select a room from the search results!"
-
-#: ../app/controllers/course/timesrooms.php:451
-#: ../app/controllers/course/timesrooms.php:896
-#, php-format
-msgid ""
-"Der Termin %s wurde geändert, etwaige Raumbuchung wurden entfernt und "
-"stattdessen der angegebene Freitext eingetragen!"
-msgstr ""
-"The date %s has been changed and all room bookings were removed and the free "
-"location information has been entered!"
-
-#: ../app/controllers/course/timesrooms.php:456
-#: ../app/controllers/course/timesrooms.php:902
-#, php-format
-msgid ""
-"Der Termin %s wurde geändert, etwaige freie Ortsangaben und Raumbuchungen "
-"wurden entfernt."
-msgstr ""
-"The date %s has been changed. Any free location information and room "
-"bookings have been removed."
-
-#: ../app/controllers/course/timesrooms.php:460
-msgid "Die folgenden Fehler traten beim Bearbeiten des Termins auf:"
-msgstr "The following errors occurred while editing the date:"
-
-#: ../app/controllers/course/timesrooms.php:544
-#, php-format
-msgid "Der Termin %s wurde hinzugefügt!"
-msgstr "The date %s has been added!"
-
-#: ../app/controllers/course/timesrooms.php:561
-#: ../app/controllers/course/timesrooms.php:707
-#, php-format
-msgid "Der Termin %s wurde wiederhergestellt!"
-msgstr "The date %s has been restored!"
-
-#: ../app/controllers/course/timesrooms.php:586
-msgid "Sie haben keine Termine ausgewählt!"
-msgstr "You haven't selected any dates!"
-
-#: ../app/controllers/course/timesrooms.php:596
-msgid "Termine bearbeiten"
-msgstr "Edit dates"
-
-#: ../app/controllers/course/timesrooms.php:604
-msgid "Termine stattfinden lassen"
-msgstr "Let dates take place"
-
-#: ../app/controllers/course/timesrooms.php:609
-#: ../app/views/course/timesrooms/_stack_actions.php:5
-msgid "Anfrage auf ausgewählte Termine stellen"
-msgstr "Create a request for the selected dates"
-
-#: ../app/controllers/course/timesrooms.php:760
-#: ../app/controllers/course/timesrooms.php:1249
-#: ../app/controllers/course/cancel_dates.php:65
-msgid "Alle Teilnehmenden wurden benachrichtigt."
-msgstr "All participants have been notified."
-
-#: ../app/controllers/course/timesrooms.php:823
-msgid "Zuständige Personen für die Termine wurden geändert."
-msgstr "Person in charge for the dates has been changed."
-
-#: ../app/controllers/course/timesrooms.php:857
-msgid "Zugewiesene Gruppen für die Termine wurden geändert."
-msgstr "Assigned groups for the dates have been changed."
-
-#: ../app/controllers/course/timesrooms.php:909
-#, php-format
-msgid "Die Art des Termins %s wurde geändert."
-msgstr "The type of the date %s has been changed."
-
-#: ../app/controllers/course/timesrooms.php:947
-msgid "Es wurden keine gültigen Termin-IDs übergeben!"
-msgstr "No valid date-IDs have been specified!"
-
-#: ../app/controllers/course/timesrooms.php:959
-msgid "Fehler beim Speichern der Anfrage!"
-msgstr "Error while saving the request!"
-
-#: ../app/controllers/course/timesrooms.php:976
-msgid "Es wurden nicht alle zur Anfrage gehörenden Eigenschaften gespeichert!"
-msgstr "Not all properties for the request have been saved!"
-
-#: ../app/controllers/course/timesrooms.php:996
-msgid ""
-"Es wurden nicht alle zur Anfrage gehörenden Terminzuordnungen gespeichert!"
-msgstr "Not all date assignments belonging to the request have been saved!"
-
-#: ../app/controllers/course/timesrooms.php:1002
-msgid "Die Raumanfrage wurde gespeichert!"
-msgstr "The room request has been saved!"
-
-#: ../app/controllers/course/timesrooms.php:1014
-msgid "Regelmäßige Termine anlegen"
-msgstr "Add periodic dates"
-
-#: ../app/controllers/course/timesrooms.php:1053
-#, php-format
-msgid "Anfang %s"
-msgstr "Start %s"
-
-#: ../app/controllers/course/timesrooms.php:1056
-#, php-format
-msgid "Ende %s"
-msgstr "End %s"
-
-#: ../app/controllers/course/timesrooms.php:1093
-msgid ""
-"Die Endwoche liegt vor der Startwoche. Bitte überprüfen Sie diese Angabe!"
-msgstr "The end week lies befor the start weerk. Please check these data!"
-
-#: ../app/controllers/course/timesrooms.php:1123
-#, php-format
-msgid "Die regelmäßige Veranstaltungszeit %s wurde hinzugefügt!"
-msgstr "Periodic course date \"%s\" has been added!"
-
-#: ../app/controllers/course/timesrooms.php:1128
-msgid ""
-"Die regelmäßige Veranstaltungszeit konnte nicht hinzugefügt werden! Bitte "
-"überprüfen Sie Ihre Eingabe."
-msgstr ""
-"The periodic course date could not be added! Please check your entries."
-
-#: ../app/controllers/course/timesrooms.php:1175
-#, php-format
-msgid "Die Art des Termins wurde bei 1 Termin geändert"
-msgstr "The date type has been changed for 1 date"
-
-#: ../app/controllers/course/timesrooms.php:1176
-#, php-format
-msgid "Die Art des Termins wurde bei %u Terminen geändert"
-msgstr "The date type has been changed for %u dates"
-
-#: ../app/controllers/course/timesrooms.php:1180
-#: ../app/controllers/file.php:457 ../app/controllers/file.php:491
-msgid "Änderungen gespeichert!"
-msgstr "Saved changes!"
-
-#: ../app/controllers/course/timesrooms.php:1183
-msgid "Es wurden keine Änderungen vorgenommen"
-msgstr "No changes made"
-
-#: ../app/controllers/course/timesrooms.php:1199
-#, php-format
-msgid "Es gibt keinen regelmäßigen Eintrag \"%s\"."
-msgstr "No periodic entry \"%s\"."
-
-#: ../app/controllers/course/timesrooms.php:1204
-#, php-format
-msgid "Der regelmäßige Eintrag \"%s\" wurde gelöscht."
-msgstr "Periodic entry \"%s\" has been deleted."
-
-#: ../app/controllers/course/timesrooms.php:1220
-msgid "Kommentar hinzufügen"
-msgstr "Add comment"
-
-#: ../app/controllers/course/timesrooms.php:1239
-#, php-format
-msgid "Der Kommtentar des gelöschten Termins %s wurde geändert."
-msgstr "The commentary of the deleted date %s has been changed."
-
-#: ../app/controllers/course/timesrooms.php:1241
-#: ../app/controllers/course/timesrooms.php:1244
-#, php-format
-msgid "Der gelöschte Termin %s wurde nicht verändert."
-msgstr "The deleted date %s has not been changed."
-
-#: ../app/controllers/course/timesrooms.php:1265
-#, php-format
-msgid "Semester ändern (%s)"
-msgstr "Change semester (%s)"
-
-#: ../app/controllers/course/timesrooms.php:1274
-#: ../app/controllers/my_courses.php:846
-#: ../app/controllers/files_dashboard/sidebar.php:119
-#: ../app/views/calendar/single/_semester_filter.php:4
-msgid "Semesterfilter"
-msgstr "Semersterfilter"
-
-#: ../app/controllers/course/timesrooms.php:1373
-#, php-format
-msgid ""
-"Dem Termin %s war ein Thema zugeordnet. Sie können das Thema im Ablaufplan "
-"einem anderen Termin (z.B. einem Ausweichtermin) zuordnen."
-msgstr ""
-"A topic had been assigned to the date %s. You can assign the topic to "
-"another date (e.g. an alternative date) in the schedule."
-
-#: ../app/controllers/course/timesrooms.php:1377
-#, php-format
-msgid ""
-"Der Termin %s wurde gelöscht! Die Buchung für den Raum %s wurde gelöscht."
-msgstr ""
-"The date %s has been deleted! The booking of the room %s has been deleted."
-
-#: ../app/controllers/course/timesrooms.php:1380
-#, php-format
-msgid "Der Termin %s wurde gelöscht!"
-msgstr "Date %s has been deleted!"
-
-#: ../app/controllers/course/timesrooms.php:1496
-#, php-format
-msgid "(%s Sitzplätze)"
-msgstr "(%s seats)"
-
-#: ../app/controllers/course/cancel_dates.php:45
-msgid "Veranstaltungstermine absagen"
-msgstr "Cancel course dates"
-
-#: ../app/controllers/course/cancel_dates.php:68
-msgid "Folgende Termine wurden abgesagt"
-msgstr "The following dates have been cancelled"
-
-#: ../app/controllers/course/wizard.php:46
-#: ../app/controllers/course/wizard.php:48
-#: ../app/controllers/course/studygroup.php:381
-#: ../app/controllers/my_courses.php:938
-#: ../app/controllers/my_studygroups.php:34
-#: ../app/controllers/studygroup.php:99 ../app/views/studygroup/browse.php:102
-msgid "Neue Studiengruppe anlegen"
-msgstr "Create new study group"
-
-#: ../app/controllers/course/wizard.php:169
-#, php-format
-msgid "%u Veranstaltungen wurden angelegt."
-msgstr "%u courses have been created."
-
-#: ../app/controllers/course/wizard.php:174
-#, php-format
-msgid "%u Veranstaltungen konnten nicht angelegt werden."
-msgstr "%u courses could not be created."
-
-#: ../app/controllers/course/wizard.php:184
-#, php-format
-msgid ""
-"Die Studien-/Arbeitsgruppe \"%s\" wurde angelegt. Sie können sie direkt hier "
-"weiter verwalten."
-msgstr ""
-"The study/working group \"%s\" has been created. Here you can directly "
-"continue managing it."
-
-#: ../app/controllers/course/wizard.php:192
-#, php-format
-msgid ""
-"Die Veranstaltung <a class=\"link-intern\" href=\"%s\">\"%s\"</a> wurde "
-"angelegt."
-msgstr ""
-"The course <a class=\"link-intern\" href=\"%s\">\"%s\"</a> has been created."
-
-#: ../app/controllers/course/wizard.php:198
-#, php-format
-msgid ""
-"Die Veranstaltung \"%s\" wurde angelegt. Sie können sie direkt hier weiter "
-"verwalten."
-msgstr ""
-"The course \"%s\" has been created. Here you can directly continue managing "
-"it."
-
-#: ../app/controllers/course/wizard.php:207
-msgid "Die Veranstaltung konnte nicht angelegt werden."
-msgstr "The course cannot be created."
-
-#: ../app/controllers/course/wizard.php:212
-msgid "Die angegebene Veranstaltung wurde bereits angelegt."
-msgstr "The specified course has already been created."
-
-#: ../app/controllers/course/wizard.php:290
-msgid "Sie dürfen diese Veranstaltung nicht kopieren"
-msgstr "You must not copy this course"
-
-#: ../app/controllers/course/grouping.php:39
-#: ../app/controllers/settings/categories.php:114
-msgid "Sie haben leider nicht die notwendige Berechtigung für diese Aktion."
-msgstr ""
-"Unfortunately, you do not have the required permissions for this action."
-
-#: ../app/controllers/course/grouping.php:134
-msgid "Unterveranstaltungen anlegen"
-msgstr "Create sub-courses"
-
-#: ../app/controllers/course/grouping.php:182
-msgid "Nachricht an alle Teilnehmenden schreiben"
-msgstr "Write message to all participants"
-
-#: ../app/controllers/course/grouping.php:208
-msgid "Teilnehmendenliste als CSV-Dokument exportieren"
-msgstr "Export waiting list as csv document"
-
-#: ../app/controllers/course/grouping.php:227
-msgid "Teilnehmendenliste als rtf-Dokument exportieren"
-msgstr "Export list of participants as rtf document"
-
-#: ../app/controllers/course/grouping.php:315
-#: ../app/views/course/grouping/move_members_target.php:3
-#: ../app/views/course/grouping/move_members_target.php:20
-msgid "Personen verschieben"
-msgstr "Move person"
-
-#: ../app/controllers/course/grouping.php:348
-#, php-format
-msgid "%u Personen wurden verschoben."
-msgstr "%u persons have been moved."
-
-#: ../app/controllers/course/grouping.php:352
-#, php-format
-msgid "%u Personen konnten nicht verschoben werden."
-msgstr "%u persons could not be moved."
-
-#: ../app/controllers/course/grouping.php:380
-#, php-format
-msgid "%u Personen wurden entfernt."
-msgstr "%u persons have been removed."
-
-#: ../app/controllers/course/grouping.php:384
-#, php-format
-msgid "%u Personen konnten nicht entfernt werden."
-msgstr "%u persons could not be removed."
-
-#: ../app/controllers/course/grouping.php:403
-msgid "Vertretung/en"
-msgstr "Substitute/s"
-
-#: ../app/controllers/course/grouping.php:447
-msgid "Die Hauptveranstaltung wurde zugeordnet."
-msgstr "The main course has been assigned."
-
-#: ../app/controllers/course/grouping.php:449
-msgid "Die Hauptveranstaltung konnte nicht zugeordnet werden."
-msgstr "The main course could not be assigned."
-
-#: ../app/controllers/course/grouping.php:452
-msgid "Bitte geben Sie eine Veranstaltung an, zu der zugeordnet werden soll."
-msgstr "Please specify a course for assignment."
-
-#: ../app/controllers/course/grouping.php:468
-msgid "Die Zuordnung zur Hauptveranstaltung wurde entfernt."
-msgstr "The assignment to the main course has been removed."
-
-#: ../app/controllers/course/grouping.php:470
-msgid "Die Zuordnung zur Hauptveranstaltung konnte nicht entfernt werden."
-msgstr "The assignment to the main course could not be removed."
-
-#: ../app/controllers/course/grouping.php:489
-msgid "Die Unterveranstaltung wurde hinzugefügt."
-msgstr "The sub-course has been added."
-
-#: ../app/controllers/course/grouping.php:491
-msgid "Die Unterveranstaltung konnte nicht hinzugefügt werden."
-msgstr "The sub-course could not be added."
-
-#: ../app/controllers/course/grouping.php:494
-msgid ""
-"Bitte geben Sie eine Veranstaltung an, die als Unterveranstaltung "
-"hinzugefügt werden soll."
-msgstr "Please specify a course which shall be added as sub-course."
-
-#: ../app/controllers/course/grouping.php:511
-msgid "Die Unterveranstaltung wurde entfernt."
-msgstr "The sub-course has been removed."
-
-#: ../app/controllers/course/grouping.php:513
-msgid "Die Unterveranstaltung konnte nicht entfernt werden."
-msgstr "The sub-course could not be removed."
-
-#: ../app/controllers/course/grouping.php:569
-msgid ""
-"In folgenden Veranstaltungen sind Probleme beim Eintragen der gewünschten "
-"Personen aufgetreten:"
-msgstr ""
-"Problems occurred during entering the requested person in the following "
-"courses:"
-
-#: ../app/controllers/course/grouping.php:574
-msgid "Die gewählte Person wurde eingetragen."
-msgid_plural "Die gewählten Personen wurden eingetragen."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/topics.php:68
-msgid "Thema gespeichert."
-msgstr "Topic saved."
-
-#: ../app/controllers/course/topics.php:121
-msgid "Thema gelöscht."
-msgstr "Topic deleted."
-
-#: ../app/controllers/course/topics.php:135
-#, php-format
-msgid "Bearbeiten: %s"
-msgstr "Edit: %s"
-
-#: ../app/controllers/course/topics.php:171
-#, php-format
-msgid "%s Themen kopiert."
-msgstr "%s topics copied."
-
-#: ../app/controllers/course/topics.php:225
-#: ../app/controllers/course/topics.php:266
-msgid "Themen aus Veranstaltung kopieren"
-msgstr "Copy topics from course"
-
-#: ../app/controllers/course/topics.php:247
-msgid "Alle Themen aufklappen"
-msgstr "Open all topics"
-
-#: ../app/controllers/course/topics.php:253
-msgid "Alle Themen zuklappen"
-msgstr "Close all topics"
-
-#: ../app/controllers/course/topics.php:275
-msgid "Themen öffentlich einsehbar"
-msgstr "Topics are public"
-
-#: ../app/controllers/course/lti.php:35
-msgid "Sie besitzen keine Berechtigung, um LTI-Tools zu konfigurieren."
-msgstr "You are not allowed to configure LTI tools."
-
-#: ../app/controllers/course/lti.php:61
-msgid "Abschnitt hinzufügen"
-msgstr "Add section"
-
-#: ../app/controllers/course/lti.php:68
-msgid "Link aus LTI-Tool einfügen"
-msgstr "Insert link from LTI tool"
-
-#: ../app/controllers/course/lti.php:75
-msgid ""
-"Auf dieser Seite können Sie externe Anwendungen einbinden, sofern diese den "
-"LTI-Standard (Version 1.x) unterstützen."
-msgstr ""
-"On this page you can include external applications, if they support the LTI "
-"standard (version 1.x)."
-
-#: ../app/controllers/course/lti.php:192
-msgid "Der Abschnitt wurde gespeichert."
-msgstr "The section has been saved."
-
-#: ../app/controllers/course/lti.php:208
-msgid "Der Abschnitt wurde gelöscht."
-msgstr "The section has been deleted."
-
-#: ../app/controllers/course/lti.php:310
-msgid "Der Link wurde als neuer Abschnitt hinzugefügt."
-msgstr "The link has been added as a new section."
-
-#: ../app/controllers/course/lti.php:529
-msgid "Ergebnisse exportieren"
-msgstr "Export results"
-
-#: ../app/controllers/course/lti.php:537
-msgid ""
-"Auf dieser Seite können Sie die Ergebnisse sehen, die von LTI-Tools "
-"zurückgemeldet wurden."
-msgstr ""
-"On this page you can see the results that have been reported back from LTI "
-"tools."
-
-#: ../app/controllers/course/admission.php:42
-msgid "Verwaltung von Zugangsberechtigungen"
-msgstr "Access permission management"
-
-#: ../app/controllers/course/admission.php:107
-msgid ""
-"Für diese Veranstaltung sind keine Anmelderegeln festgelegt. Die "
-"Veranstaltung ist damit für alle Nutzer zugänglich."
-msgstr ""
-"There are no admission rules for this course. Therefore the course is "
-"accessible for all users."
-
-#: ../app/controllers/course/admission.php:110
-msgid ""
-"Diese Veranstaltung ist teilnahmebeschränkt, aber die maximale "
-"Teilnehmendenanzahl ist nicht gesetzt."
-msgstr ""
-"This course has restricted participation but the maximum number of "
-"participants is not set."
-
-#: ../app/controllers/course/admission.php:125
-#: ../app/views/course/admission/index.php:172
-msgid "Anmeldemodus ändern"
-msgstr "Change admission"
-
-#: ../app/controllers/course/admission.php:134
-msgid ""
-"Sie beabsichtigen den Anmeldemodus auf vorläufiger Eintrag zu ändern. Sollen "
-"die bereits in der Veranstaltung eingetragenen Teilnehmenden in vorläufige "
-"Teilnehmende umgewandelt werden?"
-msgstr ""
-"You are about to change the admission mode to preliminary admission. Do you "
-"want to convert the participants already enroled in the course to "
-"preliminary participants?"
-
-#: ../app/controllers/course/admission.php:137
-msgid ""
-"Sie beabsichtigen den Anmeldemodus auf direkten Eintrag zu ändern. Sollen "
-"die vorläufigen Teilnehmenden in die Veranstaltung übernommen werden "
-"(ansonsten werden die vorläufigen Teilnehmenden aus der Veranstaltung "
-"entfernt) ?"
-msgstr ""
-"You are about to change the admission mode to direct enrolment. Do you want "
-"to enrol the preliminary participants into the course (otherwise the "
-"preliminary participants will be removed from the course) ?"
-
-#: ../app/controllers/course/admission.php:148
-#, php-format
-msgid ""
-"Sie wurden in der Veranstaltung **%s** in den Status **vorläufig "
-"akzeptiert** befördert, da das Anmeldeverfahren geändert wurde."
-msgstr ""
-"The registration procedure of course **%s** has been modified. As a result "
-"you have been promoted to the status **provisionally accepted**."
-
-#: ../app/controllers/course/admission.php:149
-#: ../app/controllers/course/admission.php:165
-#: ../app/controllers/course/admission.php:178
-#: ../app/controllers/course/admission.php:280
-#: ../app/controllers/course/admission.php:367
-#, php-format
-msgid "Statusänderung %s"
-msgstr "Status change %s"
-
-#: ../app/controllers/course/admission.php:154
-#, php-format
-msgid "%s Teilnehmende wurden auf vorläufigen Eintrag gesetzt."
-msgstr "%s participants have been set to preliminary enroled."
-
-#: ../app/controllers/course/admission.php:164
-#, php-format
-msgid ""
-"Sie wurden in der Veranstaltung **%s** in den Status **Autor** versetzt, da "
-"das Anmeldeverfahren geändert wurde."
-msgstr ""
-"The registration procedure of course **%s** has been modified. As a result "
-"you have been given status **Author**."
-
-#: ../app/controllers/course/admission.php:170
-#, php-format
-msgid "%s Teilnehmende wurden in die Veranstaltung übernommen."
-msgstr "%s participants have been enroled into the course."
-
-#: ../app/controllers/course/admission.php:177
-#, php-format
-msgid ""
-"Sie wurden aus der Veranstaltung **%s** entfernt, da das Anmeldeverfahren "
-"geändert wurde."
-msgstr ""
-"You have been resigned from course \"%s\" because the admission has been "
-"changed."
-
-#: ../app/controllers/course/admission.php:184
-#, php-format
-msgid "%s vorläufige Teilnehmende wurden entfernt."
-msgstr "%s preliminary participants have been removed."
-
-#: ../app/controllers/course/admission.php:190
-msgid "Der Anmeldemodus wurde geändert."
-msgstr "Admission has been changed."
-
-#: ../app/controllers/course/admission.php:234
-msgid "Zugriff für externe Nutzer wurde geändert."
-msgstr "The access for external users has been changed."
-
-#: ../app/controllers/course/admission.php:243
-msgid "Teilnehmendenanzahl ändern"
-msgstr "Change number of participants"
-
-#: ../app/controllers/course/admission.php:255
-#, php-format
-msgid ""
-"Sie beabsichtigen die Warteliste zu deaktivieren. Die bestehende Warteliste "
-"mit %s Einträgen wird gelöscht. Sind sie sicher?"
-msgstr ""
-"You are about to deactivate a wait list. It contains already %s entries. "
-"Proceed?"
-
-#: ../app/controllers/course/admission.php:264
-#, php-format
-msgid ""
-"Sie beabsichtigen die Anzahl der Wartenden zu begrenzen. Die letzten %s "
-"Einträge der Warteliste werden gelöscht. Sind sie sicher?"
-msgstr ""
-"You are about to limit the number of persons on the wait list. %s persons "
-"will be excluded. Proceed?"
-
-#: ../app/controllers/course/admission.php:279
-#: ../app/controllers/course/admission.php:366
-#, php-format
-msgid ""
-"Die Warteliste der Veranstaltung **%s** wurde deaktiviert, Sie sind damit "
-"__nicht__ zugelassen worden."
-msgstr ""
-"The waiting list of course **%s** was deactivated. You have __NOT__ been "
-"enroled."
-
-#: ../app/controllers/course/admission.php:287
-#: ../app/controllers/course/admission.php:374
-#, php-format
-msgid "%s Wartende wurden entfernt."
-msgstr "%s persons cancelled from wait list."
-
-#: ../app/controllers/course/admission.php:292
-msgid "Die Teilnehmendenanzahl wurde geändert."
-msgstr "The number of participants has been changed."
-
-#: ../app/controllers/course/admission.php:319
-msgid "Die zugelassenen Nutzerdomänen wurden geändert."
-msgstr "Allowed user domains changed."
-
-#: ../app/controllers/course/admission.php:334
-#, php-format
-msgid "Die Zuordnung zum Anmeldeset %s wurde durchgeführt."
-msgstr "The assignment to the admission set %s has been made."
-
-#: ../app/controllers/course/admission.php:339
-msgid "Anmelderegeln aufheben"
-msgstr "Cancel admission"
-
-#: ../app/controllers/course/admission.php:342
-#, php-format
-msgid ""
-"In dieser Veranstaltung existiert eine Warteliste. Die bestehende Warteliste "
-"mit %s Einträgen wird gelöscht. Sind sie sicher?"
-msgstr "The course has a wait list with %s entries. Delete it anyway?"
-
-#: ../app/controllers/course/admission.php:348
-#, php-format
-msgid ""
-"In dieser Veranstaltung existiert eine Anmeldeliste (Platzverteilung am %s). "
-"Die bestehende Anmeldeliste mit %s Einträgen wird gelöscht. Sind sie sicher?"
-msgstr ""
-"The admission list (admission on %s) with %s entries will be deleted. "
-"Continue?"
-
-#: ../app/controllers/course/admission.php:355
-#, php-format
-msgid "Die Zuordnung zum Anmeldeset %s wurde aufgehoben."
-msgstr "Assignment to admission %s cancelled."
-
-#: ../app/controllers/course/admission.php:401
-msgid "Neue Anmelderegel"
-msgstr "New admission rule"
-
-#: ../app/controllers/course/admission.php:416
-msgid "Die Veranstaltung wurde gesperrt."
-msgstr "Course locked."
-
-#: ../app/controllers/course/admission.php:428
-msgid "Bitte geben Sie einen Namen für die Anmelderegel ein!"
-msgstr "Please specify a name for the admission rule!"
-
-#: ../app/controllers/course/admission.php:433
-msgid "Speichern fehlgeschlagen"
-msgstr "Error on Saving"
-
-#: ../app/controllers/course/admission.php:444
-msgid "Die Anmelderegel wurde erzeugt und der Veranstaltung zugewiesen."
-msgstr "Admission created and assigned to course."
-
-#: ../app/controllers/course/enrolment.php:62
-msgid "Veranstaltungsanmeldung"
-msgstr "Enrolment"
-
-#: ../app/controllers/course/enrolment.php:93
-msgid "Die Anmeldung war nicht erfolgreich."
-msgstr "The enrolment has not been successful."
-
-#: ../app/controllers/course/enrolment.php:104
-msgid "Die Plätze in dieser Veranstaltung wurden automatisch verteilt."
-msgstr "Seats will be assigned automatically."
-
-#: ../app/controllers/course/enrolment.php:113
-msgid "Diese Veranstaltung ist teilnahmebeschränkt."
-msgstr "The participation in this course is restricted."
-
-#: ../app/controllers/course/enrolment.php:114
-#, php-format
-msgid ""
-"Alle Plätze sind belegt, Sie wurden daher auf Platz %s der Warteliste "
-"gesetzt."
-msgstr ""
-"No seats available. You have therefore been put on the position %s on the "
-"wait list."
-
-#: ../app/controllers/course/enrolment.php:117
-msgid ""
-"Die Anmeldung war nicht erfolgreich. Alle Plätze sind belegt und es steht "
-"keine Warteliste zur Verfügung."
-msgstr "Enrolment not successful. No seats available."
-
-#: ../app/controllers/course/enrolment.php:119
-msgid ""
-"Die Anmeldung war nicht erfolgreich. Alle Plätze sind belegt und es stehen "
-"keine Wartelistenplätze zur Verfügung, da die Warteliste voll ist."
-msgstr ""
-"The enrolment has not been successful. All seats have been occupied and "
-"there are no seats left on the wait list since the wait list is full."
-
-#: ../app/controllers/course/enrolment.php:122
-msgid ""
-"Die Anmeldung war wegen technischer Probleme nicht erfolgreich. Bitte "
-"versuchen Sie es später noch einmal."
-msgstr ""
-"The enrolment has not been possible due to technical problems. Please try "
-"again later."
-
-#: ../app/controllers/course/enrolment.php:125
-msgid "Die Plätze in dieser Veranstaltung werden automatisch verteilt."
-msgstr "Seats in this course are assigned automatically."
-
-#: ../app/controllers/course/enrolment.php:127
-#, php-format
-msgid ""
-"Diese Veranstaltung gehört zu einem Anmeldeset mit %s Veranstaltungen. Sie "
-"können maximal %s davon belegen. Bei der Verteilung werden die von Ihnen "
-"gewünschten Prioritäten berücksichtigt."
-msgstr ""
-"The course is part of an admission with %s courses. You may enrol to %s. "
-"Your priorities will be accounted for."
-
-#: ../app/controllers/course/enrolment.php:143
-msgid "Zeitpunkt der automatischen Verteilung: "
-msgstr "Date of assignment:"
-
-#: ../app/controllers/course/enrolment.php:146
-msgid "Sie sind bereits für die Verteilung angemeldet."
-msgstr "You have already been registered for assignment."
-
-#: ../app/controllers/course/enrolment.php:183
-#: ../app/controllers/course/enrolment.php:207
-#, php-format
-msgid "Sie wurden in die Veranstaltung %s als %s eingetragen."
-msgstr "You have been assigned to course %s as %s."
-
-#: ../app/controllers/course/enrolment.php:190
-#, php-format
-msgid ""
-"Sie wurden auf die Anmeldeliste der Studiengruppe %s eingetragen. Die "
-"Moderatoren der Studiengruppe können Sie jetzt freischalten."
-msgstr ""
-"You have been entered to the registration list of the study group %s. The "
-"moderators of this study group can now approve your registration."
-
-#: ../app/controllers/course/enrolment.php:197
-#, php-format
-msgid "Sie wurden in die Veranstaltung %s vorläufig eingetragen."
-msgstr "You have been preliminary assigned to course %s."
-
-#: ../app/controllers/course/enrolment.php:236
-#, php-format
-msgid "Wollen Sie sich zu der Veranstaltung \"%s\" wirklich anmelden?"
-msgstr "Do you really want to sign up for the course \"%s\"?"
-
-#: ../app/controllers/course/enrolment.php:269
-msgid ""
-"Sie dürfen jede Priorität nur einmal auswählen. Überprüfen Sie bitte Ihre "
-"Auswahl!"
-msgstr "You may select every priority only once. Check your selection!"
-
-#: ../app/controllers/course/enrolment.php:302
-msgid "Ihre Priorisierung wurde gespeichert."
-msgstr "Your priorities have been saved."
-
-#: ../app/controllers/course/enrolment.php:304
-#: ../app/controllers/course/enrolment.php:314
-msgid "Ihre Anmeldung zur Platzvergabe wurde zurückgezogen."
-msgstr "Your application has been cancelled."
-
-#: ../app/controllers/course/enrolment.php:310
-msgid "Ihre Anmeldung zur Platzvergabe wurde gespeichert."
-msgstr "Your application has been saved."
-
-#: ../app/controllers/course/studygroup.php:26
-msgid "Dieses Seminar ist keine Studiengruppe!"
-msgstr "This seminar is not a study group!"
-
-#: ../app/controllers/course/studygroup.php:29
-#: ../app/controllers/course/studygroup.php:369
-#: ../app/views/course/studygroup/edit.php:13
-msgid "Studiengruppe bearbeiten"
-msgstr "Edit study groups"
-
-#: ../app/controllers/course/studygroup.php:32
-msgid "Die von Ihnen gewählte Option ist im System nicht aktiviert."
-msgstr "In this system the selected option is not available."
-
-#: ../app/controllers/course/studygroup.php:84
-#: ../app/controllers/course/studygroup.php:86
-msgid "Studiengruppendetails"
-msgstr "Study group details"
-
-#: ../app/controllers/course/studygroup.php:109
-msgid "Persönlicher Status:"
-msgstr "Personal status:"
-
-#: ../app/controllers/course/studygroup.php:112
-msgid "Mitgliedschaft bereits beantragt!"
-msgstr "Membership application already submitted!"
-
-#: ../app/controllers/course/studygroup.php:115
-msgid "Direkt zur Studiengruppe"
-msgstr "Directly to the study group"
-
-#: ../app/controllers/course/studygroup.php:118
-#: ../app/views/course/plus/index.php:258
-#, php-format
-msgid "Hinweis"
-msgstr "Hint"
-
-#: ../app/controllers/course/studygroup.php:119
-msgid "Sie sind Admin und können sich daher nicht für Studiengruppen anmelden."
-msgstr "As administrator you cannot add yourself to study groups."
-
-#: ../app/controllers/course/studygroup.php:127
-msgid "Einladung akzeptieren"
-msgstr "Accept invitation"
-
-#: ../app/controllers/course/studygroup.php:129
-msgid "Mitgliedschaft beantragen"
-msgstr "Apply for membership"
-
-#: ../app/controllers/course/studygroup.php:131
-msgid "Studiengruppe beitreten"
-msgstr "Join study group"
-
-#: ../app/controllers/course/studygroup.php:139
-msgid ""
-"Hier sehen Sie weitere Informationen zur Studiengruppe. Außerdem können Sie "
-"ihr beitreten/eine Mitgliedschaft beantragen."
-msgstr ""
-"Here, further information about the study group will be displayed. "
-"Furthermore, you can join the study group or submit a membership application."
-
-#: ../app/controllers/course/studygroup.php:147
-msgid "zurück zur Suche"
-msgstr "back to search"
-
-#: ../app/controllers/course/studygroup.php:225
-#, php-format
-msgid "Es wurde %s Person gefunden:"
-msgid_plural "Es wurden %s Personen gefunden:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/course/studygroup.php:232
-msgid "Es wurden keine Personen gefunden."
-msgstr "No persons have been found."
-
-#: ../app/controllers/course/studygroup.php:268
-#: ../app/controllers/course/studygroup.php:444
-msgid "Bitte Gruppennamen angeben"
-msgstr "Please enter group name"
-
-#: ../app/controllers/course/studygroup.php:276
-#: ../app/controllers/course/studygroup.php:454
-msgid ""
-"Eine Veranstaltung/Studiengruppe mit diesem Namen existiert bereits. Bitte "
-"wählen Sie einen anderen Namen"
-msgstr ""
-"A course or study group with this name already exists. Please choose a "
-"different name"
-
-#: ../app/controllers/course/studygroup.php:281
-msgid ""
-"Sie müssen die Nutzungsbedingungen durch Setzen des Häkchens bei "
-"'Einverstanden' akzeptieren."
-msgstr "You have to accept the terms of use by ticking the checkbox 'Accept'."
-
-#: ../app/controllers/course/studygroup.php:285
-msgid "Sie müssen mindestens einen Gruppengründer eintragen!"
-msgstr "The name of at least one group founder must be entered!"
-
-#: ../app/controllers/course/studygroup.php:312
-#: ../app/controllers/course/studygroup.php:475
-msgid ""
-"Die ModeratorInnen der Studiengruppe können Ihren Aufnahmewunsch bestätigen "
-"oder ablehnen. Erst nach Bestätigung erhalten Sie vollen Zugriff auf die "
-"Gruppe."
-msgstr ""
-"The moderator of the study group may accept or reject your request for "
-"admission. After receiving confirmation of admission you will obtain full "
-"access to the group."
-
-#: ../app/controllers/course/studygroup.php:393
-msgid "Diese Studiengruppe löschen"
-msgstr "Delete this study group"
-
-#: ../app/controllers/course/studygroup.php:485
-msgid "Die Änderungen wurden erfolgreich übernommen."
-msgstr "Changes successfully saved."
-
-#: ../app/controllers/course/studygroup.php:559
-#: ../app/controllers/course/studygroup.php:561
-msgid "Neue Gruppenmitglieder einladen"
-msgstr "Invite new group members"
-
-#: ../app/controllers/course/studygroup.php:564
-msgid "Adressbuch"
-msgstr "Address book"
-
-#: ../app/controllers/course/studygroup.php:574
-msgid "Nachricht an alle Gruppenmitglieder verschicken"
-msgstr "Send a message to all group members"
-
-#: ../app/controllers/course/studygroup.php:618
-msgid "Es wurde keine korrekte Option gewählt."
-msgstr "No correct option has been selected."
-
-#: ../app/controllers/course/studygroup.php:622
-#, php-format
-msgid "%s wurde akzeptiert."
-msgstr ""
-
-#: ../app/controllers/course/studygroup.php:628
-#, php-format
-msgid "%s wurde nicht akzeptiert."
-msgstr ""
-
-#: ../app/controllers/course/studygroup.php:634
-#, php-format
-msgid "Die Einladung von %s wurde gelöscht."
-msgstr ""
-
-#: ../app/controllers/course/studygroup.php:645
-#, php-format
-msgid "%u Personen wurden akzeptiert."
-msgstr ""
-
-#: ../app/controllers/course/studygroup.php:653
-#, php-format
-msgid "%u Personen wurden nicht akzeptiert."
-msgstr ""
-
-#: ../app/controllers/course/studygroup.php:661
-#, php-format
-msgid "Die Einladungen von %u Personen wurden gelöscht."
-msgstr ""
-
-#: ../app/controllers/course/studygroup.php:683
-#: ../app/controllers/course/studygroup.php:702
-#, php-format
-msgid "Der Status von %u Personen wurde geändert."
-msgstr ""
-
-#: ../app/controllers/course/studygroup.php:715
-#, php-format
-msgid "%u Personen wurden aus der Studiengruppe entfernt."
-msgstr ""
-
-#: ../app/controllers/course/studygroup.php:725
-#: ../app/controllers/course/studygroup.php:734
-#, php-format
-msgid "Der Status von %s wurde geändert."
-msgstr ""
-
-#: ../app/controllers/course/studygroup.php:741
-#, php-format
-msgid "Möchten Sie %s wirklich aus der Studiengruppe entfernen?"
-msgstr ""
-
-#: ../app/controllers/course/studygroup.php:749
-#, php-format
-msgid "%s wurde aus der Studiengruppe entfernt."
-msgstr ""
-
-#: ../app/controllers/course/studygroup.php:754
-msgid "Jede Studiengruppe muss mindestens einen Gruppengründer haben!"
-msgstr "Each study group must have at least one group founder!"
-
-#: ../app/controllers/course/studygroup.php:790
-#, php-format
-msgid ""
-"%s möchte Sie auf die Studiengruppe %s aufmerksam machen. Klicken Sie auf "
-"den untenstehenden Link, um direkt zur Studiengruppe zu gelangen.\n"
-"\n"
-" %s"
-msgstr ""
-"%s wants to draw your attention to the study group %s. The link below takes "
-"you directly to the study group.\n"
-"%s"
-
-#: ../app/controllers/course/studygroup.php:792
-msgid "Sie wurden in eine Studiengruppe eingeladen"
-msgstr "You have been invited to a study group"
-
-#: ../app/controllers/course/studygroup.php:804
-#, php-format
-msgid "%s wurde in die Studiengruppe eingeladen."
-msgstr "%s has been invited to the study group."
-
-#: ../app/controllers/course/studygroup.php:809
-#, php-format
-msgid "%s wurden in die Studiengruppe eingeladen."
-msgstr "%s have been invited to the study group."
-
-#: ../app/controllers/course/studygroup.php:848
-msgid "Sind Sie sicher, dass Sie diese Studiengruppe löschen möchten?"
-msgstr "Are you sure to delete this study group?"
-
-#: ../app/controllers/course/studygroup.php:885
-msgid "Verwaltung studentischer Arbeitsgruppen"
-msgstr "Student work group management"
-
-#: ../app/controllers/course/studygroup.php:894
-msgid "Verwaltung erlaubter Inhaltselemente und Plugins für Studiengruppen"
-msgstr "Management of permitted content elements and plug ins for study groups"
-
-#: ../app/controllers/course/studygroup.php:913
-msgid ""
-"Bitte wählen Sie eine Einrichtung aus, der die Studiengruppen zugeordnet "
-"werden sollen!"
-msgstr ""
-"Please select the institute you would like to allocate the study group to!"
-
-#: ../app/controllers/course/studygroup.php:917
-msgid "Bitte tragen Sie Nutzungsbedingungen ein!"
-msgstr "Please enter the terms of use!"
-
-#: ../app/controllers/course/studygroup.php:930
-msgid "Die Studiengruppen wurden aktiviert."
-msgstr "Study groups activated."
-
-#: ../app/controllers/course/studygroup.php:936
-msgid "Die Einstellungen wurden gespeichert!"
-msgstr "Settings saved!"
-
-#: ../app/controllers/course/studygroup.php:938
-msgid "Fehler beim Speichern der Einstellung!"
-msgstr "Error while saving the setting!"
-
-#: ../app/controllers/course/studygroup.php:961
-#, php-format
-msgid ""
-"Sie können die Studiengruppen nicht deaktivieren, da noch %s Studiengruppen "
-"vorhanden sind!"
-msgstr ""
-"You cannot deactivate study groups because there still are %s study groups."
-
-#: ../app/controllers/course/studygroup.php:966
-msgid "Die Studiengruppen wurden deaktiviert."
-msgstr "Study groups have been deactivated."
-
-#: ../app/controllers/course/block_appointments.php:39
-msgid "Blockveranstaltungstermine anlegen"
-msgstr "Create block course dates"
-
-#: ../app/controllers/course/block_appointments.php:126
-msgid "Bitte geben Sie korrekte Werte für Start- und Enddatum an!"
-msgstr "Please enter correct values as start and end date!"
-
-#: ../app/controllers/course/block_appointments.php:155
-msgid "Bitte wählen Sie mindestens einen Tag aus!"
-msgstr "Please select at least one day!"
-
-#: ../app/controllers/course/block_appointments.php:239
-msgid "Folgende Termine wurden erstellt:"
-msgstr "The following dates have been created:"
-
-#: ../app/controllers/course/block_appointments.php:244
-msgid "Keiner der ausgewählten Tage liegt in dem angegebenen Zeitraum!"
-msgstr "None of the selected dates is in the given period!"
-
-#: ../app/controllers/course/files.php:28
-msgid "Es wurde keine passende Veranstaltung gefunden."
-msgstr "No matching course could be found."
-
-#: ../app/controllers/course/files.php:66
-#: ../app/controllers/course/files.php:174 ../app/controllers/files.php:106
-#: ../app/controllers/files.php:587
-msgid "Bildergalerie öffnen"
-msgstr "Open image gallery"
-
-#: ../app/controllers/course/files.php:77
-#: ../app/controllers/institute/files.php:68 ../app/controllers/files.php:99
-#: ../app/views/files/index.php:69
-msgid "Neuer Ordner"
-msgstr "New folder"
-
-#: ../app/controllers/course/files.php:105
-msgid "Dateien hochladen"
-msgstr "Upload files"
-
-#: ../app/controllers/course/files.php:116
-#: ../app/controllers/institute/files.php:88 ../app/controllers/files.php:163
-#: ../app/views/files/flat.php:85
-msgid "Ordneransicht"
-msgstr "Folder view"
-
-#: ../app/controllers/course/files.php:147
-#: ../app/controllers/course/files.php:190
-#: ../app/controllers/course/files.php:215
-#: ../app/controllers/institute/files.php:119
-#: ../app/controllers/institute/files.php:143 ../app/controllers/files.php:558
-#: ../app/controllers/files.php:601
-msgid "Fehler beim Laden des Hauptordners!"
-msgstr "Error while loading the main folder!"
-
-#: ../app/controllers/course/files.php:168
-msgid "Neue Dateien herunterladen"
-msgstr "Download new files"
-
-#: ../app/controllers/course/files.php:244
-msgid "Es sind keine neuen Dateien in dieser Veranstaltung verfügbar!"
-msgstr "No new files are available in this course!"
-
-#: ../app/controllers/privacy.php:40 ../app/controllers/privacy.php:42
-#: ../app/controllers/profile.php:322 ../app/controllers/admin/user.php:1631
-#: ../app/views/admin/user/_results.php:188
-msgid "Anzeige Personendaten"
-msgstr "Display personal data"
-
-#: ../app/controllers/privacy.php:45 ../app/controllers/privacy.php:47
-#: ../app/controllers/privacy.php:103 ../app/controllers/privacy.php:105
-#: ../app/controllers/profile.php:328 ../app/controllers/admin/user.php:1637
-#: ../app/views/admin/user/_results.php:194
-msgid "Personendaten drucken"
-msgstr "Print personal data"
-
-#: ../app/controllers/privacy.php:51 ../app/controllers/privacy.php:53
-#: ../app/controllers/privacy.php:109 ../app/controllers/privacy.php:111
-#: ../app/controllers/profile.php:335 ../app/controllers/admin/user.php:1644
-#: ../app/views/admin/user/_results.php:200
-msgid "Export Personendaten als CSV"
-msgstr "Export personal data as CSV"
-
-#: ../app/controllers/privacy.php:56 ../app/controllers/privacy.php:114
-msgid "Export persönlicher Dateien als XML"
-msgstr "Export personal files as XML"
-
-#: ../app/controllers/privacy.php:58 ../app/controllers/privacy.php:116
-#: ../app/controllers/profile.php:341 ../app/controllers/admin/user.php:1650
-#: ../app/views/admin/user/_results.php:205
-msgid "Export Personendaten als XML"
-msgstr "Export personal data as XML"
-
-#: ../app/controllers/privacy.php:61 ../app/controllers/privacy.php:63
-#: ../app/controllers/privacy.php:119 ../app/controllers/privacy.php:121
-#: ../app/controllers/profile.php:347 ../app/controllers/admin/user.php:1656
-#: ../app/views/admin/user/_results.php:210
-msgid "Export persönlicher Dateien als ZIP"
-msgstr "Export personal data as ZIP"
-
-#: ../app/controllers/privacy.php:69
-msgid "Export angezeigter Dateien als XML"
-msgstr "Export displayed files as XML"
-
-#: ../app/controllers/privacy.php:71
-msgid "Export angezeigter Daten als XML"
-msgstr "Export displayed data as XML"
-
-#: ../app/controllers/privacy.php:76
-msgid "CSV"
-msgstr "CSV"
-
-#: ../app/controllers/privacy.php:158
-msgid "Die Daten konnten nicht exportiert werden."
-msgstr "The data could not be exported."
-
-#: ../app/controllers/privacy.php:368
-msgid "Keine Dateien vorhanden."
-msgstr "No files available."
-
-#: ../app/controllers/privacy.php:392
-msgid "Auskunft nach Art 15 DSGVO"
-msgstr "Information according to art. 15 GDPR"
-
-#: ../app/controllers/privacy.php:393
-msgid ""
-"Sehr geehrte Damen und Herren,\n"
-"\n"
-"hiermit bitte ich Sie nach Art 15 DSGVO, mir Auskunft über die über mich "
-"gespeicherten personenbezogenen Daten zu geben."
-msgstr ""
-"Dear ladies and gentlemen\n"
-"\n"
-"hereby I ask you to inform me about the stored personal data according to "
-"art. 15 GDPR."
-
-#: ../app/controllers/privacy.php:401
-msgid "Es wurde keine Kontaktperson bestimmt."
-msgstr "No contact person has been defined."
-
-#: ../app/controllers/privacy.php:402
-msgid ""
-"Bitte wenden Sie sich an den in der Datenschutzerklärung angegebenen "
-"Ansprechpartner."
-msgstr "Please contact the person specified in the privacy policy."
-
-#: ../app/controllers/privacy.php:416
-msgid "Alle Daten"
-msgstr "All data"
-
-#: ../app/controllers/privacy.php:417
-msgid "Übersicht aller Personendaten"
-msgstr "Overview over all personal data"
-
-#: ../app/controllers/privacy.php:422
-msgid "Angaben zur Person, Konfigurationen, Logs"
-msgstr "Information on the person, configuration, logs"
-
-#: ../app/controllers/privacy.php:426
-msgid "Veranstaltungen, Einrichtungen"
-msgstr "Courses, institutes"
-
-#: ../app/controllers/privacy.php:427
-msgid "Zuordnung zu Veranstaltungen, Einrichtungen, Fächern, Studiengängen"
-msgstr "Assignment to courses, institutes, field of study, course of study"
-
-#: ../app/controllers/privacy.php:431
-msgid "Kalender/Termine"
-msgstr "Calendar/dates"
-
-#: ../app/controllers/privacy.php:432
-msgid "Kalendereinträge und Termine"
-msgstr "Calendar entries and dates"
-
-#: ../app/controllers/privacy.php:437
-msgid "Nachrichten, Kommentare, Blubber, News"
-msgstr "News, comments, blubber"
-
-#: ../app/controllers/privacy.php:442
-msgid "Dateien, Forum, Wiki, Literaturlisten"
-msgstr "Files, forum, wiki, literature lists"
-
-#: ../app/controllers/privacy.php:446
-msgid "Fragebögen, Aufgaben"
-msgstr "Questionnaires, tasks"
-
-#: ../app/controllers/privacy.php:447
-msgid "Fragebögen, Umfragen, Aufgaben"
-msgstr "Questionnaires, surveys, tasks"
-
-#: ../app/controllers/privacy.php:451
-msgid "Plugin-Inhalte"
-msgstr "Plugin contents"
-
-#: ../app/controllers/privacy.php:452
-msgid "Inhalte aus Plugins"
-msgstr "Plugin contents"
-
-#: ../app/controllers/event_log.php:34
-#: ../app/views/shared/log_event/show.php:10 ../app/views/event_log/show.php:5
-msgid "Anzeige der Log-Events"
-msgstr "Display log events"
-
-#: ../app/controllers/event_log.php:58
-msgid "Kein passendes Objekt gefunden."
-msgstr "No matching object found."
-
-#: ../app/controllers/event_log.php:82
-msgid "Konfiguration der Logging-Funktionen"
-msgstr "Configuration of logging features"
-
-#: ../app/controllers/event_log.php:94 ../app/views/event_log/edit.php:6
-#, php-format
-msgid "Log-Aktion %s bearbeiten"
-msgstr "Edit log action %s"
-
-#: ../app/controllers/event_log.php:112
-msgid "Keine Beschreibung angegeben."
-msgstr "No description available."
-
-#: ../app/controllers/event_log.php:115
-msgid "Kein Info-Template angegeben."
-msgstr "No information template available."
-
-#: ../app/controllers/event_log.php:118
-msgid "Ablaufzeit darf nicht negativ sein."
-msgstr "Termination time must not be negative."
-
-#: ../app/controllers/blubber.php:84
-msgid "Neuer Blubber"
-msgstr "New Blubber"
-
-#: ../app/controllers/blubber.php:160
-msgid "Der Blubber wurde gelöscht."
-msgstr "The Blubber has been deleted."
-
-#: ../app/controllers/blubber.php:302
-msgid "Ihre Dateien aus Blubberstreams"
-msgstr "My files from Blubber streams"
-
-#: ../app/controllers/blubber.php:403
-msgid "Studiengruppe aus Konversation erstellen"
-msgstr "Create studygroup from Conversation"
-
-#: ../app/controllers/blubber.php:440
-#, php-format
-msgid "Studiengruppe '%s' wurde angelegt."
-msgstr "The studygroup '%s' has been created."
-
-#: ../app/controllers/blubber.php:450
-msgid "Private Konversation verlassen"
-msgstr "Leave private conversation"
-
-#: ../app/controllers/blubber.php:475
-msgid "Private Konversation gelöscht."
-msgstr "Private conversation deleted."
-
-#: ../app/controllers/blubber.php:477
-msgid "Private Konversation verlassen."
-msgstr "Leave private conversation."
-
-#: ../app/controllers/tfa.php:19
-msgid "Diesen Nutzer gibt es nicht"
-msgstr "This user does not exist"
-
-#: ../app/controllers/tfa.php:26 ../app/controllers/settings/settings.php:75
-#, php-format
-msgid "Daten von: %1$s (%2$s), Status: %3$s"
-msgstr "Data from: %1$s (%2$s), status: %3$s"
-
-#: ../app/controllers/tfa.php:58
-msgid "Die Zwei-Faktor-Authentifizierung wurde eingerichtet"
-msgstr "The two-factor authentication has been set up"
-
-#: ../app/controllers/tfa.php:71
-msgid "Bitte bestätigen Sie die Aktivierung."
-msgstr "Please confirm the activation."
-
-#: ../app/controllers/tfa.php:75
-msgid "Die Zwei-Faktor-Authentifizierung wurde aktiviert."
-msgstr "Two-factor authentication has been activated."
-
-#: ../app/controllers/tfa.php:88
-msgid "Das Einrichten der Zwei-Faktor-Authentifizierung wurde abgebrochen."
-msgstr "The setup of the two-factor authentication has been cancelled."
-
-#: ../app/controllers/tfa.php:97
-msgid "Bestätigen Sie das Aufheben der Methode"
-msgstr "Confirm the cancellation of the method"
-
-#: ../app/controllers/tfa.php:107
-msgid "Die Zwei-Faktor-Authentifizierung wurde deaktiviert."
-msgstr "Two-factor authentication has been activated."
-
-#: ../app/controllers/settings/statusgruppen.php:34
-#: ../app/controllers/settings/statusgruppen.php:36
-#: ../app/views/my_institutes/index.php:101
-msgid "Einrichtungsdaten bearbeiten"
-msgstr "Edit institute details"
-
-#: ../app/controllers/settings/statusgruppen.php:208
-msgid "Die Person ist bereits in der Gruppe eingetragen."
-msgstr "This person is already assigned to this group."
-
-#: ../app/controllers/settings/statusgruppen.php:210
-msgid "Fehler beim Eintragen in die Gruppe!"
-msgstr "Error while adding to the group!"
-
-#: ../app/controllers/settings/statusgruppen.php:231
-msgid "Die Person wurde in die ausgewählte Gruppe eingetragen!"
-msgstr "The person has been added to the selected group!"
-
-#: ../app/controllers/settings/statusgruppen.php:250
-msgid "Die Person wurde aus der ausgewählten Gruppe gelöscht!"
-msgstr "The user has been removed from the selected group!"
-
-#: ../app/controllers/settings/statusgruppen.php:300
-msgid "Reihenfolge wurde geändert"
-msgstr "Order has been changed"
-
-#: ../app/controllers/settings/statusgruppen.php:337
-msgid "Der Status wurde geändert!"
-msgstr "Status changed!"
-
-#: ../app/controllers/settings/statusgruppen.php:356
-#: ../app/controllers/settings/statusgruppen.php:359
-#: ../app/controllers/settings/statusgruppen.php:391
-#, php-format
-msgid "Ihre Daten an der Einrichtung %s wurden geändert."
-msgstr "Your details in institute %s have been changed."
-
-#: ../app/controllers/settings/statusgruppen.php:395
-#: ../app/controllers/settings/details.php:150
-#, php-format
-msgid ""
-"Fehlerhafter Eintrag im Feld <em>%s</em>: %s (Eintrag wurde nicht "
-"gespeichert)"
-msgstr "Invalid entry in field <em>%s</em>: %s (entry was not saved)"
-
-#: ../app/controllers/settings/statusgruppen.php:404
-msgid "Änderung erfolgreich"
-msgstr "Modification successful"
-
-#: ../app/controllers/settings/statusgruppen.php:407
-msgid "Bei der Verarbeitung sind allerdings folgende Fehler aufgetreten"
-msgstr "During processing the following errors occurred"
-
-#: ../app/controllers/settings/statusgruppen.php:410
-#: ../app/controllers/admin/semester.php:91
-msgid ""
-"Fehler bei der Speicherung Ihrer Daten. Bitte überprüfen Sie Ihre Angaben."
-msgstr "Error while saving your data. Please check your input."
-
-#: ../app/controllers/settings/statusgruppen.php:422
-msgid "Wollen Sie die Zuordnung zu der Funktion wirklich löschen?"
-msgstr "Are you sure to delete the function allocation?"
-
-#: ../app/controllers/settings/messaging.php:25
-#: ../app/controllers/settings/messaging.php:27
-msgid "Einstellungen des Nachrichtensystems anpassen"
-msgstr "Customise message system settings"
-
-#: ../app/controllers/settings/messaging.php:63
-msgid "Ihre Einstellungen wurden erfolgreich gespeichert."
-msgstr "Your settings have been saved successfully."
-
-#: ../app/controllers/settings/messaging.php:92
-msgid ""
-"Durch das Zurücksetzen werden die persönliche Messaging-Einstellungen auf "
-"die Startwerte zurückgesetzt und die persönlichen Nachrichten-Ordner "
-"gelöscht. \n"
-"\n"
-"Nachrichten werden nicht entfernt."
-msgstr ""
-"Reset restores default values for the messaging settings and removes "
-"personal message folders. No messages will be deleted."
-
-#: ../app/controllers/settings/messaging.php:101
-msgid "Wollen Sie wirklich die eingestellte Weiterleitung entfernen?"
-msgstr "Are you sure to delete the forwarding settings?"
-
-#: ../app/controllers/settings/messaging.php:121
-msgid "Ihre Einstellungen wurden erfolgreich zurückgesetzt."
-msgstr "Settings have been reset."
-
-#: ../app/controllers/settings/messaging.php:127
-msgid "Empfänger und Weiterleitung wurden erfolgreich gelöscht"
-msgstr "Recipient and forwarded message have been deleted successfully"
-
-#: ../app/controllers/settings/categories.php:33
-#: ../app/controllers/settings/categories.php:34
-msgid "Eigene Kategorien bearbeiten"
-msgstr "Edit personal categories"
-
-#: ../app/controllers/settings/categories.php:70
-#: ../app/views/admin/sem_classes/overview.php:45
-msgid "Neue Kategorie anlegen"
-msgstr "Create new category"
-
-#: ../app/controllers/settings/categories.php:86
-msgid "neue Kategorie"
-msgstr "new category"
-
-#: ../app/controllers/settings/categories.php:87
-msgid "Inhalt der Kategorie"
-msgstr "Category content"
-
-#: ../app/controllers/settings/categories.php:91
-msgid "Neue Kategorie angelegt."
-msgstr "Category has been created."
-
-#: ../app/controllers/settings/categories.php:94
-msgid "Anlegen der Kategorie fehlgeschlagen."
-msgstr "Category could not be created."
-
-#: ../app/controllers/settings/categories.php:125
-#, php-format
-msgid "Kategorie \"%s\" gelöscht!"
-msgstr "Category \"%s\" has been deleted!"
-
-#: ../app/controllers/settings/categories.php:128
-#, php-format
-msgid "Kategorie \"%s\" konnte nicht gelöscht werden!"
-msgstr "Category \"%s\" could not be deleted!"
-
-#: ../app/controllers/settings/categories.php:145
-msgid "Kategorien ohne Namen können nicht gespeichert werden!"
-msgstr "Categories without a valid name cannot be saved!"
-
-#: ../app/controllers/settings/categories.php:158
-msgid "Kategorien geändert!"
-msgstr "Categories have been changed!"
-
-#: ../app/controllers/settings/categories.php:179
-msgid "Kategorien wurden neu geordnet"
-msgstr "Categories reordered"
-
-#: ../app/controllers/settings/categories.php:181
-msgid "Kategorien konnten nicht neu geordnet werden."
-msgstr "Categories could not be reordered."
-
-#: ../app/controllers/settings/categories.php:192
-#, php-format
-msgid "Möchten Sie wirklich die Kategorie \"%s\" löschen?"
-msgstr "Are you sure you want to delete category \"%s\"?"
-
-#: ../app/controllers/settings/privacy.php:109
-#: ../app/controllers/settings/privacy.php:196
-msgid "Ihre Sichtbarkeitseinstellungen wurden gespeichert."
-msgstr "Changed visibility settings saved."
-
-#: ../app/controllers/settings/privacy.php:198
-msgid "Ihre Sichtbarkeitseinstellungen wurden nicht gespeichert!"
-msgstr "Your visibility settings have not been saved!"
-
-#: ../app/controllers/settings/privacy.php:219
-msgid "Die Sichtbarkeit der Profilelemente wurde gespeichert."
-msgstr "Visibility of profile elements saved."
-
-#: ../app/controllers/settings/privacy.php:222
-msgid ""
-"Die Sichtbarkeitseinstellungen der Profilelemente wurden nicht gespeichert!"
-msgstr "The visibility settings of profile elements have not been saved!"
-
-#: ../app/controllers/settings/notification.php:36
-msgid ""
-"Die Benachrichtigungsfunktion wurde in den Systemeinstellungen nicht "
-"freigeschaltet."
-msgstr "Notification feature disabled in system settings."
-
-#: ../app/controllers/settings/notification.php:45
-#: ../app/controllers/settings/notification.php:47
-msgid "Benachrichtigung über neue Inhalte anpassen"
-msgstr "Customise new content notification"
-
-#: ../app/controllers/settings/notification.php:88
-#, php-format
-msgid ""
-"Sie haben zur Zeit keine Veranstaltungen belegt. Bitte nutzen Sie "
-"%s<b>Veranstaltung suchen / hinzufügen</b>%s um sch für Veranstaltungen "
-"anzumdelden."
-msgstr ""
-"You are not enroled into any course. Please use %s<b>Search / add courses</b>"
-"%s to enrol yourself into courses."
-
-#: ../app/controllers/settings/studies.php:37
-#: ../app/views/studiengaenge/studiengaenge/studiengaenge.php:53
-#: ../app/views/studiengaenge/studiengaenge/studiengaenge.php:54
-msgid "Studiengang bearbeiten"
-msgstr "Edit course of study"
-
-#: ../app/controllers/settings/studies.php:39
-msgid "Fächer und Abschlüsse auswählen"
-msgstr "Please select subjects and degrees"
-
-#: ../app/controllers/settings/studies.php:40
-msgid "Zu Einrichtungen zuordnen"
-msgstr "Allocate to institutes"
-
-#: ../app/controllers/settings/studies.php:115
-msgid "Dieser Studiengang ist bereits eingetragen"
-msgstr "This course of study has already been entered"
-
-#: ../app/controllers/settings/studies.php:150
-msgid "Die Zuordnung zu Studiengängen wurde geändert."
-msgstr "Study programme allocation changed."
-
-#: ../app/controllers/settings/studies.php:153
-msgid "Die Zuordnung zu Studiengängen wurde geändert!\n"
-msgstr "Study programme allocation changed!\n"
-
-#: ../app/controllers/settings/studies.php:206
-msgid "Die Zuordnung zu Einrichtungen wurde geändert."
-msgstr "The institute assignment has been changed."
-
-#: ../app/controllers/settings/studies.php:209
-msgid "Die Zuordnung zu Einrichtungen wurde geändert!\n"
-msgstr "Institute allocation changed!\n"
-
-#: ../app/controllers/settings/deputies.php:49
-#: ../app/controllers/settings/deputies.php:115
-#, php-format
-msgid "%s ist bereits als Vertretung eingetragen."
-msgstr "%s has already been added as substitute."
-
-#: ../app/controllers/settings/deputies.php:53
-#: ../app/controllers/settings/deputies.php:119
-msgid "Sie können sich nicht als Ihre eigene Vertretung eintragen!"
-msgstr "You may not add yourself as your own substitute!"
-
-#: ../app/controllers/settings/deputies.php:56
-#: ../app/controllers/settings/deputies.php:124
-#, php-format
-msgid "%s wurde als Vertretung eingetragen."
-msgstr "%s added as substitute."
-
-#: ../app/controllers/settings/deputies.php:60
-#: ../app/controllers/settings/deputies.php:121
-msgid "Fehler beim Eintragen der Vertretung!"
-msgstr "Error while adding substitute!"
-
-#: ../app/controllers/settings/deputies.php:79
-msgid "Vor-, Nach- oder Benutzername"
-msgstr "First name, last name or username"
-
-#: ../app/controllers/settings/deputies.php:89
-#: ../app/controllers/settings/deputies.php:92
-msgid "Neue Standardvertretung festlegen"
-msgstr "Add new substitute"
-
-#: ../app/controllers/settings/deputies.php:132
-msgid "Die gewünschte Operation konnte nicht ausgeführt werden."
-msgstr "The selected operation could not be executed."
-
-#: ../app/controllers/settings/deputies.php:138
-msgid "Die gewünschten Personen wurden als Ihre Vertretung eingetragen!"
-msgstr "Selected Persons added as substitutes!"
-
-#: ../app/controllers/settings/deputies.php:154
-msgid "Die Vertretung wurde entfernt."
-msgstr "Substitute removed."
-
-#: ../app/controllers/settings/deputies.php:183
-msgid "Fehler beim Speichern der Einstellungen."
-msgstr "Error while saving settings."
-
-#: ../app/controllers/settings/userdomains.php:32
-msgid "Nutzerdomänen bearbeiten"
-msgstr "Edit user domains"
-
-#: ../app/controllers/settings/userdomains.php:34
-msgid "Zugeordnete Nutzerdomänen"
-msgstr "Allocated user domains"
-
-#: ../app/controllers/settings/userdomains.php:35
-msgid "Nutzerdomäne auswählen"
-msgstr "Select user domain"
-
-#: ../app/controllers/settings/userdomains.php:78
-msgid "Die Zuordnung zu Nutzerdomänen wurde geändert."
-msgstr "The user domain assignment has been changed."
-
-#: ../app/controllers/settings/userdomains.php:81
-msgid "Die Zuordnung zu Nutzerdomänen wurde geändert!\n"
-msgstr "User domain allocation changed!\n"
-
-#: ../app/controllers/settings/calendar.php:31
-msgid "Der Kalender ist nicht aktiviert."
-msgstr "The calendar has not been activated."
-
-#: ../app/controllers/settings/calendar.php:37
-#: ../app/controllers/settings/calendar.php:39
-msgid "Einstellungen des Terminkalenders anpassen"
-msgstr "Customise calender settings"
-
-#: ../app/controllers/settings/calendar.php:74
-msgid "Ihre Einstellungen wurden gespeichert"
-msgstr "Your settings have been saved"
-
-#: ../app/controllers/settings/password.php:67
-#: ../app/controllers/settings/account.php:137
-msgid "Das aktuelle Passwort wurde nicht korrekt eingegeben."
-msgstr "The current password is incorrect."
-
-#: ../app/controllers/settings/password.php:80
-msgid "Bitte überprüfen Sie Ihre Eingabe:"
-msgstr "Please modify your input:"
-
-#: ../app/controllers/settings/password.php:84
-msgid "Das Passwort wurde erfolgreich geändert."
-msgstr "Password has been changed."
-
-#: ../app/controllers/settings/details.php:35
-msgid "Lebenslauf, Arbeitsschwerpunkte und Publikationen bearbeiten"
-msgstr "Edit CV, research interests and publications"
-
-#: ../app/controllers/settings/details.php:36
-#: ../app/views/settings/details.php:11
-msgid "Lebenslauf bearbeiten"
-msgstr "Edit CV"
-
-#: ../app/controllers/settings/details.php:38
-msgid "Private Daten bearbeiten"
-msgstr "Edit personal details"
-
-#: ../app/controllers/settings/details.php:115
-#: ../app/views/settings/details.php:71
-msgid "Beschreibung auf dem OER Campus"
-msgstr ""
-
-#: ../app/controllers/settings/details.php:157
-msgid "Bitte überprüfen Sie Ihre Eingaben."
-msgstr "Please check your input."
-
-#: ../app/controllers/settings/details.php:159
-#: ../app/controllers/settings/details.php:162
-msgid "Daten im Lebenslauf u.a. wurden geändert."
-msgstr "Data in CV etc. have been changed."
-
-#: ../app/controllers/settings/settings.php:46
-msgid "Sie dürfen dieses Profil nicht bearbeiten"
-msgstr "You must not edit this profile"
-
-#: ../app/controllers/settings/settings.php:48
-msgid ""
-"Wahrscheinlich ist Ihre Session abgelaufen. Bitte nutzen Sie in diesem Fall "
-"den untenstehenden Link, um zurück zur Anmeldung zu gelangen.\n"
-"\n"
-"Eine andere Ursache kann der Versuch des Zugriffs auf Userdaten, die Sie "
-"nicht bearbeiten dürfen, sein. Nutzen Sie den untenstehenden Link, um zurück "
-"auf die Startseite zu gelangen."
-msgstr ""
-"Probably your session has expired. In this case, please use the link below "
-"to return to the login page.\n"
-"\n"
-"Another possible cause is an attempt to access user data you are not allowed "
-"to edit. Use the link below to return to the start page."
-
-#: ../app/controllers/settings/settings.php:208
-msgid ""
-"Ihre persönliche Seite wurde von Admin verändert.\n"
-" Folgende Veränderungen wurden vorgenommen:\n"
-" \n"
-msgstr ""
-"Your profile page has been modified by an admin. These changes were made:\n"
-
-#: ../app/controllers/settings/settings.php:211
-msgid "Systemnachricht: Profil verändert"
-msgstr "System message: Profile modified"
-
-#: ../app/controllers/settings/account.php:32
-#: ../app/controllers/settings/account.php:34
-#: ../app/views/settings/account/index.php:26
-msgid "Persönliche Angaben bearbeiten"
-msgstr "Edit personal details"
-
-#: ../app/controllers/settings/account.php:64
-msgid "Ihr Geschlecht wurde geändert"
-msgstr "Your gender information has been changed"
-
-#: ../app/controllers/settings/account.php:70
-msgid "Ihr Titel wurde geändert"
-msgstr "Your title has been changed"
-
-#: ../app/controllers/settings/account.php:76
-msgid "Ihr nachgestellter Titel wurde geändert"
-msgstr "Your postpositive title has been changed"
-
-#: ../app/controllers/settings/account.php:82
-msgid "Ihre persönlichen Daten wurden geändert.\n"
-msgstr "Your personal details have been changed.\n"
-
-#: ../app/controllers/settings/account.php:96
-msgid "Ihr Vorname wurde geändert!"
-msgstr "Your first name has been changed!"
-
-#: ../app/controllers/settings/account.php:108
-msgid "Ihr Nachname wurde geändert!"
-msgstr "Your last name has been changed!"
-
-#: ../app/controllers/settings/account.php:116
-msgid "Der gewählte Benutzername ist nicht lang genug!"
-msgstr "The selected user name isn't long enough!"
-
-#: ../app/controllers/settings/account.php:121
-msgid "Ihr Benutzername wurde geändert!"
-msgstr "Your username has been changed!"
-
-#: ../app/controllers/settings/account.php:139 ../app/controllers/start.php:318
-msgid ""
-"Die Wiederholung der E-Mail-Adresse stimmt nicht mit Ihrer Eingabe überein."
-msgstr "E-mail and re-type e-mail don't match."
-
-#: ../app/controllers/settings/account.php:150
-msgid "Bitte überprüfen Sie Ihre Eingaben:"
-msgstr "Please check your input:"
-
-#: ../app/controllers/settings/account.php:152
-msgid "Ihre persönlichen Angaben wurden geändert."
-msgstr "Your personal details have been changed."
-
-#: ../app/controllers/settings/account.php:154 ../app/views/wiki/create.php:4
-msgid "Bitte beachten Sie:"
-msgstr "Please note:"
-
-#: ../app/controllers/settings/general.php:31
-#: ../app/controllers/settings/general.php:33
-msgid "Allgemeine Einstellungen anpassen"
-msgstr "Customise general settings"
-
-#: ../app/controllers/my_courses.php:107
-#, php-format
-msgid ""
-"Seit Ihrem letzten Seitenaufruf (%s) sind allerdings neue Inhalte "
-"hinzugekommen."
-msgstr ""
-"Yet since you last visited this page (%s), new content has been created."
-
-#: ../app/controllers/my_courses.php:112
-#: ../app/controllers/my_institutes.php:62
-msgid "Alles als gelesen markiert!"
-msgstr "Mark all as read!"
-
-#: ../app/controllers/my_courses.php:161
-msgid "keine Zuordnung"
-msgstr "no allocation"
-
-#: ../app/controllers/my_courses.php:271
-msgid "Farbgruppierungen"
-msgstr "Colour grouping"
-
-#: ../app/controllers/my_courses.php:473
-msgid "Die Anmeldung ist verbindlich. Bitte wenden Sie sich an die Lehrenden."
-msgstr "Participation is binding. Please contact the lecturers."
-
-#: ../app/controllers/my_courses.php:488 ../app/controllers/my_courses.php:504
-#, php-format
-msgid "Sie können sich nicht von der Veranstaltung <b>%s</b> abmelden."
-msgstr "You cannot sign off course <b>%s</b>."
-
-#: ../app/controllers/my_courses.php:518
-#, php-format
-msgid ""
-"Die Veranstaltung <b>%s</b> ist als <b>bindend</b> angelegt.\n"
-"                    Wenn Sie sich abmelden wollen, müssen Sie sich an die "
-"Lehrende der Veranstaltung wenden."
-msgstr ""
-"Enrolment to the course <b>%s</b> is <b>binding</b>. To sign off you must "
-"contact the lecturer."
-
-#: ../app/controllers/my_courses.php:534
-#, php-format
-msgid ""
-"Wollen Sie sich von der teilnahmebeschränkten Veranstaltung \"%s\" wirklich "
-"abmelden? Sie verlieren damit die Berechtigung für die Veranstaltung und "
-"müssen sich ggf. neu anmelden!"
-msgstr ""
-"Are you sure you want to unsubscribe from the restricted course \"%s\"? You "
-"will loose the permissions for the course and may need to enrol yourself "
-"again!"
-
-#: ../app/controllers/my_courses.php:539
-#, php-format
-msgid ""
-"Wollen Sie sich von der teilnahmebeschränkten Veranstaltung \"%s\" wirklich "
-"abmelden? Der Anmeldezeitraum ist abgelaufen und Sie können sich nicht "
-"wieder anmelden!"
-msgstr ""
-
-#: ../app/controllers/my_courses.php:543
-#, php-format
-msgid "Wollen Sie sich von der Veranstaltung \"%s\" wirklich abmelden?"
-msgstr "Sign off from course \"%s\"?"
-
-#: ../app/controllers/my_courses.php:549
-#, php-format
-msgid ""
-"Wollen Sie sich von der Anmeldeliste der Veranstaltung \"%s\" wirklich "
-"abmelden?"
-msgstr "Really Sign off the waiting list from \"%s\"?"
-
-#: ../app/controllers/my_courses.php:554
-#, php-format
-msgid ""
-"Wollen Sie sich von der Warteliste der Veranstaltung \"%s\" wirklich "
-"abmelden? Sie verlieren damit die bereits erreichte Position und müssen sich "
-"ggf. neu anmelden!"
-msgstr ""
-"Are you sure to sign off from the waiting list for course \"%s\"? You will "
-"lose the position you have reached and possible have to re-register!"
-
-#: ../app/controllers/my_courses.php:575
-msgid ""
-"In der ausgewählten Veranstaltung wurde die gesuchten Personen nicht "
-"gefunden und konnte daher nicht ausgetragen werden."
-msgstr "Person not found."
-
-#: ../app/controllers/my_courses.php:614
-#, php-format
-msgid "Erfolgreich von Veranstaltung <b>%s</b> abgemeldet."
-msgstr "Signed off from course <b>%s</b>."
-
-#: ../app/controllers/my_courses.php:635
-#, php-format
-msgid ""
-"Der Eintrag in der Anmelde- bzw. Warteliste der Veranstaltung <b>%s</b> "
-"wurde aufgehoben. Wenn Sie an der Veranstaltung teilnehmen wollen, müssen "
-"Sie sich erneut bewerben."
-msgstr ""
-"The inscription into the admission list or waitlist resp. of the course <b>"
-"%s</b> has been revoked. If you would like to participate in the course, you "
-"have to apply again."
-
-#: ../app/controllers/my_courses.php:654
-msgid "Meine archivierten Veranstaltungen"
-msgstr "My archived courses"
-
-#: ../app/controllers/my_courses.php:662
-msgid "Suche im Archiv"
-msgstr "Search in archive"
-
-#: ../app/controllers/my_courses.php:728
-msgid ""
-"Das gewünschte Semester bzw. die gewünschte Semester-Filteroption wurde "
-"ausgewählt!"
-msgstr ""
-
-#: ../app/controllers/my_courses.php:775
-#, php-format
-msgid "Sie wurden als Standardvertretung von %s entfernt."
-msgstr "You have been removed as substitute for %s."
-
-#: ../app/controllers/my_courses.php:780
-#, php-format
-msgid "Sie konnten nicht als Standardvertretung von %s entfernt werden."
-msgstr "You cannot be removed as substitute for %s."
-
-#: ../app/controllers/my_courses.php:821
-msgid "Farbgruppen"
-msgstr "Groups by colour"
-
-#: ../app/controllers/my_courses.php:848
-#: ../app/views/calendar/single/_semester_filter.php:6
-msgid "Aktuelles Semester"
-msgstr "Current semester"
-
-#: ../app/controllers/my_courses.php:849
-#: ../app/views/calendar/single/_semester_filter.php:7
-msgid "Aktuelles und nächstes Semester"
-msgstr "Current and next semester"
-
-#: ../app/controllers/my_courses.php:850
-#: ../app/views/calendar/single/_semester_filter.php:8
-msgid "Aktuelles und letztes Semester"
-msgstr "Current and last semester"
-
-#: ../app/controllers/my_courses.php:851
-#: ../app/views/calendar/single/_semester_filter.php:9
-msgid "Letztes, aktuelles, nächstes Semester"
-msgstr "Last, current and next semester"
-
-#: ../app/controllers/my_courses.php:904
-#: ../app/views/my_institutes/index.php:97
-msgid "Alles als gelesen markieren"
-msgstr "Mark all as read"
-
-#: ../app/controllers/my_courses.php:910
-#: ../app/controllers/my_studygroups.php:40
-msgid "Farbgruppierung ändern"
-msgstr "Change colour grouping"
-
-#: ../app/controllers/my_courses.php:917
-msgid "Benachrichtigungen anpassen"
-msgstr "Adjust notifications"
-
-#: ../app/controllers/my_courses.php:950
-msgid "Tabellarische Ansicht"
-msgstr ""
-
-#: ../app/controllers/my_courses.php:954
-msgid "Kachelansicht"
-msgstr ""
-
-#: ../app/controllers/my_courses.php:961
-msgid "Nur neue Inhalte anzeigen"
-msgstr ""
-
-#: ../app/controllers/my_courses.php:969
-msgid "Veranstaltungsübersicht exportieren"
-msgstr "Export course overview"
-
-#: ../app/controllers/my_courses.php:974
-msgid "Veranstaltungsübersicht ohne Module exportieren"
-msgstr "Export course overview without modules"
-
-#: ../app/controllers/profile.php:30
-msgid "Benutzerprofil"
-msgstr "User profile"
-
-#: ../app/controllers/profile.php:43
-msgid "Profil von"
-msgstr "Profile of"
-
-#: ../app/controllers/profile.php:271 ../app/controllers/profile.php:273
-msgid "Dieses Konto bearbeiten"
-msgstr "Edit this account"
-
-#: ../app/controllers/profile.php:279 ../app/controllers/profile.php:281
-#: ../app/controllers/profile.php:288 ../app/views/online/user-row.php:46
-msgid "Zu den Kontakten hinzufügen"
-msgstr "Add to contacts"
-
-#: ../app/controllers/profile.php:282
-msgid "Wollen Sie die Person wirklich als Kontakt hinzufügen?"
-msgstr "Do you really want to add the person as a contact?"
-
-#: ../app/controllers/profile.php:286
-msgid "Von den Kontakten entfernen"
-msgstr "Remove from contacts"
-
-#: ../app/controllers/profile.php:289
-msgid "Wollen Sie die Person wirklich von den Kontakten entfernen?"
-msgstr "Do you really want to remove the person from the contacts?"
-
-#: ../app/controllers/profile.php:294
-#: ../app/views/consultation/admin/ungrouped.php:90
-#: ../app/views/consultation/admin/ungrouped.php:114
-#: ../app/views/consultation/admin/ungrouped.php:236
-#: ../app/views/consultation/admin/ungrouped.php:260
-#: ../app/views/consultation/admin/index.php:69
-#: ../app/views/consultation/admin/index.php:152
-#: ../app/views/consultation/admin/index.php:177
-#: ../app/views/course/studygroup/_members_gallery.php:18
-#: ../app/views/course/studygroup/_members_list.php:54
-#: ../app/views/course/studygroup/_members_list.php:67
-#: ../app/views/course/statusgroups/index.php:35
-msgid "Nachricht schreiben"
-msgstr "Create message"
-
-#: ../app/controllers/profile.php:296 ../app/views/admin/user/_results.php:147
-msgid "Nachricht an Nutzer verschicken"
-msgstr "Send message to user"
-
-#: ../app/controllers/profile.php:310 ../app/controllers/profile.php:312
-#: ../app/views/contact/index.php:81
-msgid "vCard herunterladen"
-msgstr "Download vCard"
-
-#: ../app/controllers/profile.php:353
-msgid "Datenschutzauskunft anfordern"
-msgstr "Request data protection information"
-
-#: ../app/controllers/profile.php:365
-msgid "(Dieser Nutzer ist unsichtbar.)"
-msgstr "(This user is invisible.)"
-
-#: ../app/controllers/profile.php:367
-msgid "(Sie sind unsichtbar. Deshalb können nur Sie diese Seite sehen.)"
-msgstr "(You are invisible. Thus only you can view this page.)"
-
-#: ../app/controllers/profile.php:376
-msgid "BENUTZER IST GESPERRT!"
-msgstr "USER IS LOCKED!"
-
-#: ../app/controllers/profile.php:381 ../app/views/admin/user/edit.php:14
-msgid "vorläufiger Benutzer"
-msgstr "preliminary user"
-
-#: ../app/controllers/profile.php:421
-msgid "Der Nutzer wurde zu Ihren Kontakten hinzugefügt."
-msgstr "The user was added to your contacts."
-
-#: ../app/controllers/profile.php:439 ../app/controllers/contact.php:152
-msgid "Der Kontakt wurde entfernt."
-msgstr "Contact was removed."
-
-#: ../app/controllers/profile.php:501
-#, php-format
-msgid "Profil von %s"
-msgstr ""
-
-#: ../app/controllers/files_dashboard/sidebar.php:24
-#: ../app/views/materialien/files/add_dokument.php:40
-#: ../app/views/materialien/files/add_dokument.php:41
-msgid "Datei hinzufügen"
-msgstr "Add file"
-
-#: ../app/controllers/my_institutes.php:46
-#, php-format
-msgid "Die Zuordnung zur Einrichtung %s wurde aufgehoben."
-msgstr "Allocation to institute %s removed."
-
-#: ../app/controllers/contents/courseware.php:156
-#, fuzzy
-msgid "Neues Projekt"
-msgstr "New object"
-
-#: ../app/controllers/contents/courseware.php:241
-#, fuzzy
-msgid "Neues Projekt anlegen"
-msgstr "Create new learning object"
-
-#: ../app/controllers/siteinfo.php:63 ../app/controllers/siteinfo.php:72
-msgid "unbenannt"
-msgstr "unknown"
-
-#: ../app/controllers/siteinfo.php:93
-msgid "Seiten-Aktionen"
-msgstr "Page actions"
-
-#: ../app/controllers/siteinfo.php:102
-msgid "Seite löschen"
-msgstr "Delete page"
-
-#: ../app/controllers/siteinfo.php:111
-msgid "Rubrik-Aktionen"
-msgstr "Category actions"
-
-#: ../app/controllers/siteinfo.php:113 ../app/views/siteinfo/new.php:15
-msgid "Neue Rubrik anlegen"
-msgstr "Create new category"
-
-#: ../app/controllers/siteinfo.php:116 ../app/views/siteinfo/edit.php:11
-msgid "Rubrik bearbeiten"
-msgstr "Edit category"
-
-#: ../app/controllers/siteinfo.php:118
-msgid "Rubrik löschen"
-msgstr "Delete category"
-
-#: ../app/controllers/siteinfo.php:137
-msgid "Neue Rubrik"
-msgstr "New category"
-
-#: ../app/controllers/siteinfo.php:142
-msgid "Neue Seite"
-msgstr "New page"
-
-#: ../app/controllers/admin/api.php:19
-msgid "API Verwaltung"
-msgstr "API management"
-
-#: ../app/controllers/admin/api.php:29 ../app/views/admin/api/index.php:4
-msgid "Registrierte Applikationen"
-msgstr "Registered applications"
-
-#: ../app/controllers/admin/api.php:32
-msgid "Globale Zugriffseinstellungen"
-msgstr "Global access settings"
-
-#: ../app/controllers/admin/api.php:41 ../app/views/admin/api/edit.php:12
-msgid "Neue Applikation registrieren"
-msgstr "Register new application"
-
-#: ../app/controllers/admin/api.php:80
-msgid ""
-"Die Schlüssel in den Details dieser Meldung sollten vertraulich behandelt "
-"werden!"
-msgstr ""
-"The key in the details of this notification must be considered confidential!"
-
-#: ../app/controllers/admin/api.php:109
-msgid "Folgende Fehler sind aufgetreten:"
-msgstr "The following errors occurred:"
-
-#: ../app/controllers/admin/api.php:117
-msgid "Die Applikation wurde erfolgreich gespeichert."
-msgstr "The application has been saved successfully."
-
-#: ../app/controllers/admin/api.php:120
-msgid ""
-"Die Applikation wurde erfolgreich erstellt, die Schlüssel finden Sie in den "
-"Details dieser Meldung."
-msgstr "App created, key is included in this notification."
-
-#: ../app/controllers/admin/api.php:142
-msgid "Die Applikation wurde erfolgreich aktiviert."
-msgstr "The application has been activated successfully."
-
-#: ../app/controllers/admin/api.php:143
-msgid "Die Applikation wurde erfolgreich deaktiviert."
-msgstr "The application has been deactivated successfully."
-
-#: ../app/controllers/admin/api.php:160
-msgid "Die Applikation wurde erfolgreich gelöscht."
-msgstr "The application has been deleted successfully."
-
-#: ../app/controllers/admin/api.php:182
-msgid "Die Zugriffsberechtigungen wurden erfolgreich gespeichert"
-msgstr "Access permissions have been saved"
-
-#: ../app/controllers/admin/api.php:187
-msgid "Zugriffsberechtigungen"
-msgstr "Access permissions"
-
-#: ../app/controllers/admin/api.php:187
-msgid "Globale Zugriffsberechtigungen"
-msgstr "Global access settings"
-
-#: ../app/controllers/admin/loginstyle.php:28
-#: ../app/views/admin/login_style/index.php:4
-msgid "Hintergrundbilder für den Startbildschirm"
-msgstr "Background images for the start screen"
-
-#: ../app/controllers/admin/loginstyle.php:84
-#, php-format
-msgid "Ein Bild wurde hochgeladen."
-msgid_plural "%u Bilder wurden hochgeladen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/loginstyle.php:93
-#, php-format
-msgid "Ein Bild konnte nicht hochgeladen werden."
-msgid_plural "%u Bilder konnten nicht hochgeladen werden."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/loginstyle.php:109
-msgid ""
-"Dieses Bild wird vom System mitgeliefert und kann daher nicht gelöscht "
-"werden."
-msgstr "This image is provided by the system and therefore cannot be deleted."
-
-#: ../app/controllers/admin/loginstyle.php:113
-msgid "Das Bild konnte nicht gelöscht werden."
-msgstr "The image could not be deleted."
-
-#: ../app/controllers/admin/loginstyle.php:130
-msgid "Der Aktivierungsstatus wurde gespeichert."
-msgstr "The activation state has been saved."
-
-#: ../app/controllers/admin/loginstyle.php:132
-msgid "Der Aktivierungsstatus konnte nicht gespeichert werden."
-msgstr "The activation state could not be saved."
-
-#: ../app/controllers/admin/loginstyle.php:146
-msgid "Bild hinzufügen"
-msgstr "Add picture"
-
-#: ../app/controllers/admin/semester.php:30
-msgid "Verwaltung von Semestern"
-msgstr "Manage semesters"
-
-#: ../app/controllers/admin/semester.php:71
-msgid "Semester anlegen"
-msgstr "Set up new semester"
-
-#: ../app/controllers/admin/semester.php:71
-msgid "Semester bearbeiten"
-msgstr "Edit semester"
-
-#: ../app/controllers/admin/semester.php:99
-#: ../app/controllers/admin/holidays.php:93
-msgid "Ihre eingegebenen Daten sind ungültig."
-msgstr "The data you have entered are invalid."
-
-#: ../app/controllers/admin/semester.php:102
-msgid "Das Semester wurde erfolgreich gespeichert."
-msgstr "The semester has been saved successfully."
-
-#: ../app/controllers/admin/semester.php:130
-#, php-format
-msgid ""
-"Das Semester \"%s\" hat noch Veranstaltungen und kann daher nicht gelöscht "
-"werden."
-msgstr ""
-"The semester \"%s\" still contains courses and there cannot be deleted."
-
-#: ../app/controllers/admin/semester.php:132
-#, php-format
-msgid "Fehler beim Löschen des Semesters \"%s\"."
-msgstr "An error occurred while deleting the semester \"%s\"."
-
-#: ../app/controllers/admin/semester.php:141
-msgid "Beim Löschen der Semester sind folgende Fehler aufgetreten."
-msgstr "The following errors occurred while deleting the semesters."
-
-#: ../app/controllers/admin/semester.php:145
-#, php-format
-msgid "%u Semester wurde(n) erfolgreich gelöscht."
-msgstr "%u semester(s) have been deleted."
-
-#: ../app/controllers/admin/semester.php:169
-msgid "Sie müssen den Namen des Semesters angeben."
-msgstr "The name of the semester is mandatory."
-
-#: ../app/controllers/admin/semester.php:172
-msgid "Sie müssen den Beginn des Semesters angeben."
-msgstr "The beginning of the semester is mandatory."
-
-#: ../app/controllers/admin/semester.php:175
-msgid "Sie müssen das Ende des Semesters angeben."
-msgstr "The end of the semester is mandatory."
-
-#: ../app/controllers/admin/semester.php:178
-msgid "Sie müssen den Beginn der Vorlesungzeit angeben."
-msgstr "The beginning of the teaching period is mandatory."
-
-#: ../app/controllers/admin/semester.php:181
-msgid "Sie müssen das Ende der Vorlesungzeit angeben."
-msgstr "The end of the teaching period if mandatory."
-
-#: ../app/controllers/admin/semester.php:187
-msgid "Der Beginn des Semester muss vor dem Beginn der Vorlesungszeit liegen."
-msgstr "The semesters has to begin before the teaching period begins."
-
-#: ../app/controllers/admin/semester.php:190
-msgid "Der Beginn der Vorlesungszeit muss vor ihrem Ende liegen."
-msgstr "The teaching period cannot end before it begins."
-
-#: ../app/controllers/admin/semester.php:193
-msgid "Das Ende der Vorlesungszeit muss vor dem Semesterende liegen."
-msgstr "The teaching period must end before the semester ends."
-
-#: ../app/controllers/admin/semester.php:203
-#, php-format
-msgid ""
-"Der angegebene Zeitraum des Semester überschneidet sich mit einem anderen "
-"Semester (%s)"
-msgstr "The dates for the term interfere with an existing term (%s)"
-
-#: ../app/controllers/admin/semester.php:239
-#: ../app/controllers/admin/holidays.php:154
-msgid "Alle Einträge"
-msgstr "All entries"
-
-#: ../app/controllers/admin/semester.php:243
-#: ../app/controllers/admin/holidays.php:157
-msgid "Aktuelle/zukünftige Einträge"
-msgstr "Current/future entries"
-
-#: ../app/controllers/admin/semester.php:247
-#: ../app/controllers/admin/holidays.php:160
-msgid "Vergangene Einträge"
-msgstr "Past entries"
-
-#: ../app/controllers/admin/semester.php:253
-#: ../app/views/admin/semester/index.php:38
-msgid "Neues Semester anlegen"
-msgstr "Create new semester"
-
-#: ../app/controllers/admin/semester.php:266
-msgid "Sperren von Semestern"
-msgstr "Semester locking"
-
-#: ../app/controllers/admin/semester.php:275
-msgid "Es wurde kein Semester zum Sperren übergeben"
-msgstr "No semester has been provided for locking"
-
-#: ../app/controllers/admin/semester.php:302
-#, php-format
-msgid "Fehler beim Sperren des Semesters \"%s\"."
-msgstr "Error while locking the semester \"%s\"."
-
-#: ../app/controllers/admin/semester.php:306
-msgid "Beim Sperren der folgenden Semester sind Fehler aufgetreten:"
-msgstr "Errors occurred while locking the following semesters:"
-
-#: ../app/controllers/admin/semester.php:310
-#, php-format
-msgid "%u Semester wurde(n) erfolgreich gesperrt."
-msgstr "%u semesters have been locked successfully."
-
-#: ../app/controllers/admin/semester.php:327
-#, php-format
-msgid "Es wird folgendes Semester gesperrt: %s."
-msgid_plural "Es werden folgende Semester gesperrt: %s."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/semester.php:331
-#, php-format
-msgid "Es werden %u Veranstaltungen geändert."
-msgstr "%u courses will be modified."
-
-#: ../app/controllers/admin/semester.php:332
-msgid "Unbegrenzt laufende Veranstaltungen werden nicht geändert."
-msgstr "Indefinitely running courses will not be modified."
-
-#: ../app/controllers/admin/semester.php:336
-#, php-format
-msgid "Wollen sie wirklich %u Semester sperren?"
-msgstr "Do you really want to lock %u semesters?"
-
-#: ../app/controllers/admin/semester.php:365
-#, php-format
-msgid "Fehler beim Entsperren des Semesters \"%s\"."
-msgstr "Error while unlocking the semester \"%s\"."
-
-#: ../app/controllers/admin/semester.php:372
-msgid "Beim Entsperren der Semester sind folgende Fehler aufgetreten."
-msgstr "The following errors occurred during the unlocking of the semesters."
-
-#: ../app/controllers/admin/semester.php:376
-#, php-format
-msgid "%u Semester wurde(n) erfolgreich entsperrt."
-msgstr "%u semesters have been successfully unlocked."
-
-#: ../app/controllers/admin/overlapping.php:39
-msgid "Überschneidung von Veranstaltungen"
-msgstr "Overlap of courses"
-
-#: ../app/controllers/admin/overlapping.php:142
-#, php-format
-msgid "1 Konflikt gefunden (1 ausgeblendet)"
-msgid_plural "%s Konflikte gefunden (%s ausgeblendet)."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/overlapping.php:151
-#, php-format
-msgid "1 Konflikt gefunden."
-msgid_plural "%s Konflikte gefunden."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/overlapping.php:158
-msgid "Keine Konflikte gefunden."
-msgstr "No conflicts found."
-
-#: ../app/controllers/admin/overlapping.php:179
-#: ../app/controllers/admin/overlapping.php:195
-msgid "Unbekannte Veranstaltung."
-msgstr "Unknown course."
-
-#: ../app/controllers/admin/overlapping.php:234
-msgid "Unbekannte Studiengangteil-Version."
-msgstr "Unknown component version."
-
-#: ../app/controllers/admin/cache.php:43
-#: ../app/controllers/admin/smileys.php:316
-msgid "Statistiken"
-msgstr "Statistics"
-
-#: ../app/controllers/admin/cache.php:53
-msgid "Cache leeren"
-msgstr ""
-
-#: ../app/controllers/admin/cache.php:56
-msgid "Soll der gesamte Inhalt des Caches wirklich gelöscht werden?"
-msgstr ""
-
-#: ../app/controllers/admin/cache.php:78
-msgid ""
-"Caching ist systemweit ausgeschaltet, daher kann hier nichts konfiguriert "
-"werden."
-msgstr ""
-
-#: ../app/controllers/admin/cache.php:130
-msgid "Die Inhalte des Caches wurden gelöscht."
-msgstr ""
-
-#: ../app/controllers/admin/role.php:64 ../app/controllers/admin/role.php:547
-#: ../app/views/admin/role/add.php:7
-msgid "Neue Rolle anlegen"
-msgstr "Create role"
-
-#: ../app/controllers/admin/role.php:77
-#, php-format
-msgid "Die Rolle \"%s\" wurde angelegt."
-msgstr "Role \"%s\" created."
-
-#: ../app/controllers/admin/role.php:79
-msgid "Sie haben keinen Namen eingegeben."
-msgstr "You have not entered a name."
-
-#: ../app/controllers/admin/role.php:96
-#, php-format
-msgid "Wollen Sie wirklich die Rolle \"%s\" löschen?"
-msgstr "Are you sure to delete role \"%s\"?"
-
-#: ../app/controllers/admin/role.php:117
-msgid "Die Rolle und alle dazugehörigen Zuweisungen wurden gelöscht."
-msgstr "The role including all according assignments have been deleted."
-
-#: ../app/controllers/admin/role.php:160
-msgid "Es wurde kein Suchwort eingegeben."
-msgstr "No search string has been entered."
-
-#: ../app/controllers/admin/role.php:165
-msgid "Es wurde keine Person gefunden."
-msgstr "No user found."
-
-#: ../app/controllers/admin/role.php:210
-msgid "Die Rollenzuweisungen wurden gespeichert."
-msgstr "Role assignments saved."
-
-#: ../app/controllers/admin/role.php:250
-msgid "Die Rechteeinstellungen wurden gespeichert."
-msgstr "The permission settings have been saved."
-
-#: ../app/controllers/admin/role.php:333
-#, php-format
-msgid "Der Rolle wurde eine weitere Person hinzugefügt."
-msgid_plural "Der Rolle wurden %u weitere Personen hinzugefügt."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/role.php:359
-#, php-format
-msgid "Einer Person wurde die Rolle entzogen."
-msgid_plural "%u Personen wurde die Rolle entzogen."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/role.php:374
-#: ../app/views/admin/role/add_plugin.php:11
-msgid "Plugins zur Rolle hinzufügen"
-msgstr "Add plug-ins to role"
-
-#: ../app/controllers/admin/role.php:387
-#, php-format
-msgid "Der Rolle wurde ein weiteres Plugin hinzugefügt."
-msgid_plural "Der Rolle wurden %u weitere Plugins hinzugefügt."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/role.php:423
-#, php-format
-msgid "Einem Plugin wurde die Rolle entzogen."
-msgid_plural "%u Plugins wurde die Rolle entzogen."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/role.php:489
-msgid "Personen zur Rolle hinzufügen"
-msgstr "Add persons to role"
-
-#: ../app/controllers/admin/role.php:501
-msgid "Die Einrichtung wurde zugewiesen."
-msgstr "Institution assigned."
-
-#: ../app/controllers/admin/role.php:508
-msgid "Die Einrichtung wurde entfernt."
-msgstr "Institution cancelled."
-
-#: ../app/controllers/admin/role.php:529
-msgid "Rollen verwalten"
-msgstr "Manage roles"
-
-#: ../app/controllers/admin/role.php:533
-msgid "Personenzuweisungen bearbeiten"
-msgstr "Edit person assignments"
-
-#: ../app/controllers/admin/role.php:537
-msgid "Pluginzuweisungen bearbeiten"
-msgstr "Edit plug-in assignments"
-
-#: ../app/controllers/admin/role.php:541
-#: ../app/views/admin/role/show_role.php:10
-msgid "Rollenzuweisungen anzeigen"
-msgstr "Display role allocations"
-
-#: ../app/controllers/admin/coursewizardsteps.php:36
-msgid "Schritte im Veranstaltungsanlegeassistenten"
-msgstr "Steps in course wizard"
-
-#: ../app/controllers/admin/coursewizardsteps.php:59
-#: ../app/views/tour/admin_details.php:186
-msgid "Schritt hinzufügen"
-msgstr "Add step"
-
-#: ../app/controllers/admin/coursewizardsteps.php:97
-#: ../app/controllers/admin/coursewizardsteps.php:118
-msgid "Die Daten konnten nicht gespeichert werden."
-msgstr "The data could not be saved."
-
-#: ../app/controllers/admin/coursewizardsteps.php:103
-#, php-format
-msgid "Die angegebene PHP-Klasse \"%s\" wurde nicht gefunden."
-msgstr "The specified PHP class \"%s\" could not be found."
-
-#: ../app/controllers/admin/coursewizardsteps.php:106
-#, php-format
-msgid ""
-"Die angegebene PHP-Klasse \"%s\" implementiert nicht das Interface "
-"CourseWizardStep."
-msgstr ""
-"The specified PHP-Class \"%s\" does not implement the CourseWizardStep "
-"interface."
-
-#: ../app/controllers/admin/coursewizardsteps.php:137
-#, php-format
-msgid "Der Schritt \"%s\" wurde gelöscht."
-msgstr "Step \"%s\" has been deleted."
-
-#: ../app/controllers/admin/coursewizardsteps.php:139
-#, php-format
-msgid "Der Schritt %s konnte nicht gelöscht werden."
-msgstr "The step \"%s\" could not be deleted."
-
-#: ../app/controllers/admin/coursewizardsteps.php:158
-msgid "Der Schritt wurde aktiviert"
-msgstr "The step has been activated"
-
-#: ../app/controllers/admin/coursewizardsteps.php:159
-msgid "Der Schritt wurde deaktiviert"
-msgstr "The step has been deactivated"
-
-#: ../app/controllers/admin/lockrules.php:28
-msgid "Verwaltung der Sperrebenen"
-msgstr "Locking level management"
-
-#: ../app/controllers/admin/lockrules.php:62
-msgid "Neue Sperrebene anlegen"
-msgstr "Create locking rule"
-
-#: ../app/controllers/admin/lockrules.php:69
-msgid "Bereichsauswahl"
-msgstr "Area selection"
-
-#: ../app/controllers/admin/lockrules.php:109
-msgid "Die Änderungen der Sperrebene konnten nicht gespeichert werden."
-msgstr "The changes to the lock level could not be saved."
-
-#: ../app/controllers/admin/lockrules.php:111
-#: ../app/controllers/admin/cronjobs/schedules.php:175
-msgid "Die Änderungen wurden gespeichert."
-msgstr "Your changes have been saved."
-
-#: ../app/controllers/admin/lockrules.php:119
-#, php-format
-msgid "Diese Sperrebene wird von %s Objekten benutzt."
-msgstr "This level is used by %s objects."
-
-#: ../app/controllers/admin/lockrules.php:126
-msgid "Diese Ebene löschen"
-msgstr "Delete this level"
-
-#: ../app/controllers/admin/lockrules.php:131
-#: ../app/controllers/admin/lockrules.php:156
-msgid "Bearbeiten abbrechen"
-msgstr "Abort modification"
-
-#: ../app/controllers/admin/lockrules.php:148
-msgid "Die neue Sperrebene konnte nicht gespeichert werden."
-msgstr "Unable to save new lock rule."
-
-#: ../app/controllers/admin/lockrules.php:150
-msgid "Die neue Sperrebene wurde gespeichert"
-msgstr "The new lock rule has been saved"
-
-#: ../app/controllers/admin/lockrules.php:171
-msgid "Die Sperrebene wurde gelöscht."
-msgstr "Lock rule deleted."
-
-#: ../app/controllers/admin/lockrules.php:184
-msgid "Bitte geben Sie einen Namen für die Sperrebene an!"
-msgstr "Please enter the name of the locking level!"
-
-#: ../app/controllers/admin/cronjobs/logs.php:27
-#: ../app/controllers/admin/cronjobs/schedules.php:27
-#: ../app/controllers/admin/cronjobs/schedules.php:180
-#: ../app/controllers/admin/cronjobs/tasks.php:27
-msgid "Cronjob-Verwaltung"
-msgstr "Cronjob management"
-
-#: ../app/controllers/admin/cronjobs/logs.php:27
-msgid "Log-Einträge"
-msgstr "Log entries"
-
-#: ../app/controllers/admin/cronjobs/logs.php:41
-#: ../app/controllers/admin/cronjobs/schedules.php:42
-#: ../app/controllers/admin/cronjobs/tasks.php:35
-msgid "Cronjobs verwalten"
-msgstr "Manage cronjobs"
-
-#: ../app/controllers/admin/cronjobs/logs.php:45
-#: ../app/controllers/admin/cronjobs/schedules.php:46
-#: ../app/controllers/admin/cronjobs/tasks.php:39
-msgid "Aufgaben verwalten"
-msgstr "Manage tasks"
-
-#: ../app/controllers/admin/cronjobs/logs.php:49
-#: ../app/controllers/admin/cronjobs/schedules.php:50
-#: ../app/controllers/admin/cronjobs/tasks.php:43
-msgid "Logs anzeigen"
-msgstr "Display log entries"
-
-#: ../app/controllers/admin/cronjobs/logs.php:142
-#, php-format
-msgid "Logeintrag für Cronjob \"%s\" anzeigen"
-msgstr "Display log entry for cronjob \"%s\""
-
-#: ../app/controllers/admin/cronjobs/logs.php:156
-msgid "Der Logeintrag wurde gelöscht."
-msgstr "Log entry has been deleted."
-
-#: ../app/controllers/admin/cronjobs/logs.php:178
-#, php-format
-msgid "%u Logeintrag wurde gelöscht."
-msgid_plural "%u Logeinträge wurden gelöscht."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/cronjobs/schedules.php:56
-msgid "Neuen Cronjob registrieren"
-msgstr "Register new cronjob"
-
-#: ../app/controllers/admin/cronjobs/schedules.php:96
-msgid "Es gibt keinen Cronjob mit dieser Id."
-msgstr "No cronjob exists with this ID."
-
-#: ../app/controllers/admin/cronjobs/schedules.php:101
-#, php-format
-msgid "Cronjob \"%s\" anzeigen"
-msgstr "Display cronjob \"%s\""
-
-#: ../app/controllers/admin/cronjobs/schedules.php:180
-#: ../app/views/admin/cronjobs/schedules/display.php:75
-#: ../app/views/admin/cronjobs/schedules/index.php:130
-msgid "Cronjob bearbeiten"
-msgstr "Edit cronjob"
-
-#: ../app/controllers/admin/cronjobs/schedules.php:184
-#: ../app/controllers/admin/user.php:1664
-#: ../app/views/module/module/copy_form.php:92
-#: ../app/views/course/timesrooms/createCycle.php:132
-#: ../app/views/course/timesrooms/editStack.php:116
-#: ../app/views/course/timesrooms/cancelStack.php:10
-#: ../app/views/course/timesrooms/editDate.php:217
-#: ../app/views/course/timesrooms/createSingleDate.php:98
-#: ../app/views/course/block_appointments/index.php:151
-#: ../app/views/course/room_requests/new.php:41
-#: ../app/views/contents/courseware/create_project.php:116
-#: ../app/views/admin/specification/edit.php:79
-#: ../app/views/admin/user/activities.php:72
-#: ../app/views/admin/user/list_files.php:53
-#: ../app/views/admin/datafields/new.php:170
-#: ../app/views/admin/datafields/edit.php:199
-msgid "Zurück zur Übersicht"
-msgstr "Back to overview"
-
-#: ../app/controllers/admin/cronjobs/schedules.php:224
-msgid "Der Cronjob wurde aktiviert."
-msgstr "Cronjob has been activated."
-
-#: ../app/controllers/admin/cronjobs/schedules.php:240
-msgid "Der Cronjob wurde deaktiviert."
-msgstr "Cronjob has been deactivated."
-
-#: ../app/controllers/admin/cronjobs/schedules.php:256
-msgid "Der Cronjob wurde gelöscht."
-msgstr "Cronjob has been deleted."
-
-#: ../app/controllers/admin/cronjobs/schedules.php:284
-#, php-format
-msgid ""
-"%u Cronjob konnte nicht aktiviert werden, da die entsprechende Aufgabe "
-"deaktiviert ist."
-msgid_plural ""
-"%u Cronjob(s) konnte(n) nicht aktiviert werden, da die entsprechende Aufgabe "
-"deaktiviert ist."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/cronjobs/schedules.php:292
-#, php-format
-msgid "%u Cronjob wurde aktiviert."
-msgid_plural "%u Cronjobs wurden aktiviert."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/cronjobs/schedules.php:301
-#, php-format
-msgid "%u Cronjob wurde deaktiviert."
-msgid_plural "%u Cronjobs wurden deaktiviert."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/cronjobs/schedules.php:309
-#, php-format
-msgid "%u Cronjob wurde gelöscht."
-msgid_plural "%u Cronjobs wurden gelöscht."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/cronjobs/tasks.php:27
-msgid "Aufgaben"
-msgstr "Tasks"
-
-#: ../app/controllers/admin/cronjobs/tasks.php:80
-#, php-format
-msgid "Die Aufgabe und %u Cronjob(s) wurden aktiviert."
-msgstr "The task and %u cronjob(s) have been activated."
-
-#: ../app/controllers/admin/cronjobs/tasks.php:103
-#, php-format
-msgid "Die Aufgabe und %u Cronjob(s) wurden deaktiviert."
-msgstr "The task and %u cronjob(s) have been deactivated."
-
-#: ../app/controllers/admin/cronjobs/tasks.php:121
-#, php-format
-msgid "Die Aufgabe und %u Cronjob(s) wurden gelöscht."
-msgstr "The task and %u cronjob(s) have been deleted."
-
-#: ../app/controllers/admin/cronjobs/tasks.php:149
-#, php-format
-msgid "%u Aufgabe wurde aktiviert."
-msgid_plural "%u Aufgaben wurden aktiviert."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/cronjobs/tasks.php:161
-#, php-format
-msgid "%u Aufgabe wurde deaktiviert."
-msgid_plural "%u Aufgaben wurden deaktiviert."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/cronjobs/tasks.php:169
-#, php-format
-msgid "%u Aufgabe wurde gelöscht."
-msgid_plural "%u Aufgaben wurden gelöscht."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/cronjobs/tasks.php:183
-msgid "Cronjob-Aufgabe ausführen"
-msgstr "Execute cronjob task"
-
-#: ../app/controllers/admin/additional.php:60
-msgid "Zusatzangaben wurden erfolgreich zugeordnet"
-msgstr "Additional information have been assigned"
-
-#: ../app/controllers/admin/additional.php:62
-msgid "Zuweisung der Zusatzangaben wurden aufgehoben"
-msgstr "Assignment of additional information has been revoked"
-
-#: ../app/controllers/admin/user.php:44
-msgid "Personenverwaltung"
-msgstr "Administration"
-
-#: ../app/controllers/admin/user.php:152
-msgid "Sie haben keine Suchkriterien ausgewählt!"
-msgstr "You have not selected any search criteria!"
-
-#: ../app/controllers/admin/user.php:154
-msgid "Es wurden keine Personen mit diesen Suchkriterien gefunden."
-msgstr "No match found."
-
-#: ../app/controllers/admin/user.php:157
-#, php-format
-msgid "Es wurden %s Personen mit diesen Suchkriterien gefunden."
-msgstr "%s persons matching the search criteria have been found."
-
-#: ../app/controllers/admin/user.php:224
-msgid "Folgende Nutzer löschen"
-msgstr "Delete the following users"
-
-#: ../app/controllers/admin/user.php:269
-msgid "Fehler! Zu löschende Person ist nicht vorhanden."
-msgstr "Error! The user to be deleted does not exist."
-
-#: ../app/controllers/admin/user.php:290
-#, php-format
-msgid "\"%s (%s)\" wurde erfolgreich gelöscht."
-msgstr "\"%s (%s)\" has been deleted successfully."
-
-#: ../app/controllers/admin/user.php:293
-#, php-format
-msgid "Fehler! \"%s (%s)\" konnte nicht gelöscht werden."
-msgstr "Error! \"%s (%s)\" could not be deleted."
-
-#: ../app/controllers/admin/user.php:305
-#, php-format
-msgid "Wollen Sie \"%s (%s)\" wirklich löschen?"
-msgstr "Do you really want to delete \"%s (%s)\"?"
-
-#: ../app/controllers/admin/user.php:315
-msgid "Bitte wählen Sie mindestens eine Person zum Löschen aus."
-msgstr "Select at least one person for deletion."
-
-#: ../app/controllers/admin/user.php:339
-#, php-format
-msgid "\"%s (%s)\" wurde erfolgreich gelöscht"
-msgstr "\"%s (%s)\" has been deleted successfully"
-
-#: ../app/controllers/admin/user.php:342
-#, php-format
-msgid "Fehler! \"%s (%s)\" konnte nicht gelöscht werden"
-msgstr "Error! \"%s (%s)\" could not be deleted"
-
-#: ../app/controllers/admin/user.php:377
-msgid "Sie haben niemanden ausgewählt!"
-msgstr "You haven't selected anyone!"
-
-#: ../app/controllers/admin/user.php:428
-msgid ""
-"Bei der Wiederholung des Passwortes ist ein Fehler aufgetreten! Bitte geben "
-"Sie das exakte Passwort ein!"
-msgstr ""
-"An error occurred while re-typing the password! Please enter the correct "
-"password!"
-
-#: ../app/controllers/admin/user.php:435
-msgid "Der Validation-Key wurde entfernt."
-msgstr "Validation key removed."
-
-#: ../app/controllers/admin/user.php:442
-msgid ""
-"<b>Der Studiengang wurde nicht hinzugefügt.</b> Bitte geben Sie Fach und "
-"Abschluss ein."
-msgstr ""
-"<b>The course of study has not been added.</b> Please enter subject and "
-"degree."
-
-#: ../app/controllers/admin/user.php:456
-msgid "Der Studiengang wurde hinzugefügt."
-msgstr "The course of study has been added."
-
-#: ../app/controllers/admin/user.php:460
-msgid "Der Studiengang wurde geändert."
-msgstr "The course of study has been changed."
-
-#: ../app/controllers/admin/user.php:462
-msgid "Der Studiengang wurde nicht geändert."
-msgstr "The course of study has not been changed."
-
-#: ../app/controllers/admin/user.php:490
-msgid "Die Versionen der Studiengänge wurden geändert."
-msgstr "The versions of the courses of study have been changed."
-
-#: ../app/controllers/admin/user.php:506
-msgid "Die Einrichtung wurde hinzugefügt."
-msgstr "The institute has been added."
-
-#: ../app/controllers/admin/user.php:528
-#, php-format
-msgid ""
-"<b>%s wurde nicht hinzugefügt.</b> Sie können keine Person gleichzeitig als "
-"Studierende/-r und als Mitarbeiter/-in einer Einrichtung hinzufügen."
-msgstr ""
-"<b>%s has not been added.</b> You cannot add a person to an institute as a "
-"student and a staff member simultaneously."
-
-#: ../app/controllers/admin/user.php:540
-msgid "Die Nutzerdomäne wurde hinzugefügt."
-msgstr "The user domain has been added."
-
-#: ../app/controllers/admin/user.php:567
-msgid "Das Ablaufdatum wurde geändert."
-msgstr "The expiration date was changed."
-
-#: ../app/controllers/admin/user.php:569
-msgid "Das Ablaufdatum wurde in einem falschen Format angegeben."
-msgstr "Start date has not been entered in a valid format."
-
-#: ../app/controllers/admin/user.php:577
-msgid "Die Sperrebene wurde geändert."
-msgstr "Locking level changed."
-
-#: ../app/controllers/admin/user.php:596
-msgid "Hinweise:"
-msgstr "Information:"
-
-#: ../app/controllers/admin/user.php:603
-#: ../app/views/admin/user/_results.php:114
-#: ../app/views/admin/user/index.php:143
-msgid "vorläufig"
-msgstr "provisional"
-
-#: ../app/controllers/admin/user.php:645
-msgid ""
-"Die Standard-Authentifizierung ist ausgeschaltet. Das Anlegen von neuen "
-"Benutzern ist nicht möglich!"
-msgstr ""
-"The standard authentication has been turned off. It is not possible to "
-"create new users!"
-
-#: ../app/controllers/admin/user.php:763 ../app/controllers/admin/user.php:796
-msgid "Neuer Administrator in Ihrer Einrichtung angelegt"
-msgstr "New institute administrator created"
-
-#: ../app/controllers/admin/user.php:764 ../app/controllers/admin/user.php:797
-#, php-format
-msgid ""
-"Liebe(r) %s %s,\n"
-"\n"
-"in der Einrichtung '%s' wurde %s %s als Administrator eingetragen  und steht "
-"Ihnen als neuer Ansprechpartner bei Fragen oder Problemen in Stud.IP zur "
-"Verfügung. "
-msgstr ""
-"Dear %s %s,\n"
-"\n"
-"in the institute '%s' %s %s has been added as administrator and will be able "
-"to assist you in case of questions about or problems with Stud.IP."
-
-#: ../app/controllers/admin/user.php:809
-#, php-format
-msgid "Es wurden ingesamt %s Mails an die %s der Einrichtung \"%s\" geschickt."
-msgstr "A total of %s e-mails has been sent to the %s of institute \"%s\"."
-
-#: ../app/controllers/admin/user.php:817
-#, php-format
-msgid ""
-"Person wurde erfolgreich in die Einrichtung \"%s\" mit dem Status \"%s\" "
-"eingetragen."
-msgstr "User added to institute \"%s\" with status \"%s\"."
-
-#: ../app/controllers/admin/user.php:823
-#, php-format
-msgid "Person konnte nicht in die Einrichtung \"%s\" eingetragen werden."
-msgstr "The user cannot be added to institute \"%s\"."
-
-#: ../app/controllers/admin/user.php:836
-#, php-format
-msgid "Person wurde in Nutzerdomäne \"%s\" eingetragen."
-msgstr "Person added to domain \"%s\"."
-
-#: ../app/controllers/admin/user.php:838
-msgid "Person konnte nicht in die Nutzerdomäne eingetragen werden."
-msgstr "Cannot add person to domain."
-
-#: ../app/controllers/admin/user.php:852
-msgid "Person wurde angelegt."
-msgstr "Account created."
-
-#: ../app/controllers/admin/user.php:858
-msgid "Person konnte nicht angelegt werden."
-msgstr "Cannot create account."
-
-#: ../app/controllers/admin/user.php:937
-msgid "Die Personen wurden migriert."
-msgstr "Account migrated."
-
-#: ../app/controllers/admin/user.php:940
-msgid "Bitte wählen Sie zwei gültige Personen aus."
-msgstr "Select two valid accounts."
-
-#: ../app/controllers/admin/user.php:957
-msgid ""
-"Es wurde eine Mail mit einem Link zum Neusetzen des Passworts verschickt, "
-"das bestehende Passwort wurde nicht verändert."
-msgstr ""
-
-#: ../app/controllers/admin/user.php:961
-#: ../app/controllers/institute/basicdata.php:277
-msgid "Die Änderungen konnten nicht gespeichert werden."
-msgstr "The changes could not be saved."
-
-#: ../app/controllers/admin/user.php:977
-#, php-format
-msgid "%s sperren"
-msgstr "lock %s"
-
-#: ../app/controllers/admin/user.php:1000
-#, php-format
-msgid "%s wurde gesperrt."
-msgstr "%s has been locked."
-
-#: ../app/controllers/admin/user.php:1027
-#, php-format
-msgid "%s wurde entsperrt."
-msgstr "%s has been unlocked."
-
-#: ../app/controllers/admin/user.php:1032
-#, php-format
-msgid "%s konnte nicht entsperrt werden."
-msgstr "%s could not be unlocked."
-
-#: ../app/controllers/admin/user.php:1107
-msgid "Die Einrichtungsdaten der Person wurden geändert."
-msgstr "Changes saved."
-
-#: ../app/controllers/admin/user.php:1127
-msgid "Die Zuordnung zum Studiengang wurde gelöscht."
-msgstr "Assignment to study course deleted."
-
-#: ../app/controllers/admin/user.php:1129
-msgid "Die Zuordnung zum Studiengang konnte nicht gelöscht werden."
-msgstr "Assignment to study course not deleted."
-
-#: ../app/controllers/admin/user.php:1161
-msgid "Die Zuordnung zur Einrichtung wurde gelöscht."
-msgstr "Assignment to institution deleted."
-
-#: ../app/controllers/admin/user.php:1163
-#: ../app/controllers/admin/user.php:1166
-msgid "Die Zuordnung zur Einrichtung konnte nicht gelöscht werden."
-msgstr "Assignment to institution could not be deleted."
-
-#: ../app/controllers/admin/user.php:1191
-msgid "Die Zuordnung zur Nutzerdomäne wurde erfolgreich gelöscht."
-msgstr "Allocation to user domain successfully deleted."
-
-#: ../app/controllers/admin/user.php:1202
-#, php-format
-msgid ""
-"Die Benachrichtigungseinstellungen für %s Veranstaltungen wurden zurück "
-"gesetzt."
-msgstr "The mail settings for %s courses have been reset."
-
-#: ../app/controllers/admin/user.php:1213
-msgid "Die Zwei-Faktor-Authentifizierung wurde für diese Person deaktiviert."
-msgstr "Two-factor authentication has been deactivated for this person."
-
-#: ../app/controllers/admin/user.php:1233
-msgid "Nutzer nicht gefunden"
-msgstr "User not found"
-
-#: ../app/controllers/admin/user.php:1235
-#, php-format
-msgid "Datei- und Aktivitätsübersicht für %s"
-msgstr "File and activity overview for %s"
-
-#: ../app/controllers/admin/user.php:1357
-#, php-format
-msgid "Dateiübersicht für %s"
-msgstr "File overview for %s"
-
-#: ../app/controllers/admin/user.php:1368
-msgid "Eingetragen in Veranstaltungen (dozent / tutor / autor / user)"
-msgstr "Enroled in courses (lecturer / tutor / author / user)"
-
-#: ../app/controllers/admin/user.php:1377
-msgid ""
-"Eingetragen in geschlossenen Veranstaltungen (dozent / tutor / autor / user)"
-msgstr "Enroled in closed courses (lecturer / tutor / author / user)"
-
-#: ../app/controllers/admin/user.php:1388
-msgid "Eingetragen in Wartelisten (wartend / vorläufig akzeptiert)"
-msgstr "Subscribed to waiting list (waiting / accepted preliminary)"
-
-#: ../app/controllers/admin/user.php:1396
-msgid "Eingetragen in Anmeldelisten"
-msgstr "Entered into wait lists"
-
-#: ../app/controllers/admin/user.php:1404
-msgid "Eingetragen in Einrichtungen (admin / dozent / tutor / autor)"
-msgstr "Entered in institutes (admin / lecturer / tutor / author)"
-
-#: ../app/controllers/admin/user.php:1412
-msgid "Anzahl der Ankündigungen"
-msgstr "Number of announcements"
-
-#: ../app/controllers/admin/user.php:1416
-msgid "Anzahl der Wikiseiten"
-msgstr "Number of wiki pages"
-
-#: ../app/controllers/admin/user.php:1420
-msgid "Anzahl der Umfragen"
-msgstr "Number of surveys"
-
-#: ../app/controllers/admin/user.php:1424
-msgid "Anzahl der Evaluationen"
-msgstr "Number of evaluations"
-
-#: ../app/controllers/admin/user.php:1428
-msgid "Anzahl der Dateien in Veranstaltungen und Einrichtungen"
-msgstr "Amount of files in courses and institutes"
-
-#: ../app/controllers/admin/user.php:1441
-msgid ""
-"Gesamtgröße der hochgeladenen Dateien in Veranstaltungen und Einrichtungen "
-"(in Megabytes)"
-msgstr "Total size of uploaded files in courses and institutes (in Megabytes)"
-
-#: ../app/controllers/admin/user.php:1458
-msgid "Anzahl der Postings"
-msgstr "Number of postings"
-
-#: ../app/controllers/admin/user.php:1526
-msgid "Neues Konto anlegen"
-msgstr "Create account"
-
-#: ../app/controllers/admin/user.php:1532
-msgid "Vorläufiges Konto anlegen"
-msgstr "Create preliminary account"
-
-#: ../app/controllers/admin/user.php:1537
-msgid "Konten zusammenführen"
-msgstr "Merge accounts"
-
-#: ../app/controllers/admin/user.php:1552
-msgid "Suchergebnis exportieren"
-msgstr "Export search result"
-
-#: ../app/controllers/admin/user.php:1563
-#, php-format
-msgid "Aktionen für \"%s\""
-msgstr "Actions for \"%s\""
-
-#: ../app/controllers/admin/user.php:1566
-msgid "Nachricht an Person verschicken"
-msgstr "Send message to user"
-
-#: ../app/controllers/admin/user.php:1573
-msgid "Personenaccount entsperren"
-msgstr "Unblock account"
-
-#: ../app/controllers/admin/user.php:1579
-msgid "Personenaccount sperren"
-msgstr "Lock user account"
-
-#: ../app/controllers/admin/user.php:1588
-#: ../app/views/admin/user/_results.php:171
-msgid "Passwortlink zusenden"
-msgstr ""
-
-#: ../app/controllers/admin/user.php:1594
-msgid "Person löschen"
-msgstr "Delete account"
-
-#: ../app/controllers/admin/user.php:1601
-msgid "Benachrichtigungen zurücksetzen"
-msgstr "Reset notifications"
-
-#: ../app/controllers/admin/user.php:1609
-msgid ""
-"Alle Dateien des Nutzers aus Veranstaltungen und Einrichtungen als ZIP "
-"herunterladen"
-msgstr "Download all files of the user from courses and institutes as ZIP"
-
-#: ../app/controllers/admin/user.php:1617
-msgid "Zwei-Faktor-Authentifizierung deaktivieren"
-msgstr "Deactivate two-factor authentication"
-
-#: ../app/controllers/admin/user.php:1668
-msgid "Person verwalten"
-msgstr "Edit account"
-
-#: ../app/controllers/admin/user.php:1672
-#: ../app/views/admin/user/_results.php:126
-msgid "Zum Profil"
-msgstr "Go to profile"
-
-#: ../app/controllers/admin/user.php:1679
-#: ../app/views/admin/user/_results.php:132
-msgid "Datei- und Aktivitätsübersicht"
-msgstr "File and activity overview"
-
-#: ../app/controllers/admin/user.php:1687
-#: ../app/views/admin/user/_results.php:139
-msgid "Personeneinträge im Log"
-msgstr "User entries in the log"
-
-#: ../app/controllers/admin/user.php:1708
-msgid "Zur Rollenverwaltung"
-msgstr "Go to role management"
-
-#: ../app/controllers/admin/specification.php:36
-#: ../app/views/admin/specification/index.php:5
-msgid "Verwaltung von Zusatzangaben"
-msgstr "Additional information management"
-
-#: ../app/controllers/admin/specification.php:64
-#, php-format
-msgid ""
-"Sie müssen zuerst im Bereich %sDatenfelder%s in der Kategorie "
-"<em>Datenfelder für Personenzusatzangaben in Veranstaltungen</em> einen "
-"neuen Eintrag erstellen."
-msgstr ""
-"You first need to create a new entry in the area %sdatafields%s in the "
-"category <em>Datafields for additional person information in courses</em>."
-
-#: ../app/controllers/admin/specification.php:83
-msgid "Bitte geben Sie der Regel mindestens einen Namen!"
-msgstr "Please give this rule a name!"
-
-#: ../app/controllers/admin/specification.php:86
-msgid ""
-"Bitte wählen Sie mindestens ein Feld aus der Kategorie \"Zusatzinformationen"
-"\" aus!"
-msgstr ""
-"Please select at least one field out of the category \"Additional information"
-"\"!"
-
-#: ../app/controllers/admin/specification.php:98
-#, php-format
-msgid "Die Regel \"%s\" wurde erfolgreich gespeichert!"
-msgstr "The rule \"%s\" has been saved successfully!"
-
-#: ../app/controllers/admin/specification.php:102
-msgid "Ihre Eingaben sind ungültig."
-msgstr "Invalid entries."
-
-#: ../app/controllers/admin/specification.php:117
-msgid "Die Regel wurde erfolgreich gelöscht!"
-msgstr "The rule has successfully been deleted!"
-
-#: ../app/controllers/admin/specification.php:119
-msgid "Es können nur nicht verwendete Regeln gelöscht werden!"
-msgstr "Only unused rules can be deleted!"
-
-#: ../app/controllers/admin/install.php:16
-msgid "Einleitung"
-msgstr "Introduction"
-
-#: ../app/controllers/admin/install.php:17
-msgid "System-Check (PHP)"
-msgstr "System check (PHP)"
-
-#: ../app/controllers/admin/install.php:18
-msgid "Datenbank konfigurieren"
-msgstr "Configure database"
-
-#: ../app/controllers/admin/install.php:19
-msgid "System-Check (Datenbank)"
-msgstr "System check (database)"
-
-#: ../app/controllers/admin/install.php:20
-#: ../app/views/admin/semester/lock.php:4
-msgid "Berechtigungen"
-msgstr "Permissions"
-
-#: ../app/controllers/admin/install.php:22
-#: ../app/views/admin/install/install.php:17
-#: ../app/views/admin/install/install-basic.php:9
-msgid "Root-Konto"
-msgstr "Root account"
-
-#: ../app/controllers/admin/install.php:23
-#: ../app/views/admin/install/layout.php:6
-#: ../app/views/admin/install/install.php:1
-#: ../app/views/admin/install/install-basic.php:1
-msgid "Installation"
-msgstr "Installation"
-
-#: ../app/controllers/admin/install.php:24
-msgid "Installation beendet"
-msgstr "Installation completed"
-
-#: ../app/controllers/admin/install.php:74
-msgid "Assistent starten"
-msgstr "Start wizard"
-
-#: ../app/controllers/admin/install.php:108
-#: ../app/controllers/admin/install.php:140
-#, php-format
-msgid ""
-"Falls Sie ausführlichere Hilfestellung zu dieser Meldung benötigen, "
-"probieren Sie die %sGoogle-Suche%s oder fragen Sie im Stud.IP Entwicklungs- "
-"und Anwendungsforum nach."
-msgstr ""
-"If you need more detailed help on this message, try this %sGoogle Search%s "
-"or check out the Stud.IP development and application forum."
-
-#: ../app/controllers/admin/install.php:118
-#: ../app/controllers/admin/install.php:150
-msgid "Oder wenden Sie sich an Ihren Hoster."
-msgstr "Or contact your hoster."
-
-#: ../app/controllers/admin/install.php:166
-msgid "Datenbankschema"
-msgstr "Database schema"
-
-#: ../app/controllers/admin/install.php:167
-msgid "Voreinstellungen"
-msgstr "Default settings"
-
-#: ../app/controllers/admin/install.php:168
-msgid "Struktur für Ressourcen"
-msgstr "Structure for resource management"
-
-#: ../app/controllers/admin/install.php:169
-msgid "Allgemeine Beispieldaten"
-msgstr "General sample data"
-
-#: ../app/controllers/admin/install.php:170
-msgid "Demodaten für das Modul- und Veranstaltungsverzeichnis"
-msgstr "Demo data for the module and course directory"
-
-#: ../app/controllers/admin/install.php:171
-msgid "Demodaten für die Ressourcenverwaltung "
-msgstr "Demo data for the resource management"
-
-#: ../app/controllers/admin/install.php:216
-msgid "Der Benutzername ist ungültig"
-msgstr "The username is invalid"
-
-#: ../app/controllers/admin/install.php:220
-msgid ""
-"Das Passwort ist zu kurz oder ungültig. Es muss mindestens 8 Zeichen lang "
-"sein."
-msgstr ""
-"The password is too short or invalid. It must be at least 8 characters long."
-
-#: ../app/controllers/admin/install.php:222
-msgid "Die Passwörter stimmen nicht überein."
-msgstr "The passwords don't match."
-
-#: ../app/controllers/admin/install.php:238
-#: ../app/views/admin/plugin/search.php:18
-msgid "Installieren"
-msgstr "Install"
-
-#: ../app/controllers/admin/install.php:396
-msgid "Zum neuen Stud.IP"
-msgstr "Go to Stud.IP"
-
-#: ../app/controllers/admin/statusgroups.php:38
-msgid "Verwaltung von Funktionen und Gruppen"
-msgstr "Manage functions and groups"
-
-#: ../app/controllers/admin/statusgroups.php:75
-#: ../app/views/admin/statusgroups/sortGroups.php:7
-msgid "Gruppenreihenfolge ändern"
-msgstr "Change group order"
-
-#: ../app/controllers/admin/statusgroups.php:108
-msgid "Teilnehmende/n suchen"
-msgstr "Search participant"
-
-#: ../app/controllers/admin/statusgroups.php:140
-msgid "Die Gruppe wurde angelegt."
-msgstr "Group created."
-
-#: ../app/controllers/admin/statusgroups.php:141
-msgid "Die Gruppe wurde gespeichert"
-msgstr "The group has been saved"
-
-#: ../app/controllers/admin/statusgroups.php:165
-msgid "Die Gruppenreihenfolge wurde gespeichert."
-msgstr "The group order has been saved."
-
-#: ../app/controllers/admin/statusgroups.php:193
-#, php-format
-msgid "Es wurde eine Person hinzugefügt."
-msgid_plural "Es wurden %u Personen hinzugefügt."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/statusgroups.php:413
-#: ../app/views/studygroup/browse.php:7
-#: ../app/views/course/studygroup/members.php:24
-msgid "Mitglieder"
-msgstr "Members"
-
-#: ../app/controllers/admin/ilias_interface.php:37
-#, php-format
-msgid ""
-"Das Stud.IP-Modul für die SOAP-Schnittstelle ist nicht aktiviert. Dieses "
-"Modul wird für die Nutzung der ILIAS-Schnittstelle benötigt. Ändern Sie den "
-"entsprechenden Eintrag in der %sStud.IP-Konfiguration%s."
-msgstr ""
-"The Stud.IP module for the SOAP interface is not activated. This module is "
-"required for using the ILIAS interface. Please change the corresponding "
-"entry in the %sStud.IP configuration%s."
-
-#: ../app/controllers/admin/ilias_interface.php:50
-msgid "ILIAS-Grundeinstellungen nicht gefunden."
-msgstr "Basic ILIAS settings not found."
-
-#: ../app/controllers/admin/ilias_interface.php:69
-msgid "Verwaltung der ILIAS-Schnittstelle"
-msgstr "ILIAS interface management"
-
-#: ../app/controllers/admin/ilias_interface.php:74
-msgid "Schnittstelle konfigurieren"
-msgstr "Configure interface"
-
-#: ../app/controllers/admin/ilias_interface.php:80
-msgid "ILIAS-Installation hinzufügen"
-msgstr "Add ILIAS installation"
-
-#: ../app/controllers/admin/ilias_interface.php:113
-msgid "Einstellungen wurden gespeichert."
-msgstr "Settings have been saved."
-
-#: ../app/controllers/admin/ilias_interface.php:134
-msgid "https://<URL zur ILIAS-Installation>"
-msgstr "https://<URL to the ILIAS installation>"
-
-#: ../app/controllers/admin/ilias_interface.php:206
-msgid "Name der Installation darf nicht leer sein."
-msgstr "The name of the installation cannot be empty."
-
-#: ../app/controllers/admin/ilias_interface.php:230
-msgid "ILIAS-Version und Clients konnten nicht automatisch erkannt werden."
-msgstr "The ILIAS version and the clients could not be detected automatically."
-
-#: ../app/controllers/admin/ilias_interface.php:267
-msgid "ILIAS-Konfiguration wurde entfernt."
-msgstr "The ILIAS configuration has been removed."
-
-#: ../app/controllers/admin/ilias_interface.php:299
-msgid "ILIAS-Servereinstellungen wurden gespeichert."
-msgstr "ILIAS server settings have been saved."
-
-#: ../app/controllers/admin/ilias_interface.php:337
-msgid "ILIAS-Inhaltseinstellungen wurden gespeichert."
-msgstr "ILIAS content settings have been saved."
-
-#: ../app/controllers/admin/ilias_interface.php:352
-msgid "ILIAS-Berechtigungseinstellungen wurden gespeichert."
-msgstr "ILIAS permission settings have been saved."
-
-#: ../app/controllers/admin/ilias_interface.php:380
-msgid "ILIAS-Installation aktiviert."
-msgstr "ILIAS installation activated."
-
-#: ../app/controllers/admin/ilias_interface.php:401
-msgid "ILIAS-Installation deaktiviert."
-msgstr "ILIAS installation deactivated."
-
-#: ../app/controllers/admin/autoinsert.php:29
-msgid "Automatisiertes Eintragen verwalten"
-msgstr "Manage automatic enrolment"
-
-#: ../app/controllers/admin/autoinsert.php:50
-#: ../app/controllers/admin/autoinsert.php:210
-msgid "Es wurden keine Veranstaltungen gefunden."
-msgstr "No course found."
-
-#: ../app/controllers/admin/autoinsert.php:53
-msgid "Bitte geben Sie einen Suchparameter ein."
-msgstr "Please enter a search string."
-
-#: ../app/controllers/admin/autoinsert.php:62
-#: ../app/views/admin/user/index.php:91
-msgid "Ohne Domäne"
-msgstr "Without domain"
-
-#: ../app/controllers/admin/autoinsert.php:72
-msgid "Benutzergruppen manuell eintragen"
-msgstr "Manually enter user groups"
-
-#: ../app/controllers/admin/autoinsert.php:88
-msgid "Mindestens ein Status sollte selektiert werden!"
-msgstr "At least one status needs to be selected!"
-
-#: ../app/controllers/admin/autoinsert.php:95
-msgid "Die Zuordnung wurde erfolgreich gespeichert!"
-msgstr "Allocation successfully saved!"
-
-#: ../app/controllers/admin/autoinsert.php:97
-msgid "Das Seminar wird bereits zu diesem Zweck verwendet!"
-msgstr "The seminar is already used for this purpose!"
-
-#: ../app/controllers/admin/autoinsert.php:118
-msgid "Die Statusgruppenanpassung wurde erfolgreich übernommen!"
-msgstr "Changes to the status groups successfully saved!"
-
-#: ../app/controllers/admin/autoinsert.php:131
-msgid "Die Zuordnung der Veranstaltung wurde gelöscht!"
-msgstr "Allocation of the course removed!"
-
-#: ../app/controllers/admin/autoinsert.php:145
-msgid "Manuelles Eintragen von Nutzergruppen in Veranstaltungen"
-msgstr "Manually entering user domains to courses"
-
-#: ../app/controllers/admin/autoinsert.php:149
-msgid "Ungültiger Aufruf"
-msgstr "Invalid invocation"
-
-#: ../app/controllers/admin/autoinsert.php:151
-#: ../app/controllers/admin/autoinsert.php:244
-msgid "Keine Filterkriterien gewählt"
-msgstr "No filter criteria selected"
-
-#: ../app/controllers/admin/autoinsert.php:172
-#, php-format
-msgid ""
-"Es wurden %u von %u möglichen Personen in die Veranstaltung %s eingetragen."
-msgstr "%u out of %u potential users have been enroled in course %s."
-
-#: ../app/controllers/admin/autoinsert.php:182
-msgid ""
-"Etwaige Abweichungen der Personenzahlen enstehen durch bereits vorhandene "
-"bzw. wieder ausgetragene Personen."
-msgstr ""
-"Differences in the number of users might occur due to existing users or "
-"signed out users."
-
-#: ../app/controllers/admin/autoinsert.php:213
-msgid "Im Suchfeld wurde nichts eingetragen!"
-msgstr "Nothing entered in the search field!"
-
-#: ../app/controllers/admin/autoinsert.php:224
-msgid "Studienabschluss"
-msgstr "Degree"
-
-#: ../app/controllers/admin/autoinsert.php:225
-msgid "Studienfachsemester"
-msgstr "Study semester"
-
-#: ../app/controllers/admin/autoinsert.php:227
-msgid "Statusgruppe"
-msgstr "Status group"
-
-#: ../app/controllers/admin/autoinsert.php:228
-msgid "Domäne"
-msgstr "Domain"
-
-#: ../app/controllers/admin/configuration.php:48
-#: ../app/controllers/admin/configuration.php:68
-msgid "Verwaltung von Systemkonfigurationen"
-msgstr "System configuration management"
-
-#: ../app/controllers/admin/configuration.php:59
-#: ../app/views/admin/configuration/configuration.php:6
-msgid "Suchbegriff:"
-msgstr "Find:"
-
-#: ../app/controllers/admin/configuration.php:73
-#, php-format
-msgid "Es wurden keine Ergebnisse zu dem Suchbegriff \"%s\" gefunden."
-msgstr "No results for \"%s\"."
-
-#: ../app/controllers/admin/configuration.php:98
-#, php-format
-msgid "Der Konfigurationseintrag \"%s\" wurde erfolgreich übernommen!"
-msgstr "Configuration variable \"%s\" successfully saved!"
-
-#: ../app/controllers/admin/configuration.php:111
-#, php-format
-msgid "Konfigurationsparameter: %s editieren"
-msgstr ""
-
-#: ../app/controllers/admin/configuration.php:119
-msgid "Verwalten von Range-Konfigurationen"
-msgstr ""
-
-#: ../app/controllers/admin/configuration.php:127
-#: ../app/controllers/admin/configuration.php:186
-#: ../app/controllers/admin/configuration.php:246
-#: ../app/controllers/admin/configuration.php:306
-#, php-format
-msgid "Vorhandene Konfigurationsparameter für \"%s\""
-msgstr "Available configuration parameters for the user \"%s\""
-
-#: ../app/controllers/admin/configuration.php:133
-msgid "Globale Konfigurationsparameter für alle Ranges"
-msgstr ""
-
-#: ../app/controllers/admin/configuration.php:149
-msgid "Bearbeiten von Konfigurationsparametern für die Range: "
-msgstr ""
-
-#: ../app/controllers/admin/configuration.php:159
-#: ../app/controllers/admin/configuration.php:218
-#: ../app/controllers/admin/configuration.php:278
-#: ../app/controllers/admin/configuration.php:337
-#, php-format
-msgid "Der Konfigurationseintrag: %s wurde erfolgreich geändert!"
-msgstr "Configuration value \"%s\" successfully updated!"
-
-#: ../app/controllers/admin/configuration.php:178
-msgid "Verwalten von Personenkonfigurationen"
-msgstr "Administration of user configurations"
-
-#: ../app/controllers/admin/configuration.php:192
-msgid "Globale Konfigurationsparameter für alle Personen"
-msgstr "Global configuration parameters of all users"
-
-#: ../app/controllers/admin/configuration.php:206
-msgid "Bearbeiten von Konfigurationsparametern für die Person: "
-msgstr ""
-
-#: ../app/controllers/admin/configuration.php:239
-msgid "Verwalten von Veranstaltungskonfigurationen"
-msgstr "Manage course configurations"
-
-#: ../app/controllers/admin/configuration.php:252
-msgid "Globale Konfigurationsparameter für alle Veranstaltungen"
-msgstr "Global configuration parameters for all courses"
-
-#: ../app/controllers/admin/configuration.php:266
-msgid "Bearbeiten von Konfigurationsparametern für die Veranstaltung: "
-msgstr ""
-
-#: ../app/controllers/admin/configuration.php:299
-msgid "Verwalten von Einrichtungskonfigurationen"
-msgstr ""
-
-#: ../app/controllers/admin/configuration.php:312
-msgid "Globale Konfigurationsparameter für alle Einrichtungen"
-msgstr ""
-
-#: ../app/controllers/admin/configuration.php:326
-msgid "Bearbeiten von Konfigurationsparametern für die Einrichtung: "
-msgstr ""
-
-#: ../app/controllers/admin/configuration.php:371
-msgid "Bitte geben Sie bei Parametern vom Typ \"integer\" nur Zahlen ein!"
-msgstr "For parameters of type 'integer', please enter integer numbers, only!"
-
-#: ../app/controllers/admin/configuration.php:373
-msgid ""
-"Bitte geben Sie bei Parametern vom Typ \"array\" ein Array oder Objekt in "
-"korrekter JSON Notation ein!"
-msgstr ""
-"The parameters of type 'array' must be an array or object in correct JSON "
-"format!"
-
-#: ../app/controllers/admin/configuration.php:396
-msgid "Globale Konfiguration"
-msgstr "Global configuration"
-
-#: ../app/controllers/admin/configuration.php:400
-msgid "Range-Konfiguration"
-msgstr ""
-
-#: ../app/controllers/admin/configuration.php:404
-msgid "Personenkonfiguration"
-msgstr "User configurations"
-
-#: ../app/controllers/admin/configuration.php:408
-msgid "Veranstaltungskonfiguration"
-msgstr "Course configuration"
-
-#: ../app/controllers/admin/configuration.php:412
-msgid "Einrichtungskonfiguration"
-msgstr ""
-
-#: ../app/controllers/admin/configuration.php:420
-#: ../app/views/oer/mymaterial/edit.php:122
-msgid "Ohne Kategorie"
-msgstr "Without category"
-
-#: ../app/controllers/admin/configuration.php:423
-msgid "Anzeigefilter"
-msgstr "Display filter"
-
-#: ../app/controllers/admin/configuration.php:438
-msgid "Range suchen"
-msgstr ""
-
-#: ../app/controllers/admin/webservice_access.php:31
-msgid "Die Webservices sind in diesem System nicht aktiviert."
-msgstr "In this system web services are not available."
-
-#: ../app/controllers/admin/webservice_access.php:34
-msgid "Verwaltung der Zugriffsregeln für Webservices"
-msgstr "Web service access rule management"
-
-#: ../app/controllers/admin/webservice_access.php:70
-msgid "Die Regel wurde gelöscht."
-msgstr "Rule deleted."
-
-#: ../app/controllers/admin/webservice_access.php:92
-msgid "Bitte geben Sie einen API-Key mit min. 5 Zeichen an."
-msgstr "Please enter an API-key with at least 5 characters."
-
-#: ../app/controllers/admin/webservice_access.php:101
-#, php-format
-msgid "Der IP Bereich %s ist ungültig."
-msgstr "Invalid IP area %s."
-
-#: ../app/controllers/admin/webservice_access.php:106
-msgid "Eine Regel ohne angegebene Methode gilt für alle Methoden!"
-msgstr "Rules without given method will be applied to all methods!"
-
-#: ../app/controllers/admin/webservice_access.php:109
-msgid "Eine Regel ohne IP Bereich gilt für alle IP Adressen!"
-msgstr "Rules without IP area will be applied to all IP addresses!"
-
-#: ../app/controllers/admin/webservice_access.php:112
-msgid "Die Regel wurde nicht gespeichert."
-msgstr "The rule has not been saved."
-
-#: ../app/controllers/admin/webservice_access.php:118
-msgid "Die Regel wurde gespeichert."
-msgstr "The rule has been saved."
-
-#: ../app/controllers/admin/webservice_access.php:136
-msgid "Zugriff erlaubt."
-msgstr "Access granted."
-
-#: ../app/controllers/admin/webservice_access.php:138
-msgid "Zugriff verboten."
-msgstr "Access denied."
-
-#: ../app/controllers/admin/domain.php:34
-msgid "Verwaltung der Nutzerdomänen"
-msgstr "User domain management"
-
-#: ../app/controllers/admin/domain.php:96
-msgid "Die zu bearbeitende Domäne konnte nicht gefunden werden."
-msgstr "The domain to be edited could not be found."
-
-#: ../app/controllers/admin/domain.php:114
-msgid "Diese ID wird bereits verwendet"
-msgstr "This ID is already in use"
-
-#: ../app/controllers/admin/domain.php:122
-msgid "Die Domäne wurde gespeichert"
-msgstr "The domain has been saved"
-
-#: ../app/controllers/admin/domain.php:127
-msgid "Sie haben keinen Namen und keine ID angegeben."
-msgstr "You have not entered a name and ID."
-
-#: ../app/controllers/admin/domain.php:144
-#: ../app/views/admin/domain/index.php:44
-msgid ""
-"Domänen, denen noch Personen zugewiesen sind, können nicht gelöscht werden."
-msgstr "User domains cannot be deleted if there are persons assigned to them."
-
-#: ../app/controllers/admin/domain.php:159 ../app/views/admin/domain/edit.php:7
-msgid "Neue Nutzerdomäne anlegen"
-msgstr "Create new user domain"
-
-#: ../app/controllers/admin/courseplanning.php:22
-#: ../app/controllers/admin/courses.php:291
-msgid "Sie wurden noch keiner Einrichtung zugeordnet"
-msgstr "You have not been assigned to an institution"
-
-#: ../app/controllers/admin/courseplanning.php:70
-#: ../app/controllers/admin/courseplanning.php:120
-msgid "Veranstaltungs-Stundenplan PDF"
-msgstr "Course timetable PDF"
-
-#: ../app/controllers/admin/courseplanning.php:89
-#: ../app/controllers/admin/courseplanning.php:143
-msgid "Veranstaltungen außerhalb des Rasters"
-msgstr "Courses outside the grid"
-
-#: ../app/controllers/admin/courseplanning.php:126
-#: ../app/controllers/admin/courseplanning.php:241
-msgid "Spalten Anzeige"
-msgstr "Column display"
-
-#: ../app/controllers/admin/courseplanning.php:186
-#, php-format
-msgid "Die Spalte %s wurde gelöscht."
-msgstr "The column %s has been deleted."
-
-#: ../app/controllers/admin/courseplanning.php:199
-msgid "Spalte umbenennen"
-msgstr "Rename column"
-
-#: ../app/controllers/admin/courseplanning.php:216
-msgid "Die Spalte wurde umbenannt."
-msgstr "The column has been renamed."
-
-#: ../app/controllers/admin/courseplanning.php:234
-msgid ""
-"Bei der Ermittlung der gewählten Einrichtung ist ein Fehler aufgetreten."
-msgstr "An error occurred while determining the selected institute."
-
-#: ../app/controllers/admin/courseplanning.php:263
-#, php-format
-msgid "%s Spalte(n) sichtbar geschaltet."
-msgstr "Made %s column(s) visible."
-
-#: ../app/controllers/admin/courseplanning.php:267
-#, php-format
-msgid "%s Spalte(n) ausgeblendet."
-msgstr "Made %s column(s) invisible."
-
-#: ../app/controllers/admin/courseplanning.php:272
-msgid "Spalte hinzugefügt."
-msgstr "Added column."
-
-#: ../app/controllers/admin/courseplanning.php:414
-#, php-format
-msgid "Die Farbe wurde allen VA des Typs %s zugewiesen."
-msgstr "The colour has been assigned to all courses of the type %s."
-
-#: ../app/controllers/admin/courseplanning.php:418
-#: ../app/controllers/admin/courseplanning.php:429
-msgid "Bei der Farbzuweisung ist ein Fehler aufgetreten."
-msgstr "Error while assigning a colour."
-
-#: ../app/controllers/admin/courseplanning.php:427
-msgid "Die Farbe wurde der VA zugewiesen."
-msgstr "The colour has been assigned to the course."
-
-#: ../app/controllers/admin/courseplanning.php:594
-#: ../app/controllers/admin/courses.php:1369
-msgid "Institute"
-msgstr "Institute"
-
-#: ../app/controllers/admin/courseplanning.php:735
-#: ../app/controllers/admin/courses.php:1522
-msgid "Lehrendenfilter"
-msgstr "Lecturer filter"
-
-#: ../app/controllers/admin/courseplanning.php:917
-#: ../app/controllers/admin/courses.php:606
-msgid "Die gewünschte Einrichtung wurde ausgewählt!"
-msgstr "The requested institute has been selected!"
-
-#: ../app/controllers/admin/courseplanning.php:924
-#: ../app/controllers/admin/courses.php:613
-#, php-format
-msgid "Das %s wurde ausgewählt"
-msgstr "%s was selected"
-
-#: ../app/controllers/admin/courseplanning.php:928
-#: ../app/controllers/admin/courses.php:615
-msgid "Semesterfilter abgewählt"
-msgstr "Semester filter not set"
-
-#: ../app/controllers/admin/courseplanning.php:936
-#: ../app/controllers/admin/courses.php:623
-#, php-format
-msgid "Der Studiengangteil %s wurde ausgewählt"
-msgstr "The component %s has been selected"
-
-#: ../app/controllers/admin/courseplanning.php:940
-#: ../app/controllers/admin/courses.php:627
-msgid "Studiengangteilfilter abgewählt"
-msgstr "Component filter deselected"
-
-#: ../app/controllers/admin/courseplanning.php:958
-#: ../app/controllers/admin/courses.php:872
-msgid "Der gewünschte Veranstaltungstyp wurde übernommen!"
-msgstr "Course type was changed!"
-
-#: ../app/controllers/admin/banner.php:36
-msgid "Verwaltung der Banner"
-msgstr "Banner administration"
-
-#: ../app/controllers/admin/banner.php:40
-#: ../app/views/admin/ilias_interface/edit_server.php:29
-#: ../app/views/admin/ilias_interface/add_ilias.php:19
-#: ../app/views/admin/api/edit.php:99
-#: ../app/views/admin/plugin/edit_automaticupdate.php:49
-#: ../app/views/file/add_from_library.php:116
-#: ../app/views/file/edit_urlfile.php:19
-msgid "URL"
-msgstr "URL"
-
-#: ../app/controllers/admin/banner.php:44
-msgid "Kein Verweis"
-msgstr "No link"
-
-#: ../app/controllers/admin/banner.php:50
-msgid "sehr niedrig"
-msgstr "very low"
-
-#: ../app/controllers/admin/banner.php:59
-msgid "sehr hoch"
-msgstr "very high"
-
-#: ../app/controllers/admin/banner.php:77
-#: ../app/controllers/admin/banner.php:89
-#, php-format
-msgid "Es existiert kein Banner mit der Id \"%s\""
-msgstr "There is no banner with the id \"%s\""
-
-#: ../app/controllers/admin/banner.php:122
-#: ../app/controllers/admin/banner.php:259
-msgid "Es wurde kein Verweisziel angegeben."
-msgstr "No link target given."
-
-#: ../app/controllers/admin/banner.php:127
-#: ../app/controllers/admin/banner.php:247
-msgid "Bitte geben Sie einen gültiges Startdatum ein."
-msgstr "Enter a valid starting date, please."
-
-#: ../app/controllers/admin/banner.php:134
-#: ../app/controllers/admin/banner.php:253
-msgid "Bitte geben Sie einen gültiges Enddatum ein."
-msgstr "Enter a valid final date, please."
-
-#: ../app/controllers/admin/banner.php:142
-#: ../app/controllers/admin/banner.php:264
-msgid "Das Verweisziel muss eine gültige URL sein (incl. http://)."
-msgstr "Link target must be a valid URL (including http://)."
-
-#: ../app/controllers/admin/banner.php:147
-#: ../app/controllers/admin/banner.php:269
-msgid ""
-"Die angegebene Einrichtung existiert nicht. Bitte geben Sie eine gültige "
-"Einrichtungs-ID ein."
-msgstr ""
-"The given institute does not exist. Enter a valid institute-ID, please."
-
-#: ../app/controllers/admin/banner.php:153
-msgid "Der angegebene Username existiert nicht."
-msgstr "The given username does not exist."
-
-#: ../app/controllers/admin/banner.php:160
-#: ../app/controllers/admin/banner.php:282
-msgid ""
-"Die angegebene Veranstaltung existiert nicht. Bitte geben Sie eine gültige "
-"Veranstaltungs-ID ein."
-msgstr "The given course does not exist. Enter a valid course-ID, please."
-
-#: ../app/controllers/admin/banner.php:170
-#: ../app/controllers/admin/banner.php:293
-msgid "Es sind folgende Fehler aufgetreten:"
-msgstr "The following errors occurred:"
-
-#: ../app/controllers/admin/banner.php:182
-#: ../app/controllers/admin/banner.php:306
-msgid "Der Banner wurde erfolgreich gespeichert."
-msgstr "The banner has been saved."
-
-#: ../app/controllers/admin/banner.php:241
-msgid "Es wurde kein Bild ausgewählt."
-msgstr "No image file selected."
-
-#: ../app/controllers/admin/banner.php:275
-msgid "Der angegebene Benutzername existiert nicht."
-msgstr "The given username does not exist."
-
-#: ../app/controllers/admin/banner.php:323
-msgid "Die Klick- und Viewzahlen des Banners wurden zurückgesetzt"
-msgstr "The clicks and views for this banner have been reset"
-
-#: ../app/controllers/admin/banner.php:336
-msgid "Das Banner wurde erfolgreich gelöscht!"
-msgstr "The banner has been deleted!"
-
-#: ../app/controllers/admin/banner.php:367
-#, php-format
-msgid ""
-"Der Dateityp der Bilddatei ist falsch (%s).<br>Es sind nur die "
-"Dateiendungen .gif, .png und .jpg erlaubt!"
-msgstr ""
-"The file type of the image file is wrong (%s).<br>Only the file extensions ."
-"gif, .png and .jpg are permitted!"
-
-#: ../app/controllers/admin/banner.php:419 ../app/views/admin/banner/new.php:4
-msgid "Neues Banner anlegen"
-msgstr "Create new banner"
-
-#: ../app/controllers/admin/datafields.php:40
-#: ../app/views/admin/datafields/type_select.php:11
-#: ../app/views/admin/datafields/index.php:17
-msgid "Verwaltung von generischen Datenfeldern"
-msgstr "Generic data field management"
-
-#: ../app/controllers/admin/datafields.php:86
-msgid "Datenfeld ändern"
-msgstr "Edit data field"
-
-#: ../app/controllers/admin/datafields.php:90
-msgid "Standardwert"
-msgstr "Default value"
-
-#: ../app/controllers/admin/datafields.php:91
-msgid "Hier können Sie den Standardwert für dieses Datenfeld festlegen."
-msgstr "Here you can define the standard value for this data field."
-
-#: ../app/controllers/admin/datafields.php:120
-msgid "Die Änderungen am generischen Datenfeld wurden übernommen."
-msgstr "Changes of the generic data field saved."
-
-#: ../app/controllers/admin/datafields.php:123
-#: ../app/controllers/admin/datafields.php:178
-msgid "Es wurde keine Bezeichnung eingetragen!"
-msgstr "No notation has been entered!"
-
-#: ../app/controllers/admin/datafields.php:174
-msgid "Das neue generische Datenfeld wurde angelegt."
-msgstr "The new generic data field has been created."
-
-#: ../app/controllers/admin/datafields.php:192
-#: ../app/views/admin/datafields/new.php:10
-#, php-format
-msgid "Einen neuen Datentyp für die Kategorie \"%s\" erstellen"
-msgstr "Create a new type of data fields in category \"%s\""
-
-#: ../app/controllers/admin/datafields.php:210
-msgid "Das Datenfeld wurde erfolgreich gelöscht!"
-msgstr "The data field has been deleted successfully!"
-
-#: ../app/controllers/admin/datafields.php:215
-#, php-format
-msgid ""
-"Wollen Sie das Datenfeld \"%s\" wirklich löschen? Bedenken Sie bitte, dass "
-"noch Einträge dazu existieren können"
-msgstr ""
-"Are you sure to delete data field \"%s\"? Please be aware that there might "
-"exist entries for it"
-
-#: ../app/controllers/admin/datafields.php:242
-msgid "Die Parameter wurden übernommen."
-msgstr "The parameters have been saved."
-
-#: ../app/controllers/admin/licenses.php:9
-msgid "Lizenzverwaltung"
-msgstr ""
-
-#: ../app/controllers/admin/licenses.php:21
-#, php-format
-msgid "Lizenz %s bearbeiten"
-msgstr ""
-
-#: ../app/controllers/admin/licenses.php:38
-msgid "Lizenz wurde gespeichert."
-msgstr ""
-
-#: ../app/controllers/admin/licenses.php:48
-msgid "Neue Standardlizenz wurde gesetzt."
-msgstr ""
-
-#: ../app/controllers/admin/licenses.php:61
-#, php-format
-msgid "Die Lizenz %s wurde gelöscht."
-msgstr ""
-
-#: ../app/controllers/admin/lti.php:26
-msgid "Konfiguration der LTI-Tools"
-msgstr "LTI tool configuration"
-
-#: ../app/controllers/admin/lti.php:30
-msgid "Neues LTI-Tool registrieren"
-msgstr "Register new LTI tool"
-
-#: ../app/controllers/admin/lti.php:35
-msgid ""
-"Hier können Sie Verknüpfungen mit externen Tools konfigurieren, sofern diese "
-"den LTI-Standard (Version 1.x) unterstützen."
-msgstr ""
-"You can configure the link with external tools here, if the tools support "
-"the LTI standard (version 1.x)."
-
-#: ../app/controllers/admin/lti.php:78
-#, php-format
-msgid "Einstellungen für \"%s\" wurden gespeichert."
-msgstr "Settings for \"%s\" have been saved."
-
-#: ../app/controllers/admin/lti.php:100
-#, php-format
-msgid "Das LTI-Tool \"%s\" wurde gelöscht."
-msgstr "The LTI tool \"%s\" has been deleted."
-
-#: ../app/controllers/admin/smileys.php:34
-msgid "Verwaltung der Smileys"
-msgstr "Smileys management"
-
-#: ../app/controllers/admin/smileys.php:57
-#: ../app/views/admin/smileys/edit.php:10
-msgid "Smiley bearbeiten"
-msgstr "Edit smiley"
-
-#: ../app/controllers/admin/smileys.php:67
-#, php-format
-msgid "Es existiert bereits eine Datei mit dem Namen \"%s\"."
-msgstr "There already exists a file with name \"%s\"."
-
-#: ../app/controllers/admin/smileys.php:71
-#, php-format
-msgid "Die Datei \"%s\" konnte nicht umbenannt werden."
-msgstr "Renaming file \"%s\" failed."
-
-#: ../app/controllers/admin/smileys.php:75
-msgid "Smiley erfolgreich umbenannt."
-msgstr "Smiley has been renamed."
-
-#: ../app/controllers/admin/smileys.php:82
-#, php-format
-msgid "Es gibt bereits einen Smileys mit dem Kürzel \"%s\"."
-msgstr "A smiley with the code \"%s\" already exists."
-
-#: ../app/controllers/admin/smileys.php:88
-msgid "Kürzel erfolgreich geändert."
-msgstr "Smiley code has been changed."
-
-#: ../app/controllers/admin/smileys.php:115
-#, php-format
-msgid "%d Smiley(s) erfolgreich gelöscht."
-msgstr "%d smiley(s) deleted."
-
-#: ../app/controllers/admin/smileys.php:121
-#, php-format
-msgid "Smiley \"%s\" erfolgreich gelöscht."
-msgstr "Smiley \"%s\" successfully deleted."
-
-#: ../app/controllers/admin/smileys.php:137
-#, php-format
-msgid "%d Zählerstände aktualisiert"
-msgstr "%d counter readings updated"
-
-#: ../app/controllers/admin/smileys.php:155
-#, php-format
-msgid "%u Operationen wurden durchgeführt."
-msgstr "%u operations have been executed."
-
-#: ../app/controllers/admin/smileys.php:157
-#, php-format
-msgid "%d Smileys aktualisiert"
-msgstr "%d smileys updated"
-
-#: ../app/controllers/admin/smileys.php:158
-#, php-format
-msgid "%d Smileys eingefügt"
-msgstr "%d smileys inserted"
-
-#: ../app/controllers/admin/smileys.php:159
-#, php-format
-msgid "%d Smileys gelöscht"
-msgstr "%d smileys deleted"
-
-#: ../app/controllers/admin/smileys.php:162
-#, php-format
-msgid "%d Favoriten geändert"
-msgstr "%d favourites have been changed"
-
-#: ../app/controllers/admin/smileys.php:179
-#: ../app/controllers/admin/smileys.php:264
-#: ../app/views/admin/smileys/upload.php:10
-msgid "Neues Smiley hochladen"
-msgstr "Upload new smiley"
-
-#: ../app/controllers/admin/smileys.php:196
-msgid "Es gab einen Fehler beim Upload. Bitte versuchen Sie es erneut."
-msgstr "An error occurred during upload. Please try again."
-
-#: ../app/controllers/admin/smileys.php:208
-msgid "Die Datei ist keine Bilddatei"
-msgstr "The file is not an image file"
-
-#: ../app/controllers/admin/smileys.php:221
-#, php-format
-msgid "Es ist bereits eine Bildatei mit dem Namen \"%s\" vorhanden."
-msgstr "There already exists an image file with name \"%s\"."
-
-#: ../app/controllers/admin/smileys.php:242
-#, php-format
-msgid "Die Bilddatei \"%s\" wurde erfolgreich ersetzt."
-msgstr "Image file \"%s\" successfully updated."
-
-#: ../app/controllers/admin/smileys.php:243
-#, php-format
-msgid "Die Bilddatei \"%s\" wurde erfolgreich hochgeladen."
-msgstr "Image file \"%s\" successfully uploaded."
-
-#: ../app/controllers/admin/smileys.php:269
-msgid "Smileys zählen"
-msgstr "Count smileys"
-
-#: ../app/controllers/admin/smileys.php:274
-msgid "Tabelle aktualisieren"
-msgstr "Update table"
-
-#: ../app/controllers/admin/smileys.php:279
-msgid "Smiley-Übersicht öffnen"
-msgstr "Open smiley survey"
-
-#: ../app/controllers/admin/smileys.php:290
-msgid "Nach Buchstaben"
-msgstr "By letters"
-
-#: ../app/controllers/admin/smileys.php:300
-msgid "Top 20"
-msgstr "Top 20"
-
-#: ../app/controllers/admin/smileys.php:301
-msgid "Benutzte"
-msgstr "Used"
-
-#: ../app/controllers/admin/smileys.php:302
-msgid "Nicht benutzte"
-msgstr "Unused"
-
-#: ../app/controllers/admin/smileys.php:303
-msgid "Nur mit Kürzel"
-msgstr "Only with Shortcut"
-
-#: ../app/controllers/admin/smileys.php:305
-msgid "Gruppiert"
-msgstr "Grouped"
-
-#: ../app/controllers/admin/content_terms_of_use.php:51
-#: ../app/controllers/admin/content_terms_of_use.php:70
-msgid "Eintrag hinzufügen"
-msgstr "Add entry"
-
-#: ../app/controllers/admin/content_terms_of_use.php:70
-msgid "Eintrag bearbeiten"
-msgstr "Edit entry"
-
-#: ../app/controllers/admin/content_terms_of_use.php:75
-#: ../app/controllers/admin/content_terms_of_use.php:134
-#, php-format
-msgid ""
-"Eintrag für Nutzungsbedingungen mit ID %s wurde nicht in der Datenbank "
-"gefunden!"
-msgstr "Entry for terms of use with ID %s could not be found in the database!"
-
-#: ../app/controllers/admin/content_terms_of_use.php:106
-msgid "Fehler beim Speichern des Eintrags für Nutzungsbedingungen"
-msgstr "Error while saving the entry for terms of use"
-
-#: ../app/controllers/admin/content_terms_of_use.php:116
-msgid "Eintrag für Nutzungsbedingungen wurde gespeichert!"
-msgstr "Terms of use entry has been saved!"
-
-#: ../app/controllers/admin/content_terms_of_use.php:125
-#: ../app/views/admin/content_terms_of_use/delete.php:7
-msgid "Eintrag löschen"
-msgstr "Delete entry"
-
-#: ../app/controllers/admin/content_terms_of_use.php:157
-#, php-format
-msgid ""
-"Fehler beim Löschen von Eintrag mit ID %s: Es wurde für betroffene Dateien "
-"kein neuer Nutzungsbedingungen-Eintrag ausgewählt!"
-msgstr ""
-"Error while deleting entry with ID %s: No new terms of use entry has been "
-"selected for affected files!"
-
-#: ../app/controllers/admin/content_terms_of_use.php:177
-#, php-format
-msgid ""
-"Fehler beim Zuordnen von Dateien zu Eintrag mit  ID %s! Eintrag mit ID %s "
-"wurde nicht gelöscht!"
-msgstr ""
-"Error while assigning files to entry with ID %s! Entry with ID %s has not "
-"been deleted!"
-
-#: ../app/controllers/admin/content_terms_of_use.php:191
-#, php-format
-msgid ""
-"Eintrag mit ID \"%s\" wurde gelöscht. Alle Dateien, welche diesen Eintrag "
-"verwendeten, nutzen nun den Eintrag mit ID \"%s\"!"
-msgstr ""
-"Entry with ID \"%s\" has been deleted. All files which used this entry now "
-"use the entry with ID \"%s\"!"
-
-#: ../app/controllers/admin/content_terms_of_use.php:197
-#, php-format
-msgid "Eintrag mit ID \"%s\" wurde gelöscht!"
-msgstr "Entry with ID \"%s\" has been deleted!"
-
-#: ../app/controllers/admin/content_terms_of_use.php:204
-#, php-format
-msgid ""
-"Fehler beim Löschen von Eintrag mit ID \"%s\"! Alle Dateien, welche diesen "
-"Eintrag verwendeten, nutzen nun den Eintrag mit ID \"%s\"!"
-msgstr ""
-"Error while deleting entry with ID \"%s\"! All files which used this entry "
-"now use the entry with ID \"%s\"!"
-
-#: ../app/controllers/admin/content_terms_of_use.php:210
-#, php-format
-msgid "Fehler beim Löschen von Eintrag mit ID \"%s\"!"
-msgstr "Error while deleting entry with ID \"%s\"!"
-
-#: ../app/controllers/admin/holidays.php:29
-msgid "Verwaltung von Ferien"
-msgstr "Vacation period management"
-
-#: ../app/controllers/admin/holidays.php:69
-msgid "Ferien anlegen"
-msgstr "Create new vacation period"
-
-#: ../app/controllers/admin/holidays.php:69
-#: ../app/views/admin/holidays/edit.php:5
-msgid "Ferien bearbeiten"
-msgstr "Edit vacation period"
-
-#: ../app/controllers/admin/holidays.php:81
-msgid "Bitte geben Sie einen Namen ein."
-msgstr "Please enter a name."
-
-#: ../app/controllers/admin/holidays.php:84
-msgid "Bitte geben Sie einen Ferienbeginn ein."
-msgstr "Please enter the starting date of the vacation period."
-
-#: ../app/controllers/admin/holidays.php:87
-msgid "Bitte geben Sie ein Ferienende ein."
-msgstr "Please enter the final date of the vacation period."
-
-#: ../app/controllers/admin/holidays.php:90
-msgid "Das Ferienende liegt vor dem Beginn."
-msgstr "The end of the vacation period is prior to its beginning."
-
-#: ../app/controllers/admin/holidays.php:95
-msgid "Die Ferien konnten nicht gespeichert werden."
-msgstr "Vacation period could not be saved."
-
-#: ../app/controllers/admin/holidays.php:97
-msgid "Die Ferien wurden erfolgreich gespeichert."
-msgstr "Vacation period successfully saved."
-
-#: ../app/controllers/admin/holidays.php:120
-msgid "Die Ferien wurden erfolgreich gelöscht"
-msgstr "Vacation period successfully deleted"
-
-#: ../app/controllers/admin/holidays.php:166
-#: ../app/views/admin/holidays/index.php:32
-msgid "Neue Ferien anlegen"
-msgstr "Create new vacation period"
-
-#: ../app/controllers/admin/courses.php:88
-msgid "Feld gesetzt"
-msgstr "Field set"
-
-#: ../app/controllers/admin/courses.php:228
-msgid "Diese Seitenleiste konfigurieren"
-msgstr "Configure this sidebar"
-
-#: ../app/controllers/admin/courses.php:251
-msgid "Als Excel exportieren"
-msgstr "Export to Excel"
-
-#: ../app/controllers/admin/courses.php:314
-msgid "Verwaltung von Veranstaltungen und Einrichtungen"
-msgstr "Course and institute management"
-
-#: ../app/controllers/admin/courses.php:381
-msgid "keine Zusatzangaben"
-msgstr "no additional information"
-
-#: ../app/controllers/admin/courses.php:583
-msgid "Spalten zum Export auswählen"
-msgstr ""
-
-#: ../app/controllers/admin/courses.php:674
-#: ../app/controllers/admin/courses.php:817
-msgid "Die gewünschten Änderungen wurden erfolgreich durchgeführt!"
-msgstr "The requested changes have been saved successfully!"
-
-#: ../app/controllers/admin/courses.php:678
-#: ../app/controllers/admin/courses.php:769
-#: ../app/controllers/admin/courses.php:821
-msgid "Bei den folgenden Veranstaltungen ist ein Fehler aufgetreten"
-msgstr "There has been an error with the following courses"
-
-#: ../app/controllers/admin/courses.php:709
-msgid "Veranstaltung wurde entsperrt"
-msgstr "Course unlocked"
-
-#: ../app/controllers/admin/courses.php:716
-#, php-format
-msgid "Veranstaltung wurde gesperrt, set_id: %s"
-msgstr "Course locked, set_id: %s"
-
-#: ../app/controllers/admin/courses.php:726
-msgid "Die gewünschten Änderungen wurden ausgeführt!"
-msgstr "The requested changes have been made!"
-
-#: ../app/controllers/admin/courses.php:765
-msgid ""
-"Die Sichtbarkeit wurde bei den gewünschten Veranstatungen erfolgreich "
-"geändert!"
-msgstr "The visibility of the selected courses was changed!"
-
-#: ../app/controllers/admin/courses.php:859
-msgid "Der Aktionsbereich wurde erfolgreich übernommen!"
-msgstr "Range set!"
-
-#: ../app/controllers/admin/courses.php:982
-#: ../app/views/course/management/lock.php:12
-#: ../app/views/admin/user/edit.php:554 ../app/views/admin/user/edit.php:558
-#: ../app/views/institute/basicdata/index.php:98
-msgid "Sperrebene"
-msgstr "Locking level"
-
-#: ../app/controllers/admin/courses.php:1022
-msgid "Gesperrte Veranstaltungen"
-msgstr "Locked courses"
-
-#: ../app/controllers/admin/courses.php:1095
-#: ../app/views/resources/room_request/overview.php:24
-#: ../app/views/web_migrate/history.php:29
-#: ../app/views/web_migrate/index.php:38
-#: ../app/views/admin/courseplanning/nonconform.php:7
-#: ../app/views/admin/courses/courses.php:96
-#: ../app/views/tour/admin_details.php:130
-#: ../app/views/my_courses/_exportcourse.php:39
-#: ../app/views/room_management/overview/index.php:102
-#: ../app/views/calendar/single/seminar_events.php:29
-msgid "Nr."
-msgstr "No."
-
-#: ../app/controllers/admin/courses.php:1098
-#: ../app/views/admin/courses/courses.php:119
-msgid "Raum/Zeit"
-msgstr "Room/Time"
-
-#: ../app/controllers/admin/courses.php:1103
-msgid "Personen auf Warteliste"
-msgstr "Participants on waiting list"
-
-#: ../app/controllers/admin/courses.php:1104
-#: ../app/views/admin/courses/_course.php:121
-msgid "Vorläufige Anmeldungen"
-msgstr "Provisional registrations"
-
-#: ../app/controllers/admin/courses.php:1106
-#: ../app/views/course/archive/confirm.php:13
-msgid "Letzte Aktivität"
-msgstr "Last activity"
-
-#: ../app/controllers/admin/courses.php:1315
-#: ../app/views/admin/courses/sidebar.php:47
-msgid "Darstellungsfilter"
-msgstr "View filter"
-
-#: ../app/controllers/admin/courses.php:1430
-msgid "Aktionsbereichauswahl"
-msgstr "Range selection"
-
-#: ../app/controllers/admin/courses.php:1543
-#: ../app/views/admin/courses/sidebar.php:10
-msgid "Freie Suche"
-msgstr "Free search"
-
-#: ../app/controllers/admin/sem_classes.php:29
-msgid "Veranstaltungskategorie wurde gelöscht."
-msgstr "Course category was deleted."
-
-#: ../app/controllers/admin/sem_classes.php:40
-#, php-format
-msgid "Es existiert bereits eine Veranstaltungskategorie mit dem Namen \"%s\""
-msgstr "There already exists a course category with the name \"%s\""
-
-#: ../app/controllers/admin/sem_classes.php:58
-msgid "Veranstaltungskategorie wurde erstellt."
-msgstr "Course category was created."
-
-#: ../app/controllers/admin/sem_classes.php:68
-msgid "Kern-Übersicht"
-msgstr "Core-Overview"
-
-#: ../app/controllers/admin/sem_classes.php:69
-msgid "Kern-Verwaltung"
-msgstr "Core-Administration"
-
-#: ../app/controllers/admin/sem_classes.php:70
-msgid "Kern-Forum"
-msgstr "Core-Forum"
-
-#: ../app/controllers/admin/sem_classes.php:71
-msgid "Studiengruppen-Verwaltung"
-msgstr "Study group-Administration"
-
-#: ../app/controllers/admin/sem_classes.php:72
-msgid "Kern-Dateibereich"
-msgstr "Core-Document folders"
-
-#: ../app/controllers/admin/sem_classes.php:73
-msgid "Kern-Termine"
-msgstr "Core dates"
-
-#: ../app/controllers/admin/sem_classes.php:74
-msgid "Kern-Teilnehmende"
-msgstr "Core participants"
-
-#: ../app/controllers/admin/sem_classes.php:75
-msgid "Kern-Studiengruppen-Teilnehmende"
-msgstr "Core - study groups - participants"
-
-#: ../app/controllers/admin/sem_classes.php:76
-msgid "Kern-Freie-Informationen"
-msgstr "Core-Free Information"
-
-#: ../app/controllers/admin/sem_classes.php:77
-msgid "Kern-Wiki"
-msgstr "Core-Wiki"
-
-#: ../app/controllers/admin/sem_classes.php:78
-msgid "Kern-Kalender"
-msgstr "Core-Calendar"
-
-#: ../app/controllers/admin/sem_classes.php:79
-msgid "Kern-Lernmodule"
-msgstr "Core-Learning modules"
-
-#: ../app/controllers/admin/sem_classes.php:129
-msgid "Beachten Sie, dass es noch keine Veranstaltungstypen gibt!"
-msgstr "Please note: No course categories specified yet!"
-
-#: ../app/controllers/admin/sem_classes.php:132
-msgid "Zurück zur Übersichtsseite."
-msgstr "Back to overview."
-
-#: ../app/controllers/admin/sem_classes.php:132
-msgid "Änderungen wurden gespeichert. <a href=\""
-msgstr "Changes saved. <a href=\""
-
-#: ../app/controllers/admin/plugin.php:58
-#: ../app/controllers/admin/plugin.php:500
-msgid "Pluginverwaltung"
-msgstr "Plug-in management"
-
-#: ../app/controllers/admin/plugin.php:63
-msgid "Weitere Plugins installieren"
-msgstr "Install more plug-ins"
-
-#: ../app/controllers/admin/plugin.php:68
-msgid "Vorhandene Plugins registrieren"
-msgstr "Register existing plugins"
-
-#: ../app/controllers/admin/plugin.php:100
-msgid "Informationen über Plugin-Updates sind nicht verfügbar."
-msgstr "No information about plug-in updates available."
-
-#: ../app/controllers/admin/plugin.php:186
-#, php-format
-msgid "Plugin \"%s\" hat die Aktivierung verhindert"
-msgstr "Plug-in \"%s\" prevented activation"
-
-#: ../app/controllers/admin/plugin.php:187
-#, php-format
-msgid "Plugin \"%s\" hat die Deaktivierung verhindert"
-msgstr "Plug-in \"%s\" prevented deactivation"
-
-#: ../app/controllers/admin/plugin.php:193
-#, php-format
-msgid "Plugin \"%s\" wurde aktiviert"
-msgstr "Plug-in \"%s\" has been activated"
-
-#: ../app/controllers/admin/plugin.php:194
-#, php-format
-msgid "Plugin \"%s\" wurde deaktiviert"
-msgstr "Plug-in \"%s\" has been deactivated"
-
-#: ../app/controllers/admin/plugin.php:202
-#, php-format
-msgid "Die Position von Plugin \"%s\" wurde verändert."
-msgstr "The position of plug-in \"%s\" has been changed."
-
-#: ../app/controllers/admin/plugin.php:217
-msgid "Die folgenden Änderungen wurden durchgeführt:"
-msgstr "The following changes have been made:"
-
-#: ../app/controllers/admin/plugin.php:238
-#: ../app/views/admin/plugin/search.php:7
-msgid "Empfohlene Plugins"
-msgstr "Recommended plug-ins"
-
-#: ../app/controllers/admin/plugin.php:238
-msgid ""
-"In der Liste \"Empfohlene Plugins\" finden Sie von anderen Betreibern "
-"empfohlene Plugins."
-msgstr ""
-"The list \"Recommended plug-ins\" provides plug-ins recommended by other "
-"users."
-
-#: ../app/controllers/admin/plugin.php:239
-msgid "Upload"
-msgstr "Upload"
-
-#: ../app/controllers/admin/plugin.php:239
-msgid ""
-"Alternativ können Plugins und Plugin-Updates auch als ZIP-Datei hochgeladen "
-"werden."
-msgstr ""
-"Alternatively, plug-ins and plug-in updates can be uploaded as ZIP archive."
-
-#: ../app/controllers/admin/plugin.php:276
-msgid "Plugins suchen"
-msgstr "Search plug-ins"
-
-#: ../app/controllers/admin/plugin.php:277
-msgid "Pluginname"
-msgstr "Plug-in name"
-
-#: ../app/controllers/admin/plugin.php:280
-msgid "Verweise"
-msgstr "Links"
-
-#: ../app/controllers/admin/plugin.php:282
-msgid "Alle Plugins im Plugin-Marktplatz"
-msgstr "All plug-ins in the plug-in market place"
-
-#: ../app/controllers/admin/plugin.php:334
-#: ../app/controllers/admin/plugin.php:577
-msgid "Das Plugin wurde erfolgreich installiert."
-msgstr "Plug-in successfully installed."
-
-#: ../app/controllers/admin/plugin.php:358
-#, php-format
-msgid "Wollen Sie wirklich \"%s\" deinstallieren?"
-msgstr "Are you sure you want to uninstall \"%s\"?"
-
-#: ../app/controllers/admin/plugin.php:384
-#, php-format
-msgid "Das Plugin \"%s\" wurde deinstalliert."
-msgstr "The plug-in \"%s\" has been uninstalled."
-
-#: ../app/controllers/admin/plugin.php:463
-msgid "Beim Update ist ein Fehler aufgetreten:"
-msgid_plural "Beim Update sind Fehler aufgetreten:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/plugin.php:469
-msgid "Update erfolgreich installiert."
-msgstr "Update installed."
-
-#: ../app/controllers/admin/plugin.php:483
-#, php-format
-msgid "Details von %s"
-msgstr "Details of %s"
-
-#: ../app/controllers/admin/plugin.php:498
-msgid ""
-"Wählen Sie die Einrichtungen, in deren Veranstaltungen das Plugin "
-"automatisch aktiviert sein soll."
-msgstr "Choose institutions for automatic course plug-in activation."
-
-#: ../app/controllers/admin/plugin.php:526
-msgid "Die Default-Aktivierung wurde ausgeschaltet."
-msgstr "Default activation deactivated."
-
-#: ../app/controllers/admin/plugin.php:529
-msgid ""
-"Für die ausgewählte Einrichtung wurde das Plugin standardmäßig aktiviert."
-msgid_plural ""
-"Für die ausgewählten Einrichtungen wurde das Plugin standardmäßig aktiviert."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/admin/plugin.php:551
-msgid "Die Migration wurde durchgeführt."
-msgstr "The migration has been carried out."
-
-#: ../app/controllers/admin/plugin.php:553
-msgid "Die Migration konnte nicht durchgeführt werden."
-msgstr "The migration cannot be carried out."
-
-#: ../app/controllers/admin/plugin.php:608
-msgid "Daten gespeichert."
-msgstr "Data saved."
-
-#: ../app/controllers/admin/plugin.php:610
-msgid "Unten können Sie den Security Token jetzt heraus kopieren."
-msgstr "The security token can be copied from the field below."
-
-#: ../app/controllers/admin/plugin.php:616
-#, php-format
-msgid "Automatisches Update für %s"
-msgstr "Automatic update for %s"
-
-#: ../app/controllers/admin/plugin.php:618
-#: ../app/views/admin/plugin/index.php:159
-msgid "Plugin von URL installieren"
-msgstr "Install plug-in from URL"
-
-#: ../app/controllers/online.php:71
-msgid "Nur Kontakte in der Übersicht der aktiven Benutzer anzeigen"
-msgstr "Show only your contacts in the overview of active users"
-
-#: ../app/controllers/online.php:77
-msgid "Kontaktgruppen bei der Darstellung berücksichtigen"
-msgstr "Show contact groups"
-
-#: ../app/controllers/online.php:105
-msgid "Der Benutzer wurde zu Ihren Kontakten hinzugefügt."
-msgstr "The user was added to your contacts."
-
-#: ../app/controllers/online.php:110
-msgid "Der Benutzer gehört nicht mehr zu Ihren Kontakten."
-msgstr "The user was removed from your contacts."
-
-#: ../app/controllers/online.php:125
-msgid "Es ist ein Fehler aufgetreten. Bitte versuchen Sie die Aktion erneut."
-msgstr "An error occurred. Please repeat the last action."
-
-#: ../app/controllers/online.php:213
-msgid "Kontakte ohne Gruppenzuordnung"
-msgstr "Contacts without group allocation"
-
-#: ../app/controllers/public_courses.php:32
-msgid "Öffentliche Veranstaltungen sind nicht aktiviert."
-msgstr "Public courses are not activated."
-
-#: ../app/controllers/public_courses.php:37
-msgid "Öffentliche Veranstaltungen"
-msgstr "Public courses"
-
-#: ../app/controllers/public_courses.php:191
-#, php-format
-msgid "%s Umfrage(n)"
-msgstr "%s survey(s)"
-
-#: ../app/controllers/elearning.php:97
-msgid ""
-"Es traten Probleme bei der Anbindung einzelner Lermodule auf. Bitte wenden "
-"Sie sich an Ihren Systemadministrator."
-msgstr ""
-"A problem occurred in accessing some learning modules. Please contact your "
-"system administrator."
-
-#: ../app/controllers/elearning.php:147
-#, php-format
-msgid "Zur %s Startseite"
-msgstr "To the start page of %s"
-
-#: ../app/controllers/institute/overview.php:90
-msgid "Einrichtung abonnieren"
-msgstr "Subscribe to institute"
-
-#: ../app/controllers/institute/overview.php:95
-msgid "Austragen aus der Einrichtung"
-msgstr "Unsubscribe from institution"
-
-#: ../app/controllers/institute/overview.php:112
-msgid "Sie haben die Einrichtung abonniert."
-msgstr "Subscribed to this institution."
-
-#: ../app/controllers/institute/overview.php:127
-msgid "Sie haben sich aus der Einrichtung ausgetragen."
-msgstr "Subscription removed."
-
-#: ../app/controllers/institute/members.php:25
-msgid "Liste der Mitarbeiter/-innen"
-msgstr "Staff list"
-
-#: ../app/controllers/institute/members.php:43
-msgid "Sie müssen zunächst eine Einrichtung auswählen"
-msgstr "You need to select an institute first"
-
-#: ../app/controllers/institute/members.php:57
-msgid "Verwaltung von Mitarbeiter/-innen"
-msgstr "Manage staff"
-
-#: ../app/controllers/institute/members.php:180
-msgid "keiner Funktion zugeordnet"
-msgstr "no function assigned to"
-
-#: ../app/controllers/institute/members.php:305
-msgid "Die Person ist bereits in der Einrichtung eingetragen."
-msgstr "The person is already assigned to the institute."
-
-#: ../app/controllers/institute/members.php:306
-#: ../app/controllers/institute/members.php:394
-msgid ""
-"Um Rechte etc. zu ändern folgen Sie dem Link zu den persönlichen Angaben der "
-"Person!"
-msgstr ""
-"To change permissions etc. follow the link to the personal details of the "
-"person!"
-
-#: ../app/controllers/institute/members.php:314
-msgid "ROOTs können nicht berufen werden!"
-msgstr "ROOTs cannot be appointed!"
-
-#: ../app/controllers/institute/members.php:322
-msgid "Admins und Lehrende"
-msgstr "Admins and lecturers"
-
-#: ../app/controllers/institute/members.php:325
-msgid "Admins"
-msgstr "Admins"
-
-#: ../app/controllers/institute/members.php:361
-#, php-format
-msgid "Es wurden ingesamt %u Mails an die %s der Einrichtung geschickt."
-msgstr "Totally %u mails have been sent to the %s of the institute."
-
-#: ../app/controllers/institute/members.php:372
-#, php-format
-msgid "%s wurde als \"admin\" in die Einrichtung aufgenommen."
-msgstr "%s has been added to the institute with status \"admin\"."
-
-#: ../app/controllers/institute/members.php:375
-msgid "Sie haben keine Berechtigung einen Admin zu berufen!"
-msgstr "You do not have the permission to appoint an administrator!"
-
-#: ../app/controllers/institute/members.php:393
-#, php-format
-msgid "%s wurde als \"%s\" in die Einrichtung aufgenommen."
-msgstr "%s has been accepted as \"%s\" in the institute."
-
-#: ../app/controllers/institute/members.php:397
-#, php-format
-msgid "%s konnte nicht in die Einrichtung aufgenommen werden!"
-msgstr "%s cannot be added to the institute!"
-
-#: ../app/controllers/institute/members.php:442
-msgid "Sie können sich nicht selbst aus der Einrichtung austragen."
-msgstr "You cannot sign out yourself from the institute."
-
-#: ../app/controllers/institute/members.php:448
-#, php-format
-msgid "%s wurde von der Liste des Personals gelöscht."
-msgstr "%s has been removed from the staff list."
-
-#: ../app/controllers/institute/members.php:474
-#: ../app/controllers/institute/members.php:549
-#: ../app/views/course/basicdata/view.php:106
-#: ../app/views/course/basicdata/view.php:243
-msgid "Funktion"
-msgstr "Function"
-
-#: ../app/controllers/institute/members.php:512
-msgid "Erweitert"
-msgstr "Extended"
-
-#: ../app/controllers/institute/members.php:534
-msgid "Stud.IP Rundmail"
-msgstr "Stud.IP group mail"
-
-#: ../app/controllers/institute/members.php:564
-msgid "Nach Funktion gruppiert"
-msgstr "Grouped by function"
-
-#: ../app/controllers/institute/members.php:569
-msgid "Alphabetische Liste"
-msgstr "Alphabetic list"
-
-#: ../app/controllers/institute/members.php:602
-#: ../app/controllers/institute/members.php:604
-msgid "Personen in die Einrichtung eintragen"
-msgstr "Add users to the institute"
-
-#: ../app/controllers/institute/members.php:607
-msgid "Nur bei Zuordnung eines Admins:"
-msgstr "The following applies to appointing an administrator, only:"
-
-#: ../app/controllers/institute/members.php:608
-msgid "Benachrichtigung der Admins"
-msgstr "Notification of admins"
-
-#: ../app/controllers/institute/members.php:609
-msgid "Benachrichtigung der Lehrenden"
-msgstr "Notification of lecturers"
-
-#: ../app/controllers/institute/basicdata.php:73
-msgid "Sind Sie sicher, dass Sie diese Einrichtung löschen wollen?"
-msgstr "Are you sure to delete this institute?"
-
-#: ../app/controllers/institute/basicdata.php:138
-msgid "Löschen nicht möglich."
-msgstr "Unable to delete."
-
-#: ../app/controllers/institute/basicdata.php:141
-#, php-format
-msgid "Es ist eine Veranstaltung zugeordnet."
-msgid_plural "Es sind %u Veranstaltungen zugeordnet."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/institute/basicdata.php:148
-#, php-format
-msgid "Es ist eine Einrichtung zugeordnet."
-msgid_plural "Es sind %u Einrichtungen zugeordnet."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/institute/basicdata.php:197
-msgid "Bitte geben Sie eine Bezeichnung für die Einrichtung ein!"
-msgstr "Please enter a description of the institute!"
-
-#: ../app/controllers/institute/basicdata.php:206
-msgid "Sie haben nicht die Berechtigung, neue Fakultäten zu erstellen"
-msgstr "You do not have the permission to create new faculties"
-
-#: ../app/controllers/institute/basicdata.php:212
-msgid "Sie haben nicht die Berechtigung, um neue Einrichtungen zu erstellen!"
-msgstr "You do not have the permission to create new institutes!"
-
-#: ../app/controllers/institute/basicdata.php:219
-#, php-format
-msgid ""
-"Die Einrichtung \"%s\" existiert bereits innerhalb der angegebenen Fakultät!"
-msgstr "The institute %s already exists within the specified faculty!"
-
-#: ../app/controllers/institute/basicdata.php:227
-#, php-format
-msgid "Die Fakultät \"%s\" existiert bereits!"
-msgstr "The faculty %s already exists!"
-
-#: ../app/controllers/institute/basicdata.php:242
-msgid "Sie haben nicht die Berechtigung diese Einrichtung zu verändern!"
-msgstr "You are not allowed to change the permissions of this institutes!"
-
-#: ../app/controllers/institute/basicdata.php:268
-msgid "ungültige Eingaben (s.u.) wurden nicht gespeichert"
-msgstr "invalid entries (see below) have not been saved"
-
-#: ../app/controllers/institute/basicdata.php:275
-msgid "Die Einrichtung konnte nicht angelegt werden."
-msgstr "The institute could not be created."
-
-#: ../app/controllers/institute/basicdata.php:292
-#, php-format
-msgid "Die Einrichtung \"%s\" wurde erfolgreich angelegt."
-msgstr "Institute \"%s\" created."
-
-#: ../app/controllers/institute/basicdata.php:299
-#, php-format
-msgid "Die Änderung der Einrichtung \"%s\" wurde erfolgreich gespeichert."
-msgstr "The changes on the institute \"%s\" have been saved successfully."
-
-#: ../app/controllers/institute/basicdata.php:322
-msgid "Ihr Ticket ist abgelaufen. Versuchen Sie die letzte Aktion erneut."
-msgstr "Your ticket has expired. Please repeat the last action."
-
-#: ../app/controllers/institute/basicdata.php:328
-#: ../app/controllers/institute/basicdata.php:355
-msgid "Sie haben nicht die Berechtigung Fakultäten zu löschen!"
-msgstr "You do not have the permission to delete faculties!"
-
-#: ../app/controllers/institute/basicdata.php:340
-msgid ""
-"Diese Einrichtung kann nicht gelöscht werden, da noch Veranstaltungen an "
-"dieser Einrichtung existieren!"
-msgstr ""
-"Because there still are courses at this institute, it cannot be deleted!"
-
-#: ../app/controllers/institute/basicdata.php:348
-msgid ""
-"Diese Einrichtung kann nicht gelöscht werden, da sie den Status Fakultät hat "
-"und noch andere Einrichtungen zugeordnet sind!"
-msgstr ""
-"This institute cannot be deleted, since it has the status of a faculty and "
-"other institutes are assigned to it!"
-
-#: ../app/controllers/institute/basicdata.php:366
-msgid "Die Einrichtung konnte nicht gelöscht werden."
-msgstr "The institute could not be deleted."
-
-#: ../app/controllers/institute/basicdata.php:379
-#, php-format
-msgid "%u Mitarbeiter gelöscht."
-msgstr "%u staff members removed."
-
-#: ../app/controllers/institute/basicdata.php:384
-#, php-format
-msgid "%u Beteiligungen an Veranstaltungen gelöscht"
-msgstr "%u course participations deleted"
-
-#: ../app/controllers/institute/basicdata.php:397
-msgid "(in Stud.IP gelöscht)"
-msgstr "(deleted in Stud.IP)"
-
-#: ../app/controllers/institute/basicdata.php:401
-#, php-format
-msgid "%u Bereiche im Einrichtungsbaum angepasst."
-msgstr "%u areas in the institute tree have been changed."
-
-#: ../app/controllers/institute/basicdata.php:421
-#, php-format
-msgid "%u Wikiseiten gelöscht."
-msgstr "%u wiki pages deleted."
-
-#: ../app/controllers/institute/basicdata.php:428
-#, php-format
-msgid "%u Konfigurationsdateien für externe Seiten gelöscht."
-msgstr "%u configuration files for external pages deleted."
-
-#: ../app/controllers/institute/basicdata.php:436
-#, php-format
-msgid "Einträge in %s gelöscht."
-msgstr "Entries in %s deleted."
-
-#: ../app/controllers/institute/basicdata.php:464
-msgid "Alle Dokumente gelöscht."
-msgstr "All documents deleted."
-
-#: ../app/controllers/institute/basicdata.php:471
-#, php-format
-msgid "Die Einrichtung \"%s\" wurde gelöscht!"
-msgstr "Institute \"%s\" deleted!"
-
-#: ../app/controllers/institute/calendar.php:45
-msgid "Terminkalender - Tagesansicht"
-msgstr "My personal calendar - day view"
-
-#: ../app/controllers/institute/calendar.php:80
-msgid "Terminkalender - Wochenansicht"
-msgstr "My personal calendar - week view"
-
-#: ../app/controllers/institute/files.php:28
-msgid "Es wurde keine passende Einrichtung gefunden."
-msgstr "No matching institute found."
-
-#: ../app/controllers/file.php:69 ../app/controllers/file.php:263
-#: ../app/controllers/file.php:358 ../app/controllers/file.php:513
-#: ../app/controllers/file.php:605 ../app/controllers/file.php:655
-#: ../app/controllers/file.php:1164 ../app/controllers/file.php:1605
-#: ../app/controllers/file.php:1670 ../app/controllers/file.php:1775
-#: ../app/controllers/file.php:1851 ../app/controllers/file.php:1886
-#: ../app/controllers/files.php:685 ../app/controllers/files.php:705
-msgid "Plugin existiert nicht."
-msgstr "Plug-in doesn't exist."
-
-#: ../app/controllers/file.php:97 ../app/controllers/wysiwyg.php:134
-msgid "Beim Hochladen ist ein Fehler aufgetreten "
-msgstr "Error during upload"
-
-#: ../app/controllers/file.php:109
-#, php-format
-msgid "Es wurden %s Dateien hochgeladen"
-msgstr "%s files have been uploaded"
-
-#: ../app/controllers/file.php:402
-#, php-format
-msgid ""
-"Die Dateiendung \"%1$s\" wird entfernt. Soll die Datei trotzdem gespeichert "
-"werden?"
-msgstr ""
-"The file extension \"%1$s\" will be removed. Do you still want to save the "
-"file?"
-
-#: ../app/controllers/file.php:409
-#, php-format
-msgid ""
-"Die Dateiendung wird auf \"%1$s\" gesetzt. Soll die Datei trotzdem "
-"gespeichert werden?"
-msgstr ""
-"The file extension will be set to \"%1$s\". Do you still want to save the "
-"file?"
-
-#: ../app/controllers/file.php:416
-#, php-format
-msgid ""
-"Die Dateiendung wird von \"%1$s\" auf \"%2$s\" geändert. Soll die Datei "
-"trotzdem gespeichert werden?"
-msgstr ""
-"The file extension will be changed from \"%1$s\" to \"%2$s\". Do you still "
-"want to save the file?"
-
-#: ../app/controllers/file.php:451
-#, php-format
-msgid "Fehler beim Ändern der Datei %s!"
-msgstr "Error while changing file %s!"
-
-#: ../app/controllers/file.php:554
-msgid "Es wurde keine neue Dateiversion gewählt!"
-msgstr "No new file version has been selected!"
-
-#: ../app/controllers/file.php:560
-#, php-format
-msgid "Fehler beim Aktualisieren der Datei %s!"
-msgstr "Error while updating file %s!"
-
-#: ../app/controllers/file.php:568
-#, php-format
-msgid "Datei %s wurde aktualisiert!"
-msgstr "File %s has been updated!"
-
-#: ../app/controllers/file.php:579
-msgid "Ziel wählen"
-msgstr "Choose target"
-
-#: ../app/controllers/file.php:697
-msgid "Zielordner von Veranstaltung wählen"
-msgstr "Select course target folder"
-
-#: ../app/controllers/file.php:743
-msgid "Zielordner von Einrichtung wählen"
-msgstr "Select institute target folder"
-
-#: ../app/controllers/file.php:789
-msgid "Zielordner wählen"
-msgstr "Select target folder"
-
-#: ../app/controllers/file.php:890
-msgid "Suche im Bibliothekskatalog"
-msgstr "Search in library catalogue"
-
-#: ../app/controllers/file.php:937
-msgid "Es muss mindestens ein Suchkriterium angegeben werden!"
-msgstr "At least one search criteria has to be entered!"
-
-#: ../app/controllers/file.php:1054
-msgid "Bibliothekseintrag erstellen"
-msgstr "Create library entry"
-
-#: ../app/controllers/file.php:1072
-msgid "Es wurde kein Suchergebnis ausgewählt!"
-msgstr "No search results have been selected!"
-
-#: ../app/controllers/file.php:1174
-msgid "Datei nicht gefunden."
-msgstr "File not found."
-
-#: ../app/controllers/file.php:1182
-msgid "Datei wurde gelöscht."
-msgstr "File has been deleted."
-
-#: ../app/controllers/file.php:1184
-msgid "Datei konnte nicht gelöscht werden."
-msgstr "File could not be deleted."
-
-#: ../app/controllers/file.php:1364
-#, php-format
-msgid "Dokument hinzufügen von %s"
-msgstr "Add document from %s"
-
-#: ../app/controllers/file.php:1477
-#, php-format
-msgid "Die Datei \"%s\" ist ungültig!"
-msgstr "The file \"%s\" is invalid!"
-
-#: ../app/controllers/file.php:1489
-#, php-format
-msgid "Fehler beim Speichern der Datei \"%s\"!"
-msgstr "Error while saving the file \"%s\"!"
-
-#: ../app/controllers/file.php:1540
-#, php-format
-msgid "Die Lizenz der Datei \"%s\" wurde geändert."
-msgstr "The license of the file \"%s\" has been changed."
-
-#: ../app/controllers/file.php:1546
-msgid "Die Lizenzen der folgenden Dateien wurden geändert:"
-msgstr "The licenses of the following files have been changed:"
-
-#: ../app/controllers/file.php:1554
-#, php-format
-msgid "Die Lizenz der Datei \"%s\" konnte nicht geändert werden!"
-msgstr "The license of the file \"%s\" could not be changed!"
-
-#: ../app/controllers/file.php:1559
-msgid "Die Lizenzen der folgenden Dateien konnten nicht geändert werden:"
-msgstr "The licenses of the following files could not be changed:"
-
-#: ../app/controllers/file.php:1573
-msgid "Datei wurde bearbeitet."
-msgstr "File has been edited."
-
-#: ../app/controllers/file.php:1585
-#, php-format
-msgid "Lizenz auswählen"
-msgid_plural "Lizenz auswählen: %s Dateien"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/file.php:1653
-msgid "Die angegebene URL ist ungültig."
-msgstr "The specified URL is invalid."
-
-#: ../app/controllers/file.php:1715
-msgid "Der gewünschte Ordnertyp ist ungültig!"
-msgstr "The requested folder type is invalid!"
-
-#: ../app/controllers/file.php:1746
-msgid "Der Ordner wurde angelegt."
-msgstr "The folder has been created."
-
-#: ../app/controllers/file.php:1751
-msgid "Fehler beim Anlegen des Ordners!"
-msgstr "Error while creating the folder!"
-
-#: ../app/controllers/file.php:1819
-msgid "Unbekannter Ordnertyp!"
-msgstr "Unknown folder type!"
-
-#: ../app/controllers/file.php:1830
-msgid "Der Ordner wurde bearbeitet."
-msgstr "Folder has been updated."
-
-#: ../app/controllers/file.php:1865
-msgid "Ordner wurde gelöscht!"
-msgstr "Folder has been deleted!"
-
-#: ../app/controllers/file.php:1867
-msgid "Ordner konnte nicht gelöscht werden!"
-msgstr "The folder could not be deleted!"
-
-#: ../app/controllers/file.php:2033
-msgid "Der Ordner wurde gelöscht!"
-msgstr "The folder has been deleted!"
-
-#: ../app/controllers/file.php:2035
-msgid "Die Datei wurde gelöscht!"
-msgstr "The file has been deleted!"
-
-#: ../app/controllers/file.php:2038
-#, php-format
-msgid "Es wurden %s Ordner und %s Dateien gelöscht!"
-msgstr "%s folders and %s files have been deleted!"
-
-#: ../app/controllers/file.php:2040
-#, php-format
-msgid "Es wurden  %s Dateien gelöscht!"
-msgstr "%s files have been deleted!"
-
-#: ../app/controllers/file.php:2042
-#, php-format
-msgid "Es wurden %s Ordner gelöscht!"
-msgstr "%s folders have been deleted!"
-
-#: ../app/controllers/start.php:54
-msgid "Sprungmarken"
-msgstr "Jump marks"
-
-#: ../app/controllers/start.php:67 ../app/controllers/start.php:128
-msgid "Widgets hinzufügen"
-msgstr "Add widgets"
-
-#: ../app/controllers/start.php:74
-msgid "Standard wiederherstellen"
-msgstr "Restore default"
-
-#: ../app/controllers/start.php:83
-msgid "Standard-Startseite bearbeiten:"
-msgstr "Edit default start page:"
-
-#: ../app/controllers/start.php:93
-msgid "Sie haben noch nicht auf Ihre Bestätigungsmail geantwortet."
-msgstr "You did not activate your account via the confirmation mail."
-
-#: ../app/controllers/start.php:94
-msgid ""
-"Bitte holen Sie dies nach, um Stud.IP Funktionen wie das Belegen von "
-"Veranstaltungen nutzen zu können."
-msgstr ""
-"Please do so now because otherwise you may not take advantage of Stud.IP "
-"features such as enrolment in courses."
-
-#: ../app/controllers/start.php:95
-#, php-format
-msgid "Bei Problemen wenden Sie sich an: %s"
-msgstr "In case of any problems, please contact: %s"
-
-#: ../app/controllers/start.php:99
-msgid "Bestätigungsmail erneut verschicken"
-msgstr "Send confirmation mail again"
-
-#: ../app/controllers/start.php:106 ../app/views/start/edit_mail_address.php:5
-msgid "E-Mail-Adresse ändern"
-msgstr "Change e-mail address"
-
-#: ../app/controllers/start.php:115
-#, php-format
-msgid "Haben Sie die Bestätigungsmail an Ihre Adresse \"%s\" nicht erhalten?"
-msgstr "Did you get the confirmation mail sent to \"%s\"?"
-
-#: ../app/controllers/start.php:163
-#, php-format
-msgid "Standard-Startseite für \"%s\" bearbeiten"
-msgstr "Edit start page for \"%s\""
-
-#: ../app/controllers/start.php:210
-#, php-format
-msgid "Widget \"%s\" wurde entfernt."
-msgstr "Widget \"%s\" has been removed."
-
-#: ../app/controllers/start.php:216
-#, php-format
-msgid "Widget \"%s\" konnte nicht entfernt werden."
-msgstr "Widget \"%s\" could not be removed."
-
-#: ../app/controllers/start.php:225
-#, php-format
-msgid ""
-"Sind Sie sicher, dass Sie das Widget \"%s\" von der Startseite entfernen "
-"möchten?"
-msgstr ""
-"Are you sure that you want to remove widget \"%s\" from the start page?"
-
-#: ../app/controllers/start.php:251
-msgid "Die Widgets wurden auf die Standardkonfiguration zurückgesetzt."
-msgstr "The widgets have been reset to their default state."
-
-#: ../app/controllers/start.php:281
-msgid "Die Bestätigungsmail wurde erneut verschickt."
-msgstr "Confirmation mail has been send again."
-
-#: ../app/controllers/start.php:330
-msgid ""
-"Ihre Mailadresse wurde geändert und die Bestätigungsmail erneut verschickt."
-msgstr "Mail address changed, confirmation mail sent again."
-
-#: ../app/controllers/room_management/overview.php:206
-msgid "Übersicht über alle Standorte"
-msgstr "Location overview"
-
-#: ../app/controllers/room_management/overview.php:216
-msgid "Neuer Standort"
-msgstr "New location"
-
-#: ../app/controllers/room_management/overview.php:226
-msgid "Es wurden keine Standorte gefunden!"
-msgstr "No locations found!"
-
-#: ../app/controllers/room_management/overview.php:240
-msgid "Übersicht über alle Gebäude"
-msgstr "Building overview"
-
-#: ../app/controllers/room_management/overview.php:249
-msgid "Neues Gebäude"
-msgstr "New building"
-
-#: ../app/controllers/room_management/overview.php:262
-msgid "Es wurden keine Gebäude gefunden!"
-msgstr "No buildings found!"
-
-#: ../app/controllers/room_management/overview.php:305
-#, php-format
-msgid "Die Raumgruppe für das Gebäude %s wurde angelegt!"
-msgid_plural "Die Raumgruppen für die Gebäude %s wurden angelegt!"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/room_management/overview.php:319
-msgid "Übersicht über alle Räume"
-msgstr "Room overview"
-
-#: ../app/controllers/room_management/overview.php:431
-msgid "Es wurden keine Räume gefunden!"
-msgstr "No rooms found!"
-
-#: ../app/controllers/room_management/overview.php:455
-msgid "Es sind keine öffentlich zugänglichen Raumpläne vorhanden!"
-msgstr "No public room booking plans available!"
-
-#: ../app/controllers/room_management/overview.php:472
-msgid "Strukturansicht"
-msgstr "Structure view"
-
-#: ../app/controllers/room_management/overview.php:481
-msgid "Es sind keine Standorte in Stud.IP vorhanden!"
-msgstr "No locations exist in Stud.IP!"
-
-#: ../app/controllers/room_management/planning.php:176
-#, php-format
-msgid "Der Belegungsplan des Raumes %s ist für Sie nicht zugänglich!"
-msgstr "The booking plan of the room %s is inaccessible for you!"
-
-#: ../app/controllers/room_management/planning.php:300
-#: ../app/controllers/room_management/planning.php:554
-#: ../app/controllers/room_management/planning.php:590
-msgid "Buchungen kopieren"
-msgstr "Copy bookings"
-
-#: ../app/controllers/room_management/planning.php:574
-#: ../app/views/room_management/planning/semester_plan.php:3
-#: ../app/views/room_management/planning/index.php:3
-msgid "Es wurde keine Raumgruppe ausgewählt!"
-msgstr "No room group has been selected!"
-
-#: ../app/controllers/room_management/planning.php:639
-msgid "Es wurde kein Semester ausgewählt!"
-msgstr "No semester has been selected!"
-
-#: ../app/controllers/room_management/planning.php:658
-msgid "Die gewählte Semesterwoche liegt außerhalb des gewählten Semesters!"
-msgstr ""
-
-#: ../app/controllers/room_management/planning.php:675
-msgid "Es wurde ein Raum ausgewählt, der nicht Teil der Raumgruppe ist!"
-msgstr "A room has been selected which is not a part of the room group!"
-
-#: ../app/controllers/room_management/planning.php:682
-msgid ""
-"Es wurde ein Raum ausgewählt, an dem die Berechtigungen zum Kopieren von "
-"Buchungen nicht ausreichend sind!"
-msgstr ""
-"A room has been selected where the permissions to copy a booking are "
-"insufficient!"
-
-#: ../app/controllers/room_management/planning.php:702
-msgid ""
-"Es sind keine Semester vorhanden, die nach dem ausgewählten Semester starten!"
-msgstr ""
-"There are no semesters available that start after the selected semester!"
-
-#: ../app/controllers/room_management/planning.php:763
-#, php-format
-msgid ""
-"Die gewählten Räume haben im Semester %s keine einfachen Buchungen mit "
-"Wiederholungen!"
-msgstr ""
-"The selected rooms don't have simple bookings with repetitions in the "
-"semester %s!"
-
-#: ../app/controllers/room_management/planning.php:778
-msgid "Es wurde kein Zielsemester ausgewählt!"
-msgstr "No target semester has been selected!"
-
-#: ../app/controllers/room_management/planning.php:786
-msgid "Das gewählte Zielsemester wurde nicht gefunden!"
-msgstr "The selected target semester could not be found!"
-
-#: ../app/controllers/room_management/planning.php:794
-msgid "Es wurden keine Buchungen ausgewählt!"
-msgstr "No bookings have been selected!"
-
-#: ../app/controllers/room_management/planning.php:803
-msgid "Es wurde eine Buchung ausgewählt, die nicht Teil der Raumgruppe ist!"
-msgstr "A booking has been selected which is not part of the room group!"
-
-#: ../app/controllers/room_management/planning.php:820
-msgid "Die gewählten Buchungen wurden nicht in der Datenbank gefunden!"
-msgstr "The selected booking could not be found in the database!"
-
-#: ../app/controllers/room_management/planning.php:864
-#, php-format
-msgid "Eine Buchung (%1$s) liegt außerhalb des Semesters %2$s!"
-msgstr "A booking (%1$s) is outside of the semester %2$s!"
-
-#: ../app/controllers/room_management/planning.php:984
-msgid "Buchungsnummer"
-msgstr ""
-
-#: ../app/controllers/room_management/planning.php:985
-#: ../app/views/room_management/planning/copy_bookings.php:184
-msgid "Buchungszeitraum"
-msgstr "Booking time range"
-
-#: ../app/controllers/room_management/planning.php:987
-#: ../app/views/room_management/planning/copy_bookings.php:186
-msgid "Verfügbar"
-msgstr "Available"
-
-#: ../app/controllers/room_management/planning.php:1008
-#, php-format
-msgid "Zu kopierende Buchungen am %s"
-msgstr ""
-
-#: ../app/controllers/room_management/planning.php:1018
-msgid ""
-"Weniger als die Hälfte der Buchungen können in das Zielsemester kopiert "
-"werden!"
-msgstr ""
-
-#: ../app/controllers/room_management/planning.php:1042
-msgid "Alle Buchungen wurden kopiert!"
-msgstr "All bookings copied!"
-
-#: ../app/controllers/room_management/planning.php:1047
-msgid "Es konnten nicht alle Buchungen kopiert werden!"
-msgstr "Not all bookings could be copied!"
-
-#: ../app/controllers/room_management/planning.php:1052
-msgid "Keine der ausgewählten Buchungen konnte kopiert werden!"
-msgstr "None of the selected bookings could be copied!"
-
-#: ../app/controllers/room_management/planning.php:1163
-msgid "Export für Word"
-msgstr "Export for Word"
-
-#: ../app/controllers/room_management/planning.php:1174
-#: ../app/views/questionnaire/_overview_questionnaire.php:118
-msgid "Export als CSV"
-msgstr "Export as .csv"
-
-#: ../app/controllers/room_management/planning.php:1282
-#: ../app/controllers/room_management/planning.php:1294
-#: ../app/controllers/room_management/planning.php:1320
-#: ../app/controllers/room_management/planning.php:1337
-#: ../app/controllers/room_management/planning.php:1357
-#, php-format
-msgid "%1$s - %2$s Uhr"
-msgstr "%1$s - %2$s"
-
-#: ../app/controllers/room_management/planning.php:1396
-#, php-format
-msgid "Buchungen, KW %d.doc"
-msgstr "Bookings, week %d.doc"
-
-#: ../app/controllers/room_management/planning.php:1407
-#: ../app/views/room_management/planning/booking_comments.php:8
-#, php-format
-msgid "%d. Kalenderwoche"
-msgstr "%d. week"
-
-#: ../app/controllers/calendar/contentbox.php:61
-#, php-format
-msgid "Termine für die Zeit vom %s bis zum %s"
-msgstr "Dates in the period from %s to %s"
-
-#: ../app/controllers/calendar/contentbox.php:83
-#: ../app/views/course/timesrooms/editStack.php:77
-#: ../app/views/course/timesrooms/editDate.php:117
-#: ../app/views/course/timesrooms/createSingleDate.php:65
-#: ../app/views/course/block_appointments/index.php:123
-#: ../app/views/course/dates/details.php:27
-#: ../app/views/course/dates/details-edit.php:43
-msgid "Durchführende Lehrende"
-msgstr "Responsible lecturers"
-
-#: ../app/controllers/calendar/contentbox.php:86
-#: ../app/views/course/timesrooms/editStack.php:95
-#: ../app/views/course/timesrooms/editDate.php:171
-#: ../app/views/course/timesrooms/createSingleDate.php:84
-#: ../app/views/course/dates/details.php:44
-#: ../app/views/course/dates/details-edit.php:97
-msgid "Beteiligte Gruppen"
-msgstr "Participating groups"
-
-#: ../app/controllers/calendar/contentbox.php:130
-#: ../app/views/oer/mymaterial/statistics.php:8
-#: ../app/views/resources/room_planning/_sidebar_date_selection.php:10
-msgid "Heute"
-msgstr "Today"
-
-#: ../app/controllers/calendar/calendar.php:74
-#: ../app/views/consultation/overview/ungrouped.php:20
-#: ../app/views/consultation/admin/ungrouped.php:34
-#: ../app/views/consultation/admin/ungrouped.php:149
-#: ../app/views/admin/cronjobs/schedules/periodic-schedule.php:29
-#: ../app/views/admin/cronjobs/schedules/edit.php:141
-#: ../app/views/calendar/single/_day_table.php:9
-#: ../app/views/calendar/single/week.php:120
-#: ../app/views/calendar/single/week.php:133
-#: ../app/views/calendar/schedule/_entry_schedule.php:11
-#: ../app/views/library_file/_add_edit_form.php:36
-msgid "Tag"
-msgstr "Day"
-
-#: ../app/controllers/calendar/calendar.php:76
-#: ../app/views/calendar/group/month.php:39
-#: ../app/views/calendar/single/month.php:45
-msgid "Woche"
-msgstr "Week"
-
-#: ../app/controllers/calendar/calendar.php:78
-#: ../app/views/admin/cronjobs/schedules/periodic-schedule.php:33
-#: ../app/views/admin/cronjobs/schedules/edit.php:144
-#: ../app/views/library_file/_add_edit_form.php:33
-msgid "Monat"
-msgstr "Month"
-
-#: ../app/controllers/calendar/calendar.php:80
-#: ../app/views/materialien/files/add_dokument.php:9
-#: ../app/views/materialien/files/details.php:4
-#: ../app/views/library_file/_add_edit_form.php:30
-#: ../app/views/file/add_from_library.php:27
-msgid "Jahr"
-msgstr "Year"
-
-#: ../app/controllers/calendar/calendar.php:110
-msgid "Abgelehnte Termine anzeigen"
-msgstr "Show rejected dates"
-
-#: ../app/controllers/calendar/calendar.php:158
-#: ../app/controllers/calendar/group.php:88
-msgid "Neuer Termin"
-msgstr "New date"
-
-#: ../app/controllers/calendar/calendar.php:180
-#: ../app/controllers/calendar/group.php:101
-#: ../app/views/course/timesrooms/_cycleRow.php:113
-#: ../app/views/course/dates/_date_row.php:55
-#: ../app/views/course/dates/details-edit.php:5
-#: ../app/views/course/dates/details-edit.php:146
-#: ../app/views/calendar/single/edit.php:17
-#: ../app/views/calendar/single/_day_cell.php:25
-#: ../app/views/calendar/single/month.php:78
-#: ../app/views/calendar/single/month.php:101
-msgid "Termin bearbeiten"
-msgstr "Edit date"
-
-#: ../app/controllers/calendar/calendar.php:248
-#: ../app/controllers/calendar/calendar.php:250
-#: ../app/controllers/calendar/group.php:125
-#: ../app/controllers/calendar/group.php:127
-msgid "Mehrere Teilnehmende hinzufügen"
-msgstr "Add several participants"
-
-#: ../app/controllers/calendar/calendar.php:281
-#: ../app/controllers/calendar/group.php:160
-msgid "Der Termin wurde nicht geändert."
-msgstr "The date has not been changed."
-
-#: ../app/controllers/calendar/calendar.php:285
-#: ../app/controllers/calendar/group.php:164
-msgid "Der Termin wurde gespeichert."
-msgstr "The date has been saved."
-
-#: ../app/controllers/calendar/calendar.php:326
-msgid "Der Teilnahmestatus wurde nicht geändert."
-msgstr "Status not changed."
-
-#: ../app/controllers/calendar/calendar.php:334
-#, php-format
-msgid "%s hat den Terminvorschlag für \"%s\" am %s von %s auf %s geändert."
-msgstr "%s has changed the suggested date for \"%s\" on the %s from %s to %s."
-
-#: ../app/controllers/calendar/calendar.php:340
-#, php-format
-msgid "Der Termin wird akzeptiert, aber %s nimmt nicht selbst am Termin teil."
-msgstr "The date has been accepted, but %s will not be participating."
-
-#: ../app/controllers/calendar/calendar.php:343
-#, php-format
-msgid "Terminvorschlag am %s von %s %s"
-msgstr "Date suggestion on %s from %s %s"
-
-#: ../app/controllers/calendar/calendar.php:396
-msgid "Der Teilnahmestatus wurde gespeichert."
-msgstr "Status saved."
-
-#: ../app/controllers/calendar/calendar.php:488
-msgid "Die Start- und/oder Endzeit ist ungültig!"
-msgstr "The start and/or end time is invalid!"
-
-#: ../app/controllers/calendar/calendar.php:492
-msgid "Die Startzeit muss vor der Endzeit liegen."
-msgstr "The start time must be earlier than the end time."
-
-#: ../app/controllers/calendar/calendar.php:511
-msgid "Es muss eine Zusammenfassung angegeben werden."
-msgstr "A summary is required."
-
-#: ../app/controllers/calendar/calendar.php:588
-msgid "Bitte Eingaben korrigieren"
-msgstr "Please correct your input"
-
-#: ../app/controllers/calendar/schedule.php:200
-msgid ""
-"Eintrag konnte nicht gespeichert werden, da die Start- und/oder Endzeit "
-"ungültig ist!"
-msgstr "The entry could not be saved since the start or end time is invalid!"
-
-#: ../app/controllers/calendar/schedule.php:465
-msgid "Die Endzeit darf nicht vor der Startzeit liegen!"
-msgstr "The end time may not be earlier than the start time!"
-
-#: ../app/controllers/calendar/group.php:19
-#: ../app/controllers/calendar/single.php:31
-msgid "Termin anlegen"
-msgstr "Create date"
-
-#: ../app/controllers/calendar/group.php:23
-#: ../app/controllers/calendar/single.php:39
-#: ../app/controllers/calendar/single.php:358
-msgid "Kalender freigeben"
-msgstr "Share calendar"
-
-#: ../app/controllers/calendar/group.php:34
-#, php-format
-msgid "Terminkalender der Gruppe \"%s\""
-msgstr "Calendar of group \"%s\""
-
-#: ../app/controllers/calendar/group.php:191
-#: ../app/controllers/calendar/single.php:87
-#: ../app/views/settings/calendar.php:5 ../app/views/calendar/group/day.php:11
-#: ../app/views/calendar/single/day.php:3
-msgid "Tagesansicht"
-msgstr "Day view"
-
-#: ../app/controllers/calendar/group.php:252
-#: ../app/controllers/calendar/single.php:111
-#: ../app/views/settings/calendar.php:6 ../app/views/settings/calendar.php:51
-#: ../app/views/calendar/group/week.php:9
-#: ../app/views/calendar/single/week.php:3
-msgid "Wochenansicht"
-msgstr "Week view "
-
-#: ../app/controllers/calendar/group.php:291
-msgid "Monatssicht"
-msgstr "Monthly view"
-
-#: ../app/controllers/calendar/group.php:323
-#: ../app/controllers/calendar/single.php:149
-#: ../app/views/settings/calendar.php:8
-msgid "Jahresansicht"
-msgstr "Year view"
-
-#: ../app/controllers/calendar/single.php:50
-msgid "Veranstaltungstermine"
-msgstr "Course dates"
-
-#: ../app/controllers/calendar/single.php:60
-#: ../app/controllers/calendar/single.php:234
-#: ../app/views/calendar/single/export_calendar.php:7
-#: ../app/views/calendar/single/export_calendar.php:12
-#: ../app/views/calendar/single/export_calendar.php:46
-#, php-format
-msgid "Termine exportieren"
-msgstr "Export dates"
-
-#: ../app/controllers/calendar/single.php:66
-#: ../app/controllers/calendar/single.php:260
-#: ../app/views/calendar/single/import.php:3
-#: ../app/views/calendar/single/import.php:10
-#: ../app/views/calendar/single/import.php:25
-#, php-format
-msgid "Termine importieren"
-msgstr "Import dates"
-
-#: ../app/controllers/calendar/single.php:72
-#: ../app/views/calendar/single/share.php:7
-msgid "Kalender teilen"
-msgstr "Share calendar"
-
-#: ../app/controllers/calendar/single.php:133
-#: ../app/views/settings/calendar.php:7
-msgid "Monatsansicht"
-msgstr "Month view"
-
-#: ../app/controllers/calendar/single.php:158
-msgid "Termindaten"
-msgstr "Date data"
-
-#: ../app/controllers/calendar/single.php:173
-msgid "Der Termin wurde gelöscht."
-msgstr "The date has been deleted."
-
-#: ../app/controllers/calendar/single.php:188
-#, php-format
-msgid "Termin am %x aus Serie gelöscht."
-msgstr "Date on %x deleted from sequence."
-
-#: ../app/controllers/calendar/single.php:275
-msgid "Die Adresse, unter der Ihre Termine abrufbar sind, wurde gelöscht"
-msgstr "The address on which your dates are accessible has been deleted"
-
-#: ../app/controllers/calendar/single.php:281
-msgid "Eine Adresse, unter der Ihre Termine abrufbar sind, wurde erstellt."
-msgstr "An address on which your dates are accessible has been created."
-
-#: ../app/controllers/calendar/single.php:290
-msgid "Exportadresse für Ihre Termine"
-msgstr "Export address for your dates"
-
-#: ../app/controllers/calendar/single.php:291
-msgid ""
-"Diese Email wurde vom Stud.IP-System verschickt. Sie können auf diese "
-"Nachricht nicht antworten."
-msgstr ""
-"This e-mail has been generated by the Stud.IP. Do not reply to this message."
-
-#: ../app/controllers/calendar/single.php:292
-msgid "Über diese Adresse erreichen Sie den Export für Ihre Termine:"
-msgstr "Via this address you will get to the export for your dates:"
-
-#: ../app/controllers/calendar/single.php:296
-msgid "Die Adresse wurde verschickt!"
-msgstr "The address was sent!"
-
-#: ../app/controllers/calendar/single.php:298
-msgid "Bitte geben Sie eine gültige Email-Adresse an."
-msgstr "Please specify a valid e-mail address."
-
-#: ../app/controllers/calendar/single.php:303
-msgid "Kalender teilen oder einbetten"
-msgstr "Share or embed calendar"
-
-#: ../app/controllers/calendar/single.php:351
-msgid "Personhinzufügen"
-msgstr "Add person"
-
-#: ../app/controllers/calendar/single.php:391
-#, php-format
-msgid ""
-"Eine Person wurde mit der Berechtigung zum Lesen des Kalenders hinzugefügt."
-msgid_plural ""
-"%s Personen wurden mit der Berechtigung zum Lesen des Kalenders hinzugefügt."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/calendar/single.php:422
-#, php-format
-msgid "Person %s wurde entfernt."
-msgstr "%s removed."
-
-#: ../app/controllers/calendar/single.php:457
-#, php-format
-msgid "Einer Person wurde die Berechtigungen entzogen."
-msgid_plural "%s Personen wurden die Berechtigungen entzogen."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/calendar/single.php:461
-#, php-format
-msgid "Eine Person wurde auf leseberechtigt gesetzt."
-msgid_plural "%s Personen wurden auf leseberechtigt gesetzt."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/calendar/single.php:465
-#, php-format
-msgid "Eine Person wurde auf schreibberechtigt gesetzt."
-msgid_plural "%s Personen wurden auf schreibberechtigt gesetzt."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/calendar/single.php:469
-#, php-format
-msgid "Die Berechtigungen von einer Person wurde geändert."
-msgid_plural "Die Berechtigungen von %s Personen wurden geändert."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/calendar/single.php:476
-msgid "Es wurden keine Berechtigungen geändert."
-msgstr "No access settings have been changed."
-
-#: ../app/controllers/calendar/single.php:533
-msgid "Die Auswahl der Veranstaltungen wurde gespeichert."
-msgstr "Selection saved."
-
-#: ../app/controllers/calendar/single.php:549
-msgid "Mein persönlicher Terminkalender"
-msgstr "My personal calendar"
-
-#: ../app/controllers/calendar/single.php:552
-#, php-format
-msgid "Terminkalender von %s"
-msgstr "Calendar of %s"
-
-#: ../app/controllers/calendar/single.php:558
-msgid "schreibberechtigt"
-msgstr "write access"
-
-#: ../app/controllers/calendar/single.php:560
-msgid "leseberechtigt"
-msgstr "read access"
-
-#: ../app/controllers/calendar/instschedule.php:50
-#, php-format
-msgid ""
-"Kann Einrichtungskalendar nicht anzeigen!Es wurde eine ungültige Instituts-"
-"Id übergeben (%s)!"
-msgstr ""
-"Institution calender cannot be displayed! An invalid institution-ID (%s) has "
-"been assigned!"
-
-#: ../app/controllers/calendar/instschedule.php:97
-msgid ""
-"Der Stundenplan zeigt die regelmäßigen Veranstaltungen dieser Einrichtung."
-msgstr "The timetable shows all periodic courses of this institution."
-
-#: ../app/controllers/calendar/instschedule.php:100
-#: ../app/views/calendar/schedule/index.php:60
-msgid "klein"
-msgstr "small"
-
-#: ../app/controllers/calendar/instschedule.php:101
-#: ../app/views/calendar/schedule/index.php:61
-msgid "mittel"
-msgstr "middle"
-
-#: ../app/controllers/calendar/instschedule.php:102
-#: ../app/views/calendar/schedule/index.php:62
-msgid "groß"
-msgstr "large"
-
-#: ../app/controllers/calendar/instschedule.php:103
-msgid "extra groß"
-msgstr "extra large"
-
-#: ../app/controllers/calendar/instschedule.php:116
-#: ../app/views/calendar/instschedule/index.php:11
-#: ../app/views/calendar/schedule/index.php:25
-msgid "Darstellung ändern"
-msgstr "Change view"
-
-#: ../app/controllers/calendar/instschedule.php:125
-msgid "Untergeordnete Institute ignorieren"
-msgstr "Ignore subordinate institutes"
-
-#: ../app/controllers/calendar/instschedule.php:130
-msgid "Untergeordnete Institute einbeziehen"
-msgstr "Include subordinate institutes"
-
-#: ../app/controllers/terms.php:42
-#, php-format
-msgid ""
-"Sie haben den Nutzungsbedingungen nicht zugestimmt und können damit das "
-"System nicht nutzen. Bitte kontaktieren Sie Ihren Support über folgende "
-"Adresse, um die nächsten Schritte abzustimmen: %s"
-msgstr ""
-"You have not agreed to the terms of use and therefore cannot use the system. "
-"Please contact your support at the following address to agree on the next "
-"steps: %s"
-
-#: ../app/controllers/files_dashboard.php:68
-msgid "Dokumentensuche"
-msgstr "Document search"
-
-#: ../app/controllers/wysiwyg.php:112
-msgid "WYSIWYG-Ordner für hochgeladene Dateien konnte nicht erstellt werden!"
-msgstr "WYSIWYG folder for uploaded files could not be created!"
-
-#: ../app/controllers/wysiwyg.php:279
-msgid "Nur die HTTP-Methoden GET und PUT sind erlaubt."
-msgstr "Only the HTTP methods GET and PUT are allowed."
-
-#: ../app/controllers/wysiwyg.php:326 ../app/controllers/wysiwyg.php:431
-msgid "Die Benutzereinstellungen enthalten keine Untergruppen."
-msgstr "The user settings don't contain sub-groups."
-
-#: ../app/controllers/wysiwyg.php:340
-msgid "Die Anfrage enthält ungültige Werte."
-msgstr "The request contains invalid values."
-
-#: ../app/controllers/wysiwyg.php:363
-msgid "Die angeforderte Gruppe von Einstellungen existiert nicht."
-msgstr "The requested group of settings does not exist."
-
-#: ../app/controllers/wysiwyg.php:398
-msgid "Die globalen Einstellungen enthalten keine Untergruppen."
-msgstr "Global settings contain no sub groups."
-
-#: ../app/controllers/wysiwyg.php:438
-msgid "Zugriff verweigert."
-msgstr "Access denied."
-
-#: ../app/controllers/profilemodules.php:43
-#, php-format
-msgid "Daten von: %s %s (%s), Status: %s"
-msgstr "Details of: %s %s (%s), status: %s"
-
-#: ../app/controllers/profilemodules.php:173
-msgid "Alle Inhaltselemente aktivieren"
-msgstr "Activate all content elements"
-
-#: ../app/controllers/profilemodules.php:178
-msgid "Alle Inhaltselemente deaktivieren"
-msgstr "Deactivate all content elements"
-
-#: ../app/controllers/profilemodules.php:219
-#, php-format
-msgid "\"%s\" wurde aktiviert."
-msgstr "\"%s\" has been activated."
-
-#: ../app/controllers/profilemodules.php:219
-#, php-format
-msgid "\"%s\" wurde deaktiviert."
-msgstr "\"%s\" has been deactivated."
-
-#: ../app/controllers/profilemodules.php:228
-msgid "Ihre Änderungen konnten nicht gespeichert werden."
-msgstr "The changes could not be saved."
-
-#: ../app/controllers/profilemodules.php:243
-msgid "Ihre Änderungen wurden gespeichert."
-msgstr "Your changes have been saved."
-
-#: ../app/controllers/help_content.php:47
-msgid "Verwalten von Hilfe-Texten"
-msgstr "Help text management"
-
-#: ../app/controllers/help_content.php:67
-#, php-format
-msgid "Angezeigt werden Hilfe-Texte zum Suchbegriff \"%s\"."
-msgstr "Help texts for the search criteria \"%s\" are displayed."
-
-#: ../app/controllers/help_content.php:86
-msgid "Versions-Konflikte der Hilfe-Texte"
-msgstr "Help text version conflicts"
-
-#: ../app/controllers/help_content.php:131
-#: ../app/controllers/help_content.php:311
-msgid "Hilfe-Text erstellen"
-msgstr "Create help text"
-
-#: ../app/controllers/help_content.php:154
-#: ../app/views/help_content/admin_overview.php:41
-msgid "Hilfe-Text bearbeiten"
-msgstr "Edit help text"
-
-#: ../app/controllers/help_content.php:219
-msgid "Der Hilfe-Text wurde erfolgreich gespeichert!"
-msgstr "The help text has been saved!"
-
-#: ../app/controllers/help_content.php:255
-#, php-format
-msgid "%u Änderung wurde durchgeführt"
-msgid_plural "%u Änderungen wurden durchgeführt"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/controllers/help_content.php:272
-#: ../app/views/help_content/admin_overview.php:44
-msgid "Hilfe-Text löschen"
-msgstr "Delete help text"
-
-#: ../app/controllers/help_content.php:277
-#, php-format
-msgid "Der Hilfe-Text zur Route \"%s\" wurde gelöscht."
-msgstr "The help text for the route \"%s\" has been deleted."
-
-#: ../app/controllers/contact.php:62
-#, php-format
-msgid "%s Kontakte wurden hinzugefügt."
-msgstr "%s contacts have been added."
-
-#: ../app/controllers/contact.php:103
-msgid "Kontakte hinzufügen"
-msgstr "Add contacts"
-
-#: ../app/controllers/contact.php:107 ../app/controllers/contact.php:247
-msgid "Alle Kontakte"
-msgstr "All contacts"
-
-#: ../app/controllers/contact.php:111
-#, php-format
-msgid "Kontakte zu %s hinzufügen"
-msgstr "Add contact to %s"
-
-#: ../app/controllers/contact.php:138
-msgid "Kontakt(e) wurde(n) entfernt."
-msgstr "Contacts have been removed."
-
-#: ../app/controllers/contact.php:139
-msgid "Kontakt(e) wurde(n) aus der Gruppe entfernt."
-msgstr "Contacts have been removed from the group."
-
-#: ../app/controllers/contact.php:148
-msgid "Der Kontakt wurde aus der Gruppe entfernt."
-msgstr "Contact was removed from group."
-
-#: ../app/controllers/contact.php:227
-msgid "Nachricht an alle"
-msgstr "Message to all"
-
-#: ../app/controllers/contact.php:232
-msgid "E-Mail an alle"
-msgstr "E-mail to all"
-
-#: ../app/controllers/contact.php:237
-msgid "Alle vCards herunterladen"
-msgstr "Download all vCards"
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:35
-msgid "Verwaltung der Lehrveranstaltungsgruppen"
-msgstr "Course group management"
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:88
-msgid "Auf diesen Seiten können Sie Lehrveranstaltungsgruppen verwalten."
-msgstr "Manage course groups here."
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:89
-msgid ""
-"Eine Lehrveranstaltungsgruppe kann aufgeklappt werden, um die "
-"Lehrveranstaltungen anzuzeigen, die dieser Gruppe bereits zugeordnet wurden."
-msgstr "A course group can be opened to show assigned courses."
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:99
-msgid "Lehrveranstaltungsgruppen mit Zuordnungen exportieren"
-msgstr "Export course groups with assignments"
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:105
-#: ../app/views/module/module/details.php:39
-#: ../app/views/module/module/details.php:40
-#: ../app/views/module/module/details.php:43
-msgid "Neue LV-Gruppe anlegen"
-msgstr "Add new course group"
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:117
-#: ../app/controllers/lvgruppen/lvgruppen.php:218
-msgid "Unbekannte LV-Gruppe"
-msgstr "Unknown course groups"
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:181
-#, php-format
-msgid "Die Lehrveranstaltungsgruppe \"%s\" wurde gespeichert."
-msgstr "Course group \"%s\" has been saved."
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:222
-msgid ""
-"Die Lehrveranstaltungsgruppe kann nicht gelöscht werden (unbekannte "
-"Lehrveranstaltungsgruppe)."
-msgstr "The course group cannot be deleted (unknown course group)."
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:224
-msgid ""
-"Die Lehrveranstaltungsgruppe kann nicht gelöscht werden, da sie mit "
-"Veranstaltungen oder Modulteilen verknüpft ist."
-msgstr ""
-"Cannot delete course group. It is still assigned to courses or modules."
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:230
-#, php-format
-msgid "Die Lehrveranstaltungsgruppe \"%s\" wurde gelöscht."
-msgstr "Course group \"%s\" deleted."
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:342
-msgid "Verwendung in Semester:"
-msgstr "Use in semester:"
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:351
-#: ../app/controllers/lvgruppen/lvgruppen.php:378
-msgid "Nicht verwendet"
-msgstr "Not in use"
-
-#: ../app/controllers/lvgruppen/lvgruppen.php:368
-msgid "Verwendet von Fachbereich:"
-msgstr "In use at faculty:"
-
-#: ../app/controllers/userfilter/field.php:28
-#: ../app/views/tour/admin_details.php:92
-msgid "Bedingung"
-msgstr "Condition"
-
-#: ../app/controllers/userfilter/filter.php:30
-msgid "Auswahlbedingungen"
-msgstr "Conditions"
-
-#: ../app/controllers/smileys.php:30 ../app/controllers/smileys.php:62
-msgid "Smiley-Übersicht"
-msgstr "Smiley overview"
-
-#: ../app/controllers/smileys.php:62
-#, php-format
-msgid "%s Smileys vorhanden"
-msgstr "%s smileys available"
-
-#: ../app/controllers/smileys.php:82
-msgid "Der Smiley wurde zu Ihren Favoriten hinzugefügt."
-msgstr "The smiley was added to your favourites."
-
-#: ../app/controllers/smileys.php:83
-msgid "Der Smiley gehört nicht mehr zu Ihren Favoriten."
-msgstr "The smiley does no longer belong to your favourites."
-
-#: ../app/controllers/smileys.php:87
-msgid ""
-"Maximale Favoritenzahl erreicht. Vielleicht sollten Sie mal ausmisten? :)"
-msgstr ""
-"You reached your maximum number of favourites. Maybe you should clean out? :)"
-
-#: ../app/controllers/studiengaenge/versionen.php:199
-#: ../app/views/admin/overlapping/selection.php:4
-#: ../app/views/calendar/single/manage_access.php:14
-#: ../app/views/calendar/single/seminar_events.php:40
-msgid "Auswahl"
-msgstr "Selection"
-
-#: ../app/controllers/studiengaenge/versionen.php:207
-msgid "Versionen des gewählten Studiengangteils"
-msgstr "Versions of the selected component"
-
-#: ../app/controllers/studiengaenge/versionen.php:211
-#: ../app/controllers/studiengaenge/studiengaenge.php:515
-#: ../app/controllers/studiengaenge/studiengaenge.php:541
-#: ../app/controllers/studiengaenge/studiengaenge.php:588
-msgid "Unbekannter Studiengangteil"
-msgstr "Unknown partial course of study"
-
-#: ../app/controllers/studiengaenge/versionen.php:277
-msgid "Auswahl zurücksetzen"
-msgstr "Clear selection"
-
-#: ../app/controllers/studiengaenge/versionen.php:285
-#: ../app/views/studiengaenge/studiengangteile/index.php:46
-#: ../app/views/studiengaenge/studiengangteile/index.php:47
-msgid "Neue Version anlegen"
-msgstr "Create new version"
-
-#: ../app/controllers/studiengaenge/versionen.php:295
-msgid ""
-"Auf dieser Seite können Sie die Versionen der Studiengangteile verwalten."
-msgstr "Manage versions of partial courses of study here."
-
-#: ../app/controllers/studiengaenge/fachbereiche.php:19
-msgid "Studiengänge gruppiert nach Fachbereichen"
-msgstr "Fields of study grouped by departments"
-
-#: ../app/controllers/studiengaenge/faecher.php:14
-msgid ""
-"Verwaltung der Studiengangteile - Studiengangteile gruppiert nach Fächern"
-msgstr "Partial of course of study management - grouped by field of study"
-
-#: ../app/controllers/studiengaenge/faecher.php:44
-#: ../app/controllers/studiengaenge/studiengangteile.php:52
-#: ../app/views/studiengaenge/studiengangteile/index.php:109
-msgid "Es wurden noch keine Studiengangteile angelegt."
-msgstr "No fields of study."
-
-#: ../app/controllers/studiengaenge/fachbereichestgteile.php:14
-msgid "Studiengangteile gruppiert nach Fachbereichen"
-msgstr "Fields of study grouped by departments"
-
-#: ../app/controllers/studiengaenge/stgteilbezeichnungen.php:19
-msgid "Alle Studiengangteil-Bezeichnungen"
-msgstr "Description of partial course of study"
-
-#: ../app/controllers/studiengaenge/stgteilbezeichnungen.php:31
-msgid "Neue Studiengangteil-Bezeichnung anlegen"
-msgstr "Add new description for partial of course of study"
-
-#: ../app/controllers/studiengaenge/stgteilbezeichnungen.php:35
-#, php-format
-msgid "Studiengangteil-Bezeichnung: %s bearbeiten"
-msgstr "Description of component of course of study: edit %s"
-
-#: ../app/controllers/studiengaenge/stgteilbezeichnungen.php:45
-msgid "Log-Einträge dieser Studiengangteil-Bezeichnung"
-msgstr "Log events for description of partial of course of study"
-
-#: ../app/controllers/studiengaenge/stgteilbezeichnungen.php:63
-#, php-format
-msgid "Die Studiengangteil-Bezeichnung \"%s\" wurde geändert."
-msgstr "Description of partial of course of study \"%s\" changed."
-
-#: ../app/controllers/studiengaenge/stgteilbezeichnungen.php:95
-#, php-format
-msgid ""
-"Löschen nicht möglich! Die Studiengangteil-Bezeichnung \"%s\" wird bereits "
-"verwendet!"
-msgstr "Cannot delete this item. \"%s\" is already in use!"
-
-#: ../app/controllers/studiengaenge/stgteilbezeichnungen.php:104
-#, php-format
-msgid "Studiengangteil-Bezeichnung \"%s\" gelöscht!"
-msgstr "Description of partial of course of study \"%s\" deleted!"
-
-#: ../app/controllers/studiengaenge/stgteilbezeichnungen.php:165
-msgid "Neue Studiengangteil-Bezeichnung"
-msgstr "New component description"
-
-#: ../app/controllers/studiengaenge/stgteilbezeichnungen.php:174
-msgid ""
-"Sie können die Reihenfolge der Studiengangteil-Bezeichnungen durch Ziehen "
-"der Zeilen ändern."
-msgstr "Drag & Drop rows to change the order."
-
-#: ../app/controllers/studiengaenge/stgteilbezeichnungen.php:175
-msgid ""
-"Eine Studiengangteil-Bezeichnung kann aufgeklappt werden, um Details "
-"anzuzeigen."
-msgstr "Open item for detailed information."
-
-#: ../app/controllers/studiengaenge/kategorien.php:19
-#: ../app/controllers/studiengaenge/studiengaenge.php:314
-msgid "Studiengänge gruppiert nach Abschluss-Kategorien"
-msgstr "Fields of study grouped by categories of degrees"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:31
-#: ../app/controllers/studiengaenge/informationen.php:19
-msgid "Verwaltung der Studiengänge"
-msgstr "Course of study management"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:73
-msgid "Es wurden keine Studiengänge gefunden."
-msgstr "No course of study found."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:75
-msgid "Es wurden noch keine Studiengänge angelegt."
-msgstr "No course of study yet."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:96
-msgid "Auf diesen Seiten können Sie die Studiengänge verwalten."
-msgstr "Manage courses of study here."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:99
-msgid ""
-"Studiengänge bestehen aus einem Abschluss und einem oder mehreren "
-"Studiengangteilen."
-msgstr ""
-"A course of study is a combination of a degree and one or more partial "
-"courses of study."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:119
-#: ../app/controllers/studiengaenge/studiengaenge.php:1036
-msgid "Neuen Studiengang anlegen"
-msgstr "Add new course of study"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:121
-msgid "Studiengangsbezeichnung suchen"
-msgstr "Search description of course of study"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:130
-#, php-format
-msgid "Studiengang: %s bearbeiten"
-msgstr "Course of study: edit %s"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:133
-#, php-format
-msgid "Der Studiengang \"%s\" wurde geändert."
-msgstr "Changes to course of study \"%s\" changed."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:244
-msgid "Die Reihenfolge der Studiengangteile können Sie durch ziehen ändern."
-msgstr "Drag & drop to change order."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:252
-msgid "Download des Studienganges"
-msgstr "Download course of study"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:257
-msgid "Studiengang als PDF"
-msgstr "Course of study as PDF"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:262
-#: ../app/views/studiengaenge/studiengaenge/studiengaenge.php:45
-#: ../app/views/studiengaenge/studiengaenge/studiengaenge.php:46
-msgid "Studiengang genehmigen"
-msgstr "Approve course of study"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:269
-msgid "Log-Einträge dieses Studienganges"
-msgstr "Log events for this course of study"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:299
-#, php-format
-msgid "Studiengang \"%s\" gelöscht!"
-msgstr "Course of study \"%s\" deleted!"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:352
-#: ../app/controllers/studiengaenge/studiengaenge.php:381
-#: ../app/controllers/studiengaenge/studiengangteile.php:282
-#: ../app/controllers/studiengaenge/studiengangteile.php:287
-#: ../app/views/shared/contacts/select_range.php:10
-#: ../app/views/shared/contacts/add_ranges_to_contact.php:9
-#: ../app/views/studiengaenge/studiengaenge/studiengangteile.php:63
-msgid "Studiengangteil suchen"
-msgstr "Search course of study"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:434
-#: ../app/controllers/studiengaenge/studiengaenge.php:496
-#, php-format
-msgid ""
-"Der Studiengangteil \"%s\" wurde dem Studiengang \"%s\" als \"%s\" "
-"hinzugefügt."
-msgstr "Part \"%s\" added to course of study \"%s\" as \"%s\"."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:441
-#: ../app/controllers/studiengaenge/studiengaenge.php:503
-#, php-format
-msgid "Der Studiengangteil \"%s\" wurde dem Studiengang \"%s\" hinzugefügt."
-msgstr "Part \"%s\" added to course of study \"%s\"."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:448
-#: ../app/controllers/studiengaenge/studiengaenge.php:510
-#, php-format
-msgid "Der Studiengangteil \"%s\" wurde bereits zugordnet."
-msgstr "Part \"%s\" already added."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:476
-msgid "Bitte Studiengangteil-Bezeichnung auswählen!"
-msgstr "Please select description of course of study!"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:552
-#: ../app/controllers/studiengaenge/studiengaenge.php:600
-#, php-format
-msgid ""
-"Die Zuordnung des Studiengangteils \"%s\" als \"%s\" zum Studiengang \"%s\" "
-"wurde gelöscht."
-msgstr ""
-"Allocation of partial course of study \"%s\" as \"%s\" to course of study "
-"\"%s\" deleted."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:558
-#: ../app/controllers/studiengaenge/studiengaenge.php:613
-msgid "Der Studiengangteil konnte nicht gelöscht werden."
-msgstr "Cannot delete partial course of study."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:607
-#, php-format
-msgid ""
-"Die Zuordnung des Studiengangteils \"%s\" zum Studiengang \"%s\" wurde "
-"gelöscht."
-msgstr ""
-"Allocation of partial course of study \"%s\" to course of study \"%s\" "
-"deleted."
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:751
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_table.php:24
-msgid "Aufbaustudiengang"
-msgstr "Postgraduate course of studies"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:820
-#: ../app/controllers/studiengaenge/studiengaenge.php:891
-msgid "Der Aufbaustudiengang konnte nicht angelegt werden"
-msgstr ""
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:900
-#: ../app/controllers/studiengaenge/studiengaenge.php:932
-msgid "Unbekannter Aufbaustudiengang"
-msgstr ""
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:1017
-#: ../app/views/studiengaenge/studiengaenge/index.php:4
-msgid "Liste der Studiengänge"
-msgstr "List of courses of study"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:1025
-msgid "Gruppierung nach Abschlüssen"
-msgstr "Grouping by degrees"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:1029
-msgid "Gruppierung nach Abschluss-Kategorien"
-msgstr "Order by category of degree"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:1123
-#: ../app/controllers/studiengaenge/studiengaenge.php:1128
-#: ../app/views/shared/contacts/select_range.php:6
-#: ../app/views/shared/contacts/add_ranges_to_contact.php:5
-msgid "Studiengang suchen"
-msgstr "Search course of study"
-
-#: ../app/controllers/studiengaenge/studiengaenge.php:1160
-#, php-format
-msgid "Studiengang \"%s\" genehmigt!"
-msgstr "Course of study \"%s\" approved!"
-
-#: ../app/controllers/studiengaenge/shared_version.php:34
-#, php-format
-msgid "Neue Version für Studiengangteil: %s"
-msgstr "New version for component: %s"
-
-#: ../app/controllers/studiengaenge/shared_version.php:40
-#, php-format
-msgid "Version: %s bearbeiten"
-msgstr "Version: edit %s"
-
-#: ../app/controllers/studiengaenge/shared_version.php:43
-#, php-format
-msgid "Die Version \"%s\" des Studiengangteils wurde geändert."
-msgstr "Version \"%s\" of partial of course of study has been modified."
-
-#: ../app/controllers/studiengaenge/shared_version.php:103
-msgid "Download der Version"
-msgstr "Download version"
-
-#: ../app/controllers/studiengaenge/shared_version.php:108
-msgid "Version als PDF"
-msgstr "Version as PDF"
-
-#: ../app/controllers/studiengaenge/shared_version.php:113
-msgid "Vergleich mit anderer Version"
-msgstr "Compare with other version"
-
-#: ../app/controllers/studiengaenge/shared_version.php:119
-#: ../app/views/studiengaenge/versionen/versionen.php:31
-#: ../app/views/studiengaenge/versionen/versionen.php:32
-msgid "Version genehmigen"
-msgstr "Approve version"
-
-#: ../app/controllers/studiengaenge/shared_version.php:126
-msgid "Log-Einträge dieser Studiengangteilversion"
-msgstr "Log entries for this field of study"
-
-#: ../app/controllers/studiengaenge/shared_version.php:151
-#: ../app/views/studiengaenge/versionen/diff_select.php:14
-msgid "Version suchen"
-msgstr "Search for version"
-
-#: ../app/controllers/studiengaenge/shared_version.php:159
-msgid "Versionenvergleich"
-msgstr "Compare versions"
-
-#: ../app/controllers/studiengaenge/shared_version.php:235
-#, php-format
-msgid "Version \"%s\" des Studiengangteils gelöscht!"
-msgstr "Version \"%s\" deleted!"
-
-#: ../app/controllers/studiengaenge/shared_version.php:255
-#, php-format
-msgid "Einen neuen Studiengangteil-Abschnitt für die Version \"%s\" anlegen."
-msgstr "Create a new component section for the version \"%s\"."
-
-#: ../app/controllers/studiengaenge/shared_version.php:262
-#, php-format
-msgid "Studiengangteil-Abschnitt \"%s\" der Version \"%s\" bearbeiten."
-msgstr "Edit component section \"%s\" for version \"%s\"."
-
-#: ../app/controllers/studiengaenge/shared_version.php:266
-#, php-format
-msgid "Der Studiengangteil-Abschnitt \"%s\" wurde geändert."
-msgstr "Changes to \"%s\" saved."
-
-#: ../app/controllers/studiengaenge/shared_version.php:380
-msgid "Unbekannter Studiengangteil-Abschnitt"
-msgstr "Unknown component of field of study"
-
-#: ../app/controllers/studiengaenge/shared_version.php:390
-#, php-format
-msgid "Der Studiengangteil-Abschnitt \"%s\" wurde glöscht."
-msgstr "\"%s\" deleted."
-
-#: ../app/controllers/studiengaenge/shared_version.php:395
-#, php-format
-msgid "Der Studiengangteil-Abschnitt \"%s\" konnte nicht gelöscht werden."
-msgstr "Cannot delete \"%s\"."
-
-#: ../app/controllers/studiengaenge/shared_version.php:429
-#, php-format
-msgid "Das Modul \"%s\" wurde dem Abschnitt \"%s\" hinzugefügt."
-msgstr "Module \"%s\" added to component \"%s\"."
-
-#: ../app/controllers/studiengaenge/shared_version.php:435
-#, php-format
-msgid "Das Modul \"%s\" wurde bereits zugordnet."
-msgstr "Module \"%s\" has already be assigned."
-
-#: ../app/controllers/studiengaenge/shared_version.php:441
-#: ../app/controllers/studiengaenge/shared_version.php:686
-msgid "Unbekannter Abschnitt"
-msgstr "Unknown section"
-
-#: ../app/controllers/studiengaenge/shared_version.php:465
-#: ../app/views/studiengaenge/versionen/details_abschnitt.php:28
-msgid "Modulzuordnung bearbeiten"
-msgstr "Edit module allocation"
-
-#: ../app/controllers/studiengaenge/shared_version.php:466
-#, php-format
-msgid "Die Modulzuordnung \"%s\" wurde geändert."
-msgstr "Changes to \"%s\" saved."
-
-#: ../app/controllers/studiengaenge/shared_version.php:520
-#, php-format
-msgid ""
-"Die Zuordnung des Moduls \"%s\" zum Studiengangteil-Abschnitt \"%s\" wurde "
-"gelöscht."
-msgstr "Allocation of module \"%s\" to partial course of study \"%s\" deleted."
-
-#: ../app/controllers/studiengaenge/shared_version.php:525
-msgid "Die Zuordnung des Moduls konnte nicht gelöscht werden."
-msgstr "Cannot delete allocation of module."
-
-#: ../app/controllers/studiengaenge/shared_version.php:531
-msgid "Unbekannter Studiengangteilabschnitt"
-msgstr "Unknown section of component of course of study"
-
-#: ../app/controllers/studiengaenge/shared_version.php:587
-#, php-format
-msgid ""
-"Die Zuordnung der Fachsemester zum Modulteil \"%s\" des Moduls \"%s\" im "
-"Abschnitt \"%s\" wurde geändert."
-msgstr ""
-"The assignment of the semesters to the module component \"%s\" of the module "
-"\"%s\" in the section \"%s\" has been modified."
-
-#: ../app/controllers/studiengaenge/shared_version.php:594
-msgid ""
-"Es wurden keine Änderungen an der Zuordnung der Fachsemester vorgenommen."
-msgstr "No changes have been made at the allocation of semesters."
-
-#: ../app/controllers/studiengaenge/shared_version.php:630
-#, php-format
-msgid "Version \"%s\" des Studiengangteils kopiert!"
-msgstr "Version \"%s\" of partial course of study copied!"
-
-#: ../app/controllers/studiengaenge/shared_version.php:758
-#, php-format
-msgid "Version \"%s\" genehmigt!"
-msgstr "Version \"%s\" has been approved!"
-
-#: ../app/controllers/studiengaenge/informationen.php:99
-msgid "Keine Studierenden zu den gewählten Angaben gefunden"
-msgstr "No student found for the specified search terms"
-
-#: ../app/controllers/studiengaenge/informationen.php:110
-#, php-format
-msgid "Information zum Studiengang: %s %s"
-msgstr "Information on course of study: %s%s"
-
-#: ../app/controllers/studiengaenge/informationen.php:121
-msgid "Gruppieren nach Fächern"
-msgstr "Group by fields of study"
-
-#: ../app/controllers/studiengaenge/informationen.php:123
-msgid "Gruppieren nach Abschlüssen"
-msgstr "Group by degrees"
-
-#: ../app/controllers/studiengaenge/abschluesse.php:19
-msgid "Studiengänge gruppiert nach Abschlüssen"
-msgstr "Fields of study grouped by degrees"
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:23
-msgid "Verwaltung der Studiengangteile - Alle Studiengangteile"
-msgstr "Partial of course of study management - all partials"
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:68
-#: ../app/controllers/studiengaenge/studiengangteile.php:249
-msgid "Neuen Studiengangteil anlegen"
-msgstr "Add partial course of study"
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:72
-#, php-format
-msgid "Studiengangteil: %s bearbeiten"
-msgstr "Component of course of study: edit %s"
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:75
-#, php-format
-msgid "Der Studiengangteil \"%s\" wurde geändert."
-msgstr "Changes to partial course of study \"%s\" saved."
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:112
-msgid "Fach suchen"
-msgstr "Search subject"
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:125
-msgid "Log-Einträge dieses Studiengangteils"
-msgstr "Log entries for this partial course of study"
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:159
-msgid ""
-"Der Studiengangteil kann nicht gelöscht werden, da er Studiengängen "
-"zugeordnet ist."
-msgstr ""
-"Cannot delete partial course of study, it is allocated to a course of study."
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:162
-#, php-format
-msgid "Studiengangteil \"%s\" gelöscht!"
-msgstr "Partial course of study \"%s\" deleted!"
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:233
-#: ../app/views/studiengaenge/studiengangteile/index.php:6
-msgid "Liste der Studiengangteile"
-msgstr "List of partial courses of study"
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:237
-msgid "Gruppiert nach Fächern"
-msgstr "Grouped by field of study"
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:241
-msgid "Gruppiert nach Fachbereichen"
-msgstr "Grouped by faculty"
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:262
-msgid ""
-"Auf diesen Seiten können Sie die Studiengangteile verwalten. Ein Fach kann "
-"einen oder mehrere Studiengangteil(e) haben, die Studiengängen zugeordnet "
-"werden."
-msgstr ""
-"Manage partial courses of study here. One field of study may consist of one "
-"(or several) partial courses of study allocated to one course of study."
-
-#: ../app/controllers/studiengaenge/studiengangteile.php:263
-msgid ""
-"Studiengangteile können nur gelöscht werden, wenn Sie keinem Studiengang "
-"zugeordnet sind."
-msgstr ""
-"Partial courses of study can be deleted if they are not allocated to any "
-"courses of study."
-
-#: ../app/controllers/studygroup.php:24
-msgid "Studiengruppen suchen"
-msgstr "Search for study groups"
-
-#: ../app/controllers/studygroup.php:60
-msgid "Der Suchbegriff ist zu kurz."
-msgstr "Search string too short."
-
-#: ../app/controllers/studygroup.php:77
-msgid "Es wurden keine Studiengruppen für den Suchbegriff gefunden"
-msgstr "No study group found matching the given search string"
-
-#: ../app/controllers/studygroup.php:108
-msgid "Geschlossene Studiengruppen"
-msgstr "Closed study groups"
-
-#: ../app/controllers/files.php:67
-msgid "Dateiquellen"
-msgstr "File sources"
-
-#: ../app/controllers/files.php:69
-msgid "Stud.IP-Dateien"
-msgstr "Stud.IP files"
-
-#: ../app/controllers/files.php:139
-msgid "Dateibereiche konfigurieren"
-msgstr "Configure file areas"
-
-#: ../app/controllers/files.php:145
-#, php-format
-msgid "%s konfigurieren"
-msgstr "configure %s"
-
-#: ../app/controllers/files.php:275 ../app/controllers/files.php:511
-#: ../app/views/file/add_files_window.php:46
-#: ../app/views/file/choose_destination.php:39
-msgid "Persönlicher Dateibereich"
-msgstr "Personal file area"
-
-#: ../app/controllers/files.php:283 ../app/controllers/files.php:502
-#: ../app/views/files/_overview.php:73 ../app/views/files/my_public_files.php:2
-msgid "Meine öffentlichen Dateien"
-msgstr "My public documents"
-
-#: ../app/controllers/files.php:291 ../app/controllers/files.php:520
-#: ../app/views/files/_overview.php:98
-msgid "Meine Dateien mit ungeklärter Lizenz"
-msgstr "My files with an unknown license"
-
-#: ../app/controllers/files.php:528
-msgid "Die gewählte Ansicht ist nicht verfügbar!"
-msgstr "The selected view is not available!"
-
-#: ../app/controllers/files.php:618
-msgid "Dateibereich zur Konfiguration auswählen"
-msgstr "Select file area for configuring"
-
-#: ../app/controllers/files.php:639
-msgid "Dieser Bereich ist nicht verfügbar."
-msgstr "This area is not available."
-
-#: ../app/controllers/files.php:658
-msgid "Ordner nicht gefunden!"
-msgstr "Folder not found!"
-
-#: ../app/controllers/files.php:769
-msgid "Der Ordner wurde kopiert!"
-msgstr "The folder has been copied!"
-
-#: ../app/controllers/files.php:771
-msgid "Der Ordner wurde verschoben!"
-msgstr "The folder has been moved!"
-
-#: ../app/controllers/files.php:775
-msgid "Die Datei wurde kopiert!"
-msgstr "The file has been copied!"
-
-#: ../app/controllers/files.php:777
-msgid "Die Datei wurde verschoben!"
-msgstr "The file has been moved!"
-
-#: ../app/controllers/files.php:783
-#, php-format
-msgid "Es wurden %u Ordner und %u Dateien kopiert."
-msgstr "%u folders and %u files have been copied."
-
-#: ../app/controllers/files.php:785
-#, php-format
-msgid "Es wurden %u Ordner und %u Dateien verschoben."
-msgstr "%u folders and %u files have been moved."
-
-#: ../app/controllers/files.php:789
-#, php-format
-msgid "Es wurden %u Dateien kopiert."
-msgstr "%u files have been copied."
-
-#: ../app/controllers/files.php:791
-#, php-format
-msgid "Es wurden %u Dateien verschoben."
-msgstr "%u files have been moved."
-
-#: ../app/controllers/files.php:795
-#, php-format
-msgid "Es wurden %u Ordner kopiert."
-msgstr "%u folders have been copied."
-
-#: ../app/controllers/files.php:797
-#, php-format
-msgid "Es wurden %u Ordner verschoben."
-msgstr "%u folders have been moved."
-
-#: ../app/routes/Events.php:161
-msgid "Raum: "
-msgstr "Room: "
-
-#: ../app/routes/Events.php:167
-msgid "kein gebuchter Raum"
-msgstr "no room booked"
-
-#: ../app/routes/Events.php:169
-msgid "keine Raumangabe"
-msgstr "no location details"
-
-#: ../app/routes/Clipboard.php:33
-msgid "Fehler beim Speichern des Merkzettels!"
-msgstr "Error while saving the notepad!"
-
-#: ../app/routes/Clipboard.php:57 ../app/routes/Clipboard.php:107
-#: ../app/routes/Clipboard.php:133 ../app/routes/Clipboard.php:180
-msgid "Ungültige Merkzettel-ID!"
-msgstr "Invalid notepad ID!"
-
-#: ../app/routes/Clipboard.php:82
-msgid "Fehler beim Bearbeiten des Merkzettels!"
-msgstr "Error while modifying the notepad!"
-
-#: ../app/routes/Clipboard.php:117
-msgid "Fehler beim Löschen des Merkzettels!"
-msgstr "Error while deleting the notepad!"
-
-#: ../app/routes/Clipboard.php:150
-#, php-format
-msgid "Die Klasse %s ist in dieser Merkzettel-Klasse nicht erlaubt!"
-msgstr "The class %s is not allowed in this notepad class!"
-
-#: ../app/routes/Clipboard.php:192
-msgid "Fehler beim Löschen des Eintrags!"
-msgstr "Error while deleting the entry!"
-
-#: ../app/views/public_courses/index.php:3
-msgid ""
-"Die folgenden Veranstaltungen können Sie betreten, ohne sich im System "
-"registriert zu haben."
-msgstr ""
-"You can enrol in the following courses without being registered to the "
-"system."
-
-#: ../app/views/public_courses/index.php:7
-#, php-format
-msgid ""
-"In den %s blau markierten Veranstaltungen dürfen Sie nur lesen und Dokumente "
-"herunterladen."
-msgstr ""
-"In the %s courses depicted in blue you can read and download documents, only."
-
-#: ../app/views/public_courses/index.php:11
-#, php-format
-msgid ""
-"In den %s orange markierten Veranstaltungen können Sie sich zusätzlich mit "
-"eigenen Beiträgen im Forum beteiligen."
-msgstr ""
-"In the %s courses depicted in orange you can furthermore write postings in "
-"the forum."
-
-#: ../app/views/public_courses/index.php:17
-msgid ""
-"In der rechten Spalte können Sie sehen, was in den einzelnen Veranstaltungen "
-"an Inhalten vorhanden ist."
-msgstr ""
-"In the column at the right you can view the content of each individual "
-"course."
-
-#: ../app/views/public_courses/index.php:23
-msgid "Es gibt keine Veranstaltungen, die einen freien Zugriff erlauben!"
-msgstr "There are no courses that allow free access!"
-
-#: ../app/views/admission/rule/save.php:12
-msgid "Soll die Anmelderegel wirklich gelöscht werden?"
-msgstr "Delete this admission?"
-
-#: ../app/views/admission/rule/select_type.php:3
-msgid "Anmelderegel konfigurieren"
-msgstr "Configure admission setting"
-
-#: ../app/views/admission/rule/select_type.php:25
-msgid "Weiter >>"
-msgstr "More >>"
-
-#: ../app/views/admission/rule_administration/compatibility.php:5
-msgid "Welche Anmelderegeln sind wie miteinander kombinierbar?"
-msgstr "Which admission rules can be combined and how can they be combined?"
-
-#: ../app/views/admission/rule_administration/compatibility.php:17
-msgid "ist kompatibel mit"
-msgstr "is compatible with"
-
-#: ../app/views/admission/rule_administration/compatibility.php:21
-msgid "Regeltyp"
-msgstr "Rile type"
-
-#: ../app/views/admission/rule_administration/check_activation.php:13
-msgid "Regel ist aktiv"
-msgstr "Rule is active"
-
-#: ../app/views/admission/rule_administration/check_activation.php:17
-msgid "Regel ist verfügbar"
-msgstr "Setting is available"
-
-#: ../app/views/admission/rule_administration/check_activation.php:23
-msgid "systemweit"
-msgstr "global"
-
-#: ../app/views/admission/rule_administration/check_activation.php:28
-msgid "an ausgewählten Einrichtungen"
-msgstr "at selected institutions"
-
-#: ../app/views/admission/rule_administration/index.php:9
-msgid ""
-"Es wurden Anmelderegeln gefunden, die zwar imDateisystem unter lib/"
-"admissionrules vorhanden sind, aber noch nicht installiert wurden:"
-msgstr ""
-"Admission rules have been found which are placed in the file system at lib/"
-"admissionrules but aren't installed yet:"
-
-#: ../app/views/admission/rule_administration/index.php:18
-msgid "Installierte Anmelderegeln:"
-msgstr "Installed admission rules:"
-
-#: ../app/views/admission/rule_administration/index.php:20
-#: ../app/views/admin/course_wizard_steps/index.php:26
-msgid "aktiv?"
-msgstr "active?"
-
-#: ../app/views/admission/rule_administration/index.php:21
-msgid "Art der Anmelderegel"
-msgstr "Admission rule type"
-
-#: ../app/views/admission/rule_administration/index.php:27
-msgid ""
-"Diese Regel ist aktiv. Klicken Sie hier, um die Einstellungen zu bearbeiten."
-msgstr "This rule is active. Click here to edit the settings."
-
-#: ../app/views/admission/rule_administration/index.php:30
-msgid ""
-"Diese Regel ist inaktiv. Klicken Sie hier, um die Einstellungen zu "
-"bearbeiten."
-msgstr "This rule is inactive. Click here to edit the settings."
-
-#: ../app/views/admission/rule_administration/index.php:53
-#, php-format
-msgid "Sie haben noch keine Anmelderegeln installiert!"
-msgstr "You haven't yet installed any admission rule!"
-
-#: ../app/views/admission/courseset/institutes.php:1
-#: ../app/views/admission/courseset/configure.php:80
-#: ../app/views/settings/studies/institute.php:68
-#: ../app/views/admin/role/assign_role_institutes.php:33
-msgid "Einrichtung hinzufügen"
-msgstr "Add institute"
-
-#: ../app/views/admission/courseset/institutes.php:12
-#: ../app/views/fachabschluss/faecher/fach.php:73
-#: ../app/views/module/module/modul.php:333
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:163
-msgid "Einrichtung entfernen"
-msgstr "Remove institution"
-
-#: ../app/views/admission/courseset/configure.php:4
-msgid "Regeln"
-msgstr "Rules"
-
-#: ../app/views/admission/courseset/configure.php:4
-msgid ""
-"Hier können Sie die Regeln, Eigenschaften und Zuordnungen des Anmeldesets "
-"bearbeiten."
-msgstr "Use this page to edit the settings and assignments of the course set."
-
-#: ../app/views/admission/courseset/configure.php:5
-msgid ""
-"Sie können das Anmeldeset allen Einrichtungen zuordnen, an denen Sie "
-"mindestens Lehrendenrechte haben."
-msgstr ""
-"You can assign the admission set to all the institutes where you have at "
-"least lecturer permissions."
-
-#: ../app/views/admission/courseset/configure.php:6
-msgid ""
-"Alle Veranstaltungen der Einrichtungen, an denen Sie mindestens "
-"Lehrendenrechte haben, können zum Anmeldeset hinzugefügt werden."
-msgstr ""
-"All courses of those institutes where you have at least lecturer permissions "
-"can be added to the admission set."
-
-#: ../app/views/admission/courseset/configure.php:18
-#: ../app/views/admission/courseset/configure.php:177
-#: ../app/views/course/plus/index.php:16
-msgid "Diese Daten sind noch nicht gespeichert."
-msgstr "These entries have not been saved yet."
-
-#: ../app/views/admission/courseset/configure.php:21
-#: ../app/views/admission/courseset/index.php:64
-#: ../app/views/course/admission/index.php:20
-msgid "Anmeldeset bearbeiten"
-msgstr "Edit admission"
-
-#: ../app/views/admission/courseset/configure.php:28
-msgid "Name des Anmeldesets"
-msgstr "Admission set name"
-
-#: ../app/views/admission/courseset/configure.php:38
-msgid ""
-"Dieses Anmeldeset soll nur für mich selbst und alle Administratoren sichtbar "
-"und benutzbar sein."
-msgstr ""
-"Hide admission for everyone except me and all administrators. Only these "
-"users may use it."
-
-#: ../app/views/admission/courseset/configure.php:42
-msgid "Besitzer des Anmeldesets"
-msgstr "Admission set owner"
-
-#: ../app/views/admission/courseset/configure.php:56
-#: ../app/views/course/studygroup/globalmodules.php:43
-#: ../app/views/admin/role/show_role.php:69
-msgid "Einrichtungszuordnung"
-msgstr "Institute assignment"
-
-#: ../app/views/admission/courseset/configure.php:84
-msgid ""
-"Sie haben noch keine Einrichtung ausgewählt. Benutzen Sie obige Suche, um "
-"dies zu tun."
-msgstr "No institution selected. Use the search."
-
-#: ../app/views/admission/courseset/configure.php:86
-msgid "Sie sind keiner Einrichtung zugeordnet."
-msgstr "You are not assigned to any institutions."
-
-#: ../app/views/admission/courseset/configure.php:111
-msgid "Filter auf Name/Nummer/Lehrperson"
-msgstr "Filter by name/number/lecturer"
-
-#: ../app/views/admission/courseset/configure.php:113
-msgid "Veranstaltungen anzeigen"
-msgstr "Show courses"
-
-#: ../app/views/admission/courseset/configure.php:125
-#, php-format
-msgid "Liste der Anmeldungen (%s Nutzer)"
-msgstr "List of applications (%s applicants)"
-
-#: ../app/views/admission/courseset/configure.php:129
-msgid "Nachricht an alle Angemeldeten"
-msgstr "Message to all enroled members"
-
-#: ../app/views/admission/courseset/configure.php:138
-#, php-format
-msgid "%s zugewiesene Veranstaltungen"
-msgstr "%s assigned courses"
-
-#: ../app/views/admission/courseset/configure.php:162
-msgid "Sie haben noch keine Anmelderegeln festgelegt."
-msgstr "You haven't yet defined any admission rule."
-
-#: ../app/views/admission/courseset/configure.php:167
-msgid "Anmelderegel hinzufügen"
-msgstr "Add admission rule"
-
-#: ../app/views/admission/courseset/configure.php:185
-msgid "Personenlisten zuordnen"
-msgstr "Assign person list"
-
-#: ../app/views/admission/courseset/configure.php:199
-msgid "Sie haben noch keine Personenlisten angelegt."
-msgstr "You have not created any list yet."
-
-#: ../app/views/admission/courseset/configure.php:204
-msgid "Liste der Nutzer"
-msgstr "List of participants"
-
-#: ../app/views/admission/courseset/configure.php:223
-msgid "Weitere Hinweise für die Teilnehmenden"
-msgstr "Additional notes for the participant"
-
-#: ../app/views/admission/courseset/factored_users.php:5
-msgid "Faktor"
-msgstr "Multiplier"
-
-#: ../app/views/admission/courseset/factored_users.php:6
-msgid "Angemeldet"
-msgstr "Enroled"
-
-#: ../app/views/admission/courseset/factored_users.php:13
-msgid "maximal"
-msgstr "maximum"
-
-#: ../app/views/admission/courseset/instcourses.php:44
-#: ../app/views/resources/booking/index.php:94
-#: ../app/views/admin/courses/_course.php:53
-#: ../app/views/my_courses/waiting_list.php:64
-msgid "Veranstaltungsdetails anzeigen"
-msgstr "Display course details"
-
-#: ../app/views/admission/courseset/instcourses.php:53
-#, php-format
-msgid "vorhandene Anmelderegel: %s"
-msgstr "available admission setting: %s"
-
-#: ../app/views/admission/courseset/configure_courses.php:12
-#: ../app/views/admission/restricted_courses/index.php:11
-msgid "Anmeldungen"
-msgstr "Registrations"
-
-#: ../app/views/admission/courseset/configure_courses.php:14
-#: ../app/views/resources/room_request/overview.php:28
-#: ../app/views/resources/room_request/planning.php:142
-#: ../app/views/room_management/overview/index.php:106
-msgid "Plätze"
-msgstr "Seats"
-
-#: ../app/views/admission/courseset/configure_courses.php:15
-msgid "Nachrücken"
-msgstr "Moving up"
-
-#: ../app/views/admission/courseset/configure_courses.php:34
-#, php-format
-msgid "Warteliste für %s aktivieren"
-msgstr "Activate wait list for %s"
-
-#: ../app/views/admission/courseset/configure_courses.php:41
-#, php-format
-msgid "Anzahl der Plätze auf der Warteliste für %s"
-msgstr "Amount of seats on the wait list for %s"
-
-#: ../app/views/admission/courseset/configure_courses.php:48
-#, php-format
-msgid "Aktivieren des automatischen Nachrückens aus der Warteliste für %s"
-msgstr "Activate automatic moving up from the wait list for %s"
-
-#: ../app/views/admission/courseset/configure_courses.php:56
-msgid "Anzahl aller Teilnehmenden:"
-msgstr "Number of participants:"
-
-#: ../app/views/admission/courseset/configure_courses.php:64
-msgid "Mehrfachteilnahmen:"
-msgstr "Multiple participations:"
-
-#: ../app/views/admission/courseset/index.php:3
-msgid ""
-"Anmeldesets legen fest, wer sich zu den zugeordneten Veranstaltungen "
-"anmelden darf."
-msgstr "Admissions determine who is allowed to enrol to the assigned courses."
-
-#: ../app/views/admission/courseset/index.php:4
-msgid "Hier sehen Sie alle Anmeldesets, auf die Sie Zugriff haben."
-msgstr "Here you can see all admissions  to which you have access."
-
-#: ../app/views/admission/courseset/index.php:30
-msgid "Name des Sets"
-msgstr "Title of admission"
-
-#: ../app/views/admission/courseset/index.php:31
-#: ../app/views/admin/lockrules/index.php:20
-msgid "Besitzer"
-msgstr "Owner"
-
-#: ../app/views/admission/courseset/index.php:33
-#: ../app/views/course/feedback/_results.php:26
-#: ../app/views/admin/user/_course_files.php:30
-#: ../app/views/admin/user/_institute_files.php:19
-#: ../app/views/event_log/admin.php:9
-msgid "Anzahl"
-msgstr "Number"
-
-#: ../app/views/admission/courseset/index.php:57
-#: ../app/views/course/room_requests/index.php:43
-msgid "Weitere Informationen einblenden"
-msgstr "Display further information"
-
-#: ../app/views/admission/courseset/index.php:61
-msgid "Anmeldeset kopieren"
-msgstr "Copy admission/course set"
-
-#: ../app/views/admission/courseset/index.php:67
-#, php-format
-msgid "Soll das Anmeldeset %s wirklich gelöscht werden?"
-msgstr "Delete admission %s?"
-
-#: ../app/views/admission/courseset/index.php:68
-msgid "Anmeldeset löschen"
-msgstr "Delete admission"
-
-#: ../app/views/admission/courseset/index.php:86
-msgid "Sollen die markierten Anmeldesets wirklich gelöscht werden?"
-msgstr ""
-
-#: ../app/views/admission/courseset/index.php:96
-#, php-format
-msgid ""
-"Es wurden keine Anmeldesets gefunden. Sie können ein neues %sAnmeldeset "
-"anlegen%s."
-msgstr "No admission sets found. You can %screate a new admission set%s."
-
-#: ../app/views/admission/courseset/delete.php:2
-#, php-format
-msgid ""
-"Sind Sie sicher, dass das Anmeldeset \"%s\" gelöscht werden soll? Damit "
-"werden alle Regeln zur Anmeldung zu den verknüpften Veranstaltungen "
-"aufgehoben."
-msgstr "Delete admission \"%s\"? All assigned courses will be opened."
-
-#: ../app/views/admission/courseset/_institute_choose.php:5
-#: ../app/views/admission/restricted_courses/_institute_choose.php:4
-msgid "Anmeldesets auflisten"
-msgstr "List admission sets"
-
-#: ../app/views/admission/courseset/_institute_choose.php:8
-#: ../app/views/admission/restricted_courses/_institute_choose.php:7
-msgid "Einrichtung:"
-msgstr "Institute:"
-
-#: ../app/views/admission/courseset/_institute_choose.php:27
-msgid "Präfix des Namens:"
-msgstr "Name prefix:"
-
-#: ../app/views/admission/courseset/_institute_choose.php:32
-msgid "Enthaltene Regeln:"
-msgstr "Contained settings:"
-
-#: ../app/views/admission/courseset/_institute_choose.php:34
-msgid "markieren"
-msgstr "mark"
-
-#: ../app/views/admission/courseset/_institute_choose.php:59
-msgid "Zugewiesene Veranstaltungen aus diesem Semester:"
-msgstr "Assigned courses in this semester:"
-
-#: ../app/views/admission/restricted_courses/index.php:10
-msgid "Teilnehmer aktuell"
-msgstr "Number of participants"
-
-#: ../app/views/admission/restricted_courses/index.php:27
-msgid "vorläufige Teilnahme: "
-msgstr "preliminary enrolment: "
-
-#: ../app/views/admission/restricted_courses/_institute_choose.php:26
-msgid "Präfix des Veranstaltungsnamens / Nummer:"
-msgstr "Course name/number prefix:"
-
-#: ../app/views/admission/restricted_courses/_institute_choose.php:31
-msgid "Veranstaltungen aus diesem Semester:"
-msgstr "Courses in this semester:"
-
-#: ../app/views/admission/user_list/configure.php:25
-msgid "Name der Personenliste"
-msgstr "Name of person list"
-
-#: ../app/views/admission/user_list/configure.php:31
-msgid ""
-"Wie sollen die Personen auf dieser Liste bei der Platzverteilung "
-"berücksichtigt werden?"
-msgstr ""
-"How shall the persons on this list be regarded during seat distribution?"
-
-#: ../app/views/admission/user_list/configure.php:35
-msgid "Nachrangig (nach allen anderen Personen in der Platzvergabe)"
-msgstr "Secondarily (after all other persons in the seat distribution)"
-
-#: ../app/views/admission/user_list/configure.php:40
-msgid "Bevorzugt (erhalten zuerst einen Platz)"
-msgstr "Preferred (get a seat first)"
-
-#: ../app/views/admission/user_list/configure.php:47
-msgid "Personen zur Liste hinzufügen"
-msgstr "Add persons to list"
-
-#: ../app/views/admission/user_list/configure.php:60
-#: ../app/views/oer/mymaterial/_material_list.php:8
-#: ../app/views/news/admin_news.php:91
-#: ../app/views/course/basicdata/view.php:107
-#: ../app/views/course/basicdata/view.php:182
-#: ../app/views/course/basicdata/view.php:244
-#: ../app/views/course/members/tutor_list.php:75
-#: ../app/views/course/members/accepted_list.php:69
-#: ../app/views/course/members/dozent_list.php:44
-#: ../app/views/course/members/awaiting_list.php:67
-#: ../app/views/course/members/autor_list.php:80
-#: ../app/views/course/members/user_list.php:75
-#: ../app/views/course/statusgroups/getgroup.php:66
-#: ../app/views/settings/deputies.php:18
-#: ../app/views/admin/webservice_access/index.php:22
-#: ../app/views/admin/courses/courses.php:186
-#: ../app/views/admin/licenses/index.php:10
-#: ../app/views/tour/admin_overview.php:44
-#: ../app/views/tour/admin_details.php:134
-#: ../app/views/my_courses/_deputy_bosses.php:14
-#: ../app/views/help_content/admin_overview.php:23
-msgid "Aktion"
-msgstr "Action"
-
-#: ../app/views/admission/user_list/configure.php:67
-msgid "Niemand ist in die Liste eingetragen."
-msgstr "Nobody on the list."
-
-#: ../app/views/admission/user_list/configure.php:87
-#, php-format
-msgid "Soll %s wirklich von der Liste entfernt werden?"
-msgstr "Really remove %s from list?"
-
-#: ../app/views/admission/user_list/index.php:24
-msgid "Nutzerliste bearbeiten"
-msgstr "Edit user list"
-
-#: ../app/views/admission/user_list/index.php:29
-#: ../app/views/admission/user_list/delete.php:3
-#, php-format
-msgid "Soll die Nutzerliste %s wirklich gelöscht werden?"
-msgstr "Delete the list %s?"
-
-#: ../app/views/admission/user_list/index.php:32
-msgid "Personenliste löschen"
-msgstr "Delete person list"
-
-#: ../app/views/admission/user_list/index.php:43
-#, php-format
-msgid ""
-"Es wurden keine Personenlisten gefunden. Sie können eine neue "
-"%sPersonenliste anlegen%s."
-msgstr "No person list has been found. You can %screate a new person list%s."
-
-#: ../app/views/online/index.php:17 ../app/views/online/index.php:92
-msgid "Letztes Lebenszeichen"
-msgstr "Last sign of life"
-
-#: ../app/views/online/index.php:45
-msgid "Sie haben keine Kontakte ausgewählt."
-msgstr "You didn't select any contact."
-
-#: ../app/views/online/index.php:53
-msgid "Es sind keine Ihrer Kontakte online."
-msgstr "None of your contacts is online."
-
-#: ../app/views/online/index.php:62
-#, php-format
-msgid "Zum Adressbuch (%u Einträge) klicken Sie %shier%s."
-msgstr "To open the address book (%u entries), click %shere%s."
-
-#: ../app/views/online/index.php:75
-msgid "Andere NutzerInnen"
-msgstr "Other users"
-
-#: ../app/views/online/index.php:78
-#, php-format
-msgid "+ %u unsichtbare NutzerInnen"
-msgstr "+ %u invisible users"
-
-#: ../app/views/online/index.php:105
-msgid "Keine sichtbaren Nutzer online."
-msgstr "No visible user is online."
-
-#: ../app/views/online/index.php:113
-msgid "Kein anderer Nutzer ist online."
-msgstr "No other user is online."
-
-#: ../app/views/online/user-row.php:40
-msgid "Aus den Kontakten entfernen"
-msgstr "Remove from contacts"
-
-#: ../app/views/consultation/overview/book.php:5
-msgid "Bitte beachten Sie, dass Ihre Buchung öffentlich sichtbar sein wird"
-msgstr ""
-
-#: ../app/views/consultation/overview/book.php:30
-msgid "Bitte lesen Sie sich den folgenden Hinweis durch:"
-msgstr ""
-
-#: ../app/views/consultation/overview/book.php:36
-msgid "Ich habe den obigen Hinweis zur Kenntnis genommen"
-msgstr ""
-
-#: ../app/views/consultation/overview/ungrouped.php:3
-#: ../app/views/consultation/overview/index.php:3
-msgid "Aktuell werden keine Termine angeboten."
-msgstr ""
-
-#: ../app/views/consultation/overview/ungrouped.php:25
-#: ../app/views/consultation/admin/ungrouped.php:153
-#: ../app/views/consultation/export/print.php:92
-msgid "Person(en)"
-msgstr "Person(s)"
-
-#: ../app/views/consultation/overview/ungrouped.php:37
-#: ../app/views/consultation/admin/ungrouped.php:168
-msgid "%A, %x"
-msgstr ""
-
-#: ../app/views/consultation/overview/booked.php:3
-msgid "Sie haben aktuell keine Termine gebucht."
-msgstr ""
-
-#: ../app/views/consultation/overview/booked.php:20
-#: ../app/views/consultation/slot-bookings.php:14
-msgid "Mein Grund der Buchung"
-msgstr "My reason for the booking"
-
-#: ../app/views/consultation/slot-bookings.php:31
-#, php-format
-msgid "+%u weitere"
-msgstr ""
-
-#: ../app/views/consultation/admin/book.php:21
-#, php-format
-msgid "Teilnehmer der Veranstaltung \"%s\" suchen"
-msgstr "Search participants of the course \"%s\""
-
-#: ../app/views/consultation/admin/create.php:15
-msgid "monatlich"
-msgstr "monthly"
-
-#: ../app/views/consultation/admin/create.php:24
-msgid "Sie erstellen eine sehr große Anzahl an Terminen."
-msgstr ""
-
-#: ../app/views/consultation/admin/create.php:25
-msgid "Bitte bestätigen Sie diese Aktion."
-msgstr "Please confirm this action."
-
-#: ../app/views/consultation/admin/create.php:29
-#, php-format
-msgid "Ja, ich möchte wirklich %s Termine erstellen."
-msgstr ""
-
-#: ../app/views/consultation/admin/create.php:55
-#: ../app/views/consultation/admin/create.php:64
-msgid "tt.mm.jjjj"
-msgstr "dd.mm.yyyy"
-
-#: ../app/views/consultation/admin/create.php:69
-msgid "Am Wochentag"
-msgstr "On the weekday"
-
-#: ../app/views/consultation/admin/create.php:81
-msgid "Intervall"
-msgstr "Interval"
-
-#: ../app/views/consultation/admin/create.php:96
-#: ../app/views/consultation/admin/create.php:105
-msgid "HH:mm"
-msgstr "HH:mm"
-
-#: ../app/views/consultation/admin/create.php:101
-#: ../app/views/settings/calendar.php:84
-msgid "Bis"
-msgstr "Until"
-
-#: ../app/views/consultation/admin/create.php:110
-msgid "Dauer eines Termins in Minuten"
-msgstr "Date duration in minutes"
-
-#: ../app/views/consultation/admin/create.php:117
-msgid "Maximale Teilnehmerzahl"
-msgstr "Maximum amount of participants"
-
-#: ../app/views/consultation/admin/create.php:118
-msgid ""
-"Falls Sie mehrere Personen zulassen wollen (wie z.B. zu einer "
-"Klausureinsicht), so geben Sie hier die maximale Anzahl an Personen an, die "
-"sich anmelden dürfen."
-msgstr ""
-"If you want to allow multiple persons (e.g. for a post-exam review), you can "
-"here specify the maximum amount of persons that can register."
-
-#: ../app/views/consultation/admin/create.php:125
-msgid "Durchführende Person"
-msgstr ""
-
-#: ../app/views/consultation/admin/create.php:137
-msgid "Information zu den Terminen in diesem Block"
-msgstr "Information about the dates in this block"
-
-#: ../app/views/consultation/admin/create.php:144
-msgid "Die freien Termine auch im Kalender markieren"
-msgstr ""
-
-#: ../app/views/consultation/admin/create.php:150
-msgid "Namen der buchenden Personen sind öffentlich sichtbar"
-msgstr ""
-
-#: ../app/views/consultation/admin/create.php:154
-msgid "Grund der Buchung abfragen"
-msgstr ""
-
-#: ../app/views/consultation/admin/create.php:160
-msgid "Ja, zwingend erforderlich"
-msgstr ""
-
-#: ../app/views/consultation/admin/create.php:166
-msgid "Ja, optional"
-msgstr ""
-
-#: ../app/views/consultation/admin/create.php:177
-msgid "Bestätigung für folgenden Text einholen"
-msgstr ""
-
-#: ../app/views/consultation/admin/create.php:178
-#: ../app/views/event_log/edit.php:29 ../app/views/questionnaire/assign.php:24
-#: ../app/views/questionnaire/assign.php:43
-msgid "optional"
-msgstr "optional"
-
-#: ../app/views/consultation/admin/create.php:179
-msgid ""
-"Wird hier ein Text eingegeben, so müssen Buchende bestätigen, dass sie "
-"diesen Text gelesen haben."
-msgstr ""
-
-#: ../app/views/consultation/admin/create.php:185
-#: ../app/views/calendar/single/edit.php:428
-#: ../app/views/calendar/single/_edit_status.php:40
-msgid "Termin speichern"
-msgstr "Save date"
-
-#: ../app/views/consultation/admin/ungrouped.php:5
-#: ../app/views/consultation/admin/index.php:5
-msgid "Derzeit sind keine Termine eingetragen."
-msgstr ""
-
-#: ../app/views/consultation/admin/ungrouped.php:55
-#: ../app/views/consultation/slot-details.php:4
-#: ../app/views/consultation/block-description.php:4
-#, php-format
-msgid "%s bis %s Uhr"
-msgstr "%s until %s o'clock"
-
-#: ../app/views/consultation/admin/ungrouped.php:80
-#: ../app/views/consultation/admin/ungrouped.php:221
-#: ../app/views/consultation/admin/index.php:59
-#: ../app/views/consultation/admin/index.php:137
-msgid "Information bearbeiten"
-msgstr "Edit information"
-
-#: ../app/views/consultation/admin/ungrouped.php:85
-#: ../app/views/consultation/admin/index.php:64
-msgid "Druckansicht anzeigen"
-msgstr "Display print view"
-
-#: ../app/views/consultation/admin/ungrouped.php:100
-#: ../app/views/consultation/admin/index.php:79
-msgid "Termine entfernen"
-msgstr ""
-
-#: ../app/views/consultation/admin/ungrouped.php:104
-#: ../app/views/consultation/admin/ungrouped.php:120
-#: ../app/views/consultation/admin/ungrouped.php:266
-#: ../app/views/consultation/admin/index.php:83
-msgid "Wollen Sie diese Termine wirklich löschen?"
-msgstr ""
-
-#: ../app/views/consultation/admin/ungrouped.php:231
-#: ../app/views/consultation/admin/index.php:147
-msgid "Grund bearbeiten"
-msgstr "Edit reason"
-
-#: ../app/views/consultation/admin/ungrouped.php:246
-#: ../app/views/consultation/admin/index.php:162
-msgid "Termin entfernen"
-msgstr "Remove date"
-
-#: ../app/views/consultation/admin/ungrouped.php:250
-#: ../app/views/consultation/admin/index.php:166
-msgid "Wollen Sie diesen Termin wirklich entfernen?"
-msgstr ""
-
-#: ../app/views/consultation/admin/cancel_slot.php:19
-msgid "Den folgenden Personen absagen"
-msgstr "Cancellate the following persons"
-
-#: ../app/views/consultation/admin/cancel_slot.php:38
-#: ../app/views/consultation/admin/cancel_slots.php:34
-#: ../app/views/consultation/admin/cancel_block.php:26
-msgid "Grund der Absage"
-msgstr ""
-
-#: ../app/views/consultation/admin/tab.php:6
-msgid "Aktueller Name"
-msgstr ""
-
-#: ../app/views/consultation/admin/cancel_slots.php:13
-msgid ""
-"Die folgenden Termine sind belegt und müssen abgesagt werden bevor sie "
-"gelöscht werden können."
-msgstr ""
-
-#: ../app/views/consultation/admin/cancel_slots.php:15
-msgid "Alternativ können Sie auch nur die freien Termine löschen."
-msgstr ""
-
-#: ../app/views/consultation/admin/cancel_slots.php:41
-msgid "Termine absagen und löschen"
-msgstr ""
-
-#: ../app/views/consultation/admin/cancel_slots.php:45
-msgid "Nur freie Termine löschen"
-msgstr ""
-
-#: ../app/views/consultation/admin/note.php:3
-msgid ""
-"Das Ändern der Information wird auch die Information aller Termine dieses "
-"Blocks ändern."
-msgstr ""
-"Changing the information will also change the information on all dates of "
-"this block."
-
-#: ../app/views/consultation/admin/note.php:13
-msgid "Information zu diesem Termin bearbeiten"
-msgstr ""
-
-#: ../app/views/consultation/admin/note.php:15
-msgid "Information zu diesem Terminblock bearbeiten"
-msgstr ""
-
-#: ../app/views/consultation/admin/note.php:20
-msgid "öffentlich einsehbar"
-msgstr "publicly accessible"
-
-#: ../app/views/consultation/admin/index.php:182
-msgid "Absagen"
-msgstr ""
-
-#: ../app/views/consultation/admin/edit_room.php:5
-msgid "Ort des Terminblocks bearbeiten"
-msgstr ""
-
-#: ../app/views/consultation/export/print.php:5
-msgid "Terminliste"
-msgstr ""
-
-#: ../app/views/consultation/export/print.php:65
-msgid "Grund anzeigen / verbergen"
-msgstr "Show / hide reason"
-
-#: ../app/views/consultation/export/print.php:69
-#, php-format
-msgid "Terminliste von %s"
-msgstr ""
-
-#: ../app/views/consultation/slot-occupation.php:5
-#, php-format
-msgid "%u von %u belegt"
-msgstr "%u reserved by %u"
-
-#: ../app/views/consultation/slot-occupation.php:10
-msgid "Eigene Buchung"
-msgstr ""
-
-#: ../app/views/consultation/slot-occupation.php:12
-msgid "belegt"
-msgstr "reserved"
-
-#: ../app/views/consultation/slot-occupation.php:19
-#, php-format
-msgid "%u von %u frei"
-msgstr ""
-
-#: ../app/views/consultation/slot-occupation.php:24
-msgid "frei"
-msgstr "available"
-
-#: ../app/views/consultation/block-description.php:19
-msgid "öffentlich sichtbar"
-msgstr ""
-
-#: ../app/views/consultation/block-description.php:20
-msgid "Die Namen der buchenden Person sind sichtbar"
-msgstr ""
-
-#: ../app/views/search/globalsearch/index.php:21
-#: ../app/views/files_dashboard/_search_active_filters.php:16
-msgid "Aktive Filter"
-msgstr "Active filters"
-
-#: ../app/views/search/globalsearch/index.php:32
-#, php-format
-msgid ""
-"Leider ist Ihr Suchbegriff zu kurz. Der Suchbegriff muss mindestens \"%s\" "
-"Zeichen lang sein."
-msgstr ""
-"Unfortunately, your search term is too short. The search term must be at "
-"least \"%s\" characters long."
-
-#: ../app/views/search/globalsearch/index.php:38
-msgid "Filter aufheben"
-msgstr "Reset filter"
-
-#: ../app/views/search/globalsearch/index.php:41
-msgid "Unterveranstaltungen anzeigen"
-msgstr "Show sub-courses"
-
-#: ../app/views/search/globalsearch/index.php:42
-msgid "Unterveranstaltungen ausblenden"
-msgstr "Hide sub-courses"
-
-#: ../app/views/search/globalsearch/index.php:49
-#, php-format
-msgid ""
-"Leider konnten zu Ihrem Suchbegriff \"%s\" keine Treffer gefunden werden.  "
-"Haben Sie sich vielleicht verschrieben?"
-msgstr ""
-"Unfortunately no match could be found for your search term \"%s\". Did you "
-"make a typo?"
-
-#: ../app/views/search/module/show.php:47
-#: ../app/views/shared/modul/overview.php:58
-msgid "Kapazität Modul"
-msgstr "Module capacity"
-
-#: ../app/views/search/module/show.php:59
-#: ../app/views/shared/modul/overview.php:70
-#: ../app/views/shared/modul/_modul.php:173
-#: ../app/views/module/module/modul.php:579
-msgid "Prüfungsebene"
-msgstr "Time of examination"
-
-#: ../app/views/search/module/show.php:65
-#: ../app/views/shared/modul/overview.php:76
-msgid "Prüfungsvorleistung Modul"
-msgstr "Module prerequisite for admission to any examination"
-
-#: ../app/views/search/module/show.php:71
-#: ../app/views/shared/modul/overview.php:82
-msgid "Prüfungsleistung Modul"
-msgstr "Module examination"
-
-#: ../app/views/search/module/show.php:77
-#: ../app/views/shared/modul/overview.php:88
-#: ../app/views/shared/modul/_modul.php:131
-#: ../app/views/module/module/modul.php:484
-msgid "Kompetenzziele"
-msgstr "Skills to be acquired in this module"
-
-#: ../app/views/search/module/show.php:92
-#: ../app/views/shared/modul/overview.php:102
-msgid "Semesterveranstaltungen"
-msgstr "Semester courses"
-
-#: ../app/views/search/module/show.php:94
-#: ../app/views/shared/modul/overview.php:104
-msgid "Prüfungsleistung"
-msgstr "Examination"
-
-#: ../app/views/search/module/show.php:108
-msgid "Kapazität"
-msgstr "Capacity"
-
-#: ../app/views/search/module/show.php:136
-#: ../app/views/shared/modul/overview.php:169
-#: ../app/views/shared/modul/_modul_ohne_lv.php:24
-#: ../app/views/shared/modul/_pruefungen.php:5
-#: ../app/views/shared/modul/_modullv.php:62
-#: ../app/views/module/module/modulteil.php:344
-#: ../app/views/module/module/modul.php:594
-msgid "Prüfungsvorleistung"
-msgstr "Exam prerequisites"
-
-#: ../app/views/search/module/show.php:139
-#: ../app/views/shared/modul/overview.php:173
-#: ../app/views/shared/modul/_modul_ohne_lv.php:29
-#: ../app/views/shared/modul/_pruefungen.php:6
-#: ../app/views/shared/modul/_modullv.php:67
-msgid "Prüfungsform"
-msgstr "Type of examination"
-
-#: ../app/views/search/module/show.php:151
-#, php-format
-msgid ""
-"In der Fassung des <b>%d</b>. Beschlusses vom <b>%s</b>. Bitte beachten Sie: "
-"Die Modulinformationen stehen an dieser Stelle ohne Gewähr."
-msgstr ""
-"Version from <b>%d</b>. Decision from <b>%s</b>. Please bear in mind that "
-"the module information are provided here without limit or warranty."
-
-#: ../app/views/search/module/show.php:153
-msgid ""
-"Bitte beachten Sie: Die Modulinformationen stehen an dieser Stelle ohne "
-"Gewähr."
-msgstr ""
-"Please note: The module information are provided without limit or warranty "
-"here."
-
-#: ../app/views/search/module/_drill_down_list.php:4
-#: ../app/views/search/module/_drill_down_list.php:5
-#: ../app/views/tour/admin_overview.php:14
-msgid "Auswahl aufheben"
-msgstr "Cancel choice"
-
-#: ../app/views/search/module/_drill_down_list.php:50
-msgid "Bereich ausgewählt"
-msgstr "Area selected"
-
-#: ../app/views/search/module/index.php:17
-#, php-format
-msgid "Gefundene Module für <i>%s</i>"
-msgstr "Found modules for <i>%s</i>"
-
-#: ../app/views/search/module/index.php:19
-#: ../app/views/module/module/index.php:5
-#, php-format
-msgid "%s Modul"
-msgid_plural "%s Module"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/search/module/index.php:32
-msgid "Moduldeskriptor"
-msgstr "Module descriptor"
-
-#: ../app/views/search/module/index.php:36
-msgid "Modultitel"
-msgstr "Module title"
-
-#: ../app/views/search/module/index.php:37
-#: ../app/views/shared/version/_version.php:6
-#: ../app/views/shared/studiengang/_studiengang_info.php:34
-#: ../app/views/shared/studiengang/_studiengang.php:22
-#: ../app/views/shared/studiengang/_stgteilversion.php:5
-#: ../app/views/resources/admin/user_permissions.php:85
-#: ../app/views/module/module/modul.php:101
-#: ../app/views/studiengaenge/versionen/version.php:10
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:54
-msgid "Gültigkeit"
-msgstr "Validity"
-
-#: ../app/views/search/module/_infobox_info.php:1
-msgid "Als Suchbegriff sind zugelassen:"
-msgstr "Valid search keywords:"
-
-#: ../app/views/search/module/_infobox_info.php:3
-msgid "Modulbezeichnung / Modulcode"
-msgstr "Module description / Module code"
-
-#: ../app/views/search/module/_infobox_info.php:4
-msgid "Name eines Studiengangs"
-msgstr "Name of a course of study"
-
-#: ../app/views/search/module/_infobox_info.php:5
-msgid "Name eines Faches"
-msgstr "Name of a field of study"
-
-#: ../app/views/search/module/_infobox_info.php:6
-msgid "Name einer Einrichtung"
-msgstr "Name of an institute"
-
-#: ../app/views/search/angebot/detail.php:4
-msgid "Angebotene Studiengänge"
-msgstr "Available course of studies"
-
-#: ../app/views/search/angebot/detail.php:12
-msgid "Informationen zum Studiengang"
-msgstr "Information on course of study"
-
-#: ../app/views/search/archive/index.php:18
-msgid "Name des/der Lehrenden"
-msgstr "Lecturer name"
-
-#: ../app/views/search/archive/index.php:21
-msgid "Lehrende suchen"
-msgstr "Search lecturers"
-
-#: ../app/views/search/archive/index.php:119
-#, php-format
-msgid "Soll die Veranstaltung %1$s wirklich aus dem Archiv gelöscht werden?"
-msgstr "Do you really want to delete the course %1$s from the archive?"
-
-#: ../app/views/search/stgtable/index.php:23
-msgid "Studiengang anzeigen"
-msgstr "Show course of study"
-
-#: ../app/views/search/studiengaenge/_studiengang.php:31
-msgid "Modulübersicht"
-msgstr "Module overview"
-
-#: ../app/views/search/studiengaenge/einfach.php:3
-msgid "Ausprägungen"
-msgstr "Characteristics"
-
-#: ../app/views/search/studiengaenge/verlauf.php:11
-#, php-format
-msgid "%s im Studiengang %s"
-msgstr "%s in course of study %s"
-
-#: ../app/views/search/studiengaenge/verlauf.php:26
-msgid "Name / CP"
-msgstr "Name / CP"
-
-#: ../app/views/search/studiengaenge/verlauf.php:61
-#: ../app/views/search/studiengaenge/verlauf.php:103
-#, php-format
-msgid "%s (Kommentar)"
-msgstr "%s (comment)"
-
-#: ../app/views/search/studiengaenge/verlauf.php:62
-#: ../app/views/search/studiengaenge/verlauf.php:104
-msgid "Zusatzinformationen zum Studiengangsabschnitt"
-msgstr "Additional information for the section of course of study"
-
-#: ../app/views/search/studiengaenge/verlauf.php:88
-#, php-format
-msgid "%s Semester (%s)"
-msgstr "%s semester (%s)"
-
-#: ../app/views/search/studiengaenge/info.php:10
-msgid "Zahlen und Fakten"
-msgstr "Numbers and facts"
-
-#: ../app/views/search/studiengaenge/info.php:19
-msgid "Studiengangsname"
-msgstr "Course of study name"
-
-#: ../app/views/search/studiengaenge/info.php:27
-#: ../app/views/course/timesrooms/editSemester.php:20
-msgid "Dauer"
-msgstr "Duration"
-
-#: ../app/views/search/studiengaenge/info.php:35
-msgid "Abschlussgrad"
-msgstr "Academic degree"
-
-#: ../app/views/search/studiengaenge/info.php:51
-msgid "Art der Zulassung"
-msgstr "Type of admission"
-
-#: ../app/views/search/studiengaenge/info.php:59
-msgid "Besondere Zugangsvoraussetzungen"
-msgstr "Special admission requirements"
-
-#: ../app/views/search/studiengaenge/info.php:126
-msgid "Dokumente: Ordnungen, Formulare, Informationen"
-msgstr "Documents: Regulations, forms, information"
-
-#: ../app/views/search/studiengaenge/mehrfach.php:27
-msgid "Studienverlaufsplan anzeigen"
-msgstr "Show study plan"
-
-#: ../app/views/oer/market/search.php:6 ../app/views/oer/market/type.php:6
-msgid "Keine Materialien gefunden"
-msgstr ""
-
-#: ../app/views/oer/market/abo.php:8
-#, php-format
-msgid "Ich möchte Nachrichten bekommen über neue Inhalte im %s"
-msgstr ""
-
-#: ../app/views/oer/market/index.php:40
-msgid "Neuste Materialien"
-msgstr ""
-
-#: ../app/views/oer/market/index.php:62
-msgid "Neuigkeiten abbestellen"
-msgstr ""
-
-#: ../app/views/oer/market/index.php:62
-msgid "Neuigkeiten abonnieren"
-msgstr ""
-
-#: ../app/views/oer/market/add_to_course.php:13
-msgid "Veranstaltungsliste"
-msgstr "List of courses"
-
-#: ../app/views/oer/market/add_to_course.php:36
-msgid "Zur Veranstaltung hinzufügen"
-msgstr ""
-
-#: ../app/views/oer/market/add_to_course.php:49
-msgid ""
-"Lernmaterialien können nur in eigene Veranstaltungen kopiert werden. "
-"Erstellen Sie eine Veranstaltung oder tragen Sie sich in eine ein."
-msgstr ""
-
-#: ../app/views/oer/market/review.php:5 ../app/views/oer/market/review.php:7
-#: ../app/views/oer/market/review.php:8 ../app/views/oer/market/review.php:9
-#: ../app/views/oer/market/review.php:10
-msgid "Sterne"
-msgstr ""
-
-#: ../app/views/oer/market/review.php:6
-msgid "Stern"
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:1
-msgid "Wozu die Lizenzen im Lernmarktplatz?"
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:4
-msgid ""
-"Urheberrecht und Lizenzrecht ist echt kompliziert. In jedem Land der Erde "
-"gibt es andere Auslegungen und als normaler Internetnutzer ist man schnell "
-"überfordert mit den Möglichkeiten, aber auch mit den Pflichten."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:7
-msgid ""
-"Wer bei den üblichen und meist kommerziellen Plattformen etwas hochlädt, hat "
-"den AGB zugestimmt, dass alle eigenen Dateien unter einer Speziallizenz "
-"veröffentlicht werden. Wer die AGB nicht gelesen hat, weiß nichts davon, "
-"weshalb das immer so einfach erscheint. De facto gibt man beim Upload eines "
-"Fotos aber meist alle Rechte auf die Datei ab. So einen fiesen Umgang soll "
-"es bei Stud.IP absolut nicht geben! Wer Materialien hier hoch lädt, soll "
-"weiterhin volle Kontrolle über die Nutzung der eigenen Dateien haben."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:9
-msgid "Was ist uns wichtig?"
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:11
-msgid ""
-"Um eine Lizenz kommen wir beim Lernmaterialienmarktplatz nicht herum. Und "
-"illegales Gemauschel wollen wir auch nicht. Wir gehen davon aus, dass alle, "
-"die auf dem Marktplatz eine Datei frei zur Verfügung stellen, auch möchte, "
-"dass die Datei am Ende auch verwendet wird und verwendet werden darf. "
-"Deshalb gilt:"
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:13
-msgid "Dateien sollen zum Selbstlernen verwendet werden."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:14
-msgid ""
-"Die Dateien sollen im Rahmen von Veranstaltungen zum Einsatz kommen zum "
-"Beispiel als Vorlesungsfolien."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:15
-msgid ""
-"Die Dateien sollen als Lernmaterial vom Lehrenden an die Studierenden weiter "
-"gegeben werden."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:16
-msgid "Dabei soll Geld keine Rolle spielen."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:19
-msgid "Lizenzen auf dem Marktplatz"
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:21
-msgid ""
-"Zum Glück gibt es kluge Menschen, die sich zum Thema <em>Lizenzen</em> kluge "
-"Gedanken gemacht haben. Daher gibt es die sogenannten CreativeCommons-"
-"Lizenzen. Die sind international gültig und besagen genau das, was oben "
-"gefordert ist. Damit haben alle, die den Marktplatz nutzen, absolute "
-"Rechtssicherheit. Diese Lizenzen kommen auch außerhalb des Marktplatzes sehr "
-"oft zum Einsatz. Musikerinnen und Musiker lizensieren ihre Musikrohdateien "
-"damit, Schriftsteller und Schriftstellerinnen ihre Gedichte und Lehrende "
-"auch ganz natürlich ihre Vorlesungsfolien. Die einzige echte Auflage ist, "
-"dass bei Weitergabe oder bei der Bearbeitung der Materialien alle Autorinnen "
-"und Autoren in irgendeiner Form transparent genannt werden müssen!"
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:24
-msgid ""
-"Dabei eine kleine Warnung: Wenn Sie vorhaben, mit ihren Vorlesungsfolien "
-"oder Übungsblättern und Musterlösungen noch Millionen Euro zu verdienen, "
-"dann stellen Sie diese Materialien nicht auf den Marktplatz, denn die "
-"Nutzung aller Materialien ist unentgeltlich (selbstverständlich verdienen "
-"auch wir nichts damit) und die Materialien können, wenn sie einmal "
-"heruntergeladen worden sind, auch noch beliebig weiter verteilt werden. Es "
-"gibt zwar eine CreativeCommons-Lizenz, die kommerzielle Nutzung ausschließt. "
-"Die ist aber explizit für den Marktplatz nicht praktikabel. Denn stellen Sie "
-"sich diese Frage: Wenn Lehrende Material vom Marktplatz innerhalb ihrer "
-"Veranstaltungen verwenden und zum Beispiel eine Infografik aus einer "
-"Präsentation an die Wand projizieren, ist das dann eine kommerzielle "
-"Nutzung? Ja, irgendwie schon, denn sie werden natürlich für ihre "
-"Lehrtätigkeit bezahlt. Wir legen besonderen Wert auf die Rechtssicherheit "
-"aller Nutzer und Nutzerinnen. Deswegen kommen auf unseren Marktplatz keine "
-"Materialien, die die kommerzielle Nutzung ausschließen. Nichtsdestotrotz "
-"haben Sie weiterhin alle Rechte, ihre Vorlesungsfolien auf anderem Wege über "
-"einen Verlag zu veröffentlichen und Tantiemen zu bekommen."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:26
-msgid "Was darf ich mit den Materialien machen?"
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:28
-msgid "Grundsätzlich können Sie also mit Materialien im Marktplatz immer:"
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:30
-msgid "Die Dateien können Sie selbst nutzen."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:31
-msgid ""
-"Die Dateien können Sie an andere Menschen weiter geben, sogar selbst auf "
-"anderen Seiten hochladen."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:32
-msgid ""
-"Dabei müssen Sie immer den Originalautor der Datei nennen. Tun sie das in "
-"einem Beschreibungstext oder innerhalb der Datei."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:33
-msgid "Sie können die Materialien auch verändern und verbessern."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:34
-msgid ""
-"Auch dabei müssen Sie den Originalautor bzw. alle vorherigen Autoren des "
-"Materials nennen und das neue Werk gegebenenfalls unter dieselbe Lizenz "
-"stellen."
-msgstr ""
-
-#: ../app/views/oer/market/licenseinfo.php:36
-msgid ""
-"Wie gesagt: wir hoffen, dass dieser Weg für alle ein sehr intuitiver Weg "
-"ist, Materialien zu verbreiten und zu nutzen. Die meisten Menschen wollen "
-"sich keine Gedanken um Rechten und Pflichten in diesem Zusammenhang machen. "
-"Wir hoffen, dass wir diesen Menschen eine Freude mit dem Marktplatz machen "
-"können."
-msgstr ""
-
-#: ../app/views/oer/market/add_to_course_select_class.php:2
-msgid "Bereich auswählen"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:39
-msgid "Verzeichnisstruktur"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:63
-#: ../app/views/oer/market/details.php:352
-msgid "Zu Veranstaltung hinzufügen"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:91
-#: ../app/views/oer/market/_searchform.php:18
-#: ../app/views/oer/market/_searchform.php:100
-#: ../app/views/oer/mymaterial/edit.php:223
-msgid "Niveau"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:94
-#: ../app/views/oer/market/_searchform.php:102
-#: ../app/views/oer/mymaterial/edit.php:231
-msgid "Kindergarten"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:95
-#: ../app/views/oer/market/_searchform.php:103
-#: ../app/views/oer/mymaterial/edit.php:232
-msgid "Aktuelle Forschung"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:120
-#: ../app/views/oer/mymaterial/edit.php:256
-msgid "Lizenz"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:131
-msgid "Was heißt das?"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:144
-msgid "Zum Autor"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:178
-#, php-format
-msgid "Noch keine Beschreibung für den %s vorhanden."
-msgstr ""
-
-#: ../app/views/oer/market/details.php:180
-msgid "Jetzt eine eingeben."
-msgstr ""
-
-#: ../app/views/oer/market/details.php:210
-msgid "Reviews"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:217
-msgid "Geben Sie die erste Bewertung ab."
-msgstr ""
-
-#: ../app/views/oer/market/details.php:217
-msgid "Noch keine Bewertung abgegeben."
-msgstr ""
-
-#: ../app/views/oer/market/details.php:230
-#, php-format
-msgid "%s von 5 Sternen"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:293
-msgid "Darauf antworten"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:301
-#, php-format
-msgid "%s Kommentare dazu"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:306
-msgid "Dazu einen Kommentar schreiben"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:317
-msgid "Review schreiben"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:361
-msgid "Vollbild aktivieren"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:368
-msgid "Teilen und einbetten"
-msgstr ""
-
-#: ../app/views/oer/market/details.php:376
-msgid "Zugriffszahlen"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:5
-msgid "Aktiver Filter der Kategorie"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:10
-msgid "Filter der Kategorie entfernen"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:17
-msgid "Aktiver Filter für das Niveau"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:25
-msgid "Filter des Niveaus entfernen"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:39
-msgid "Suchformular zurücksetzen"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:46
-msgid "Suchfilter einstellen"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:80
-#: ../app/views/oer/mymaterial/edit.php:115
-msgid "Folien"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:93
-msgid "Alles"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:123
-msgid "Wertvolle Lernmaterialien entdecken!"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:124
-msgid ""
-"Neue und spannende Lernmaterialien zu finden, ist ganz einfach. Mit dem "
-"Entdeckermodus können Sie nach Schlagwörtern stöbern und durch Themengebiete "
-"surfen."
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:127
-msgid "Zum Entdeckermodus"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:134
-msgid "Wertvolle Materialien entdecken!"
-msgstr ""
-
-#: ../app/views/oer/market/_searchform.php:135
-msgid ""
-"Klicken Sie auf die Schlagwörter und entdecken Sie Lernmaterialien zum Thema."
-msgstr ""
-
-#: ../app/views/oer/market/embed.php:4
-msgid "Platzhalter zum Teilen in Stud.IP (Forum, Blubber, Wiki, Ankündigung)"
-msgstr ""
-
-#: ../app/views/oer/market/embed.php:10
-msgid "Teilen als Link"
-msgstr ""
-
-#: ../app/views/oer/market/embed.php:24
-msgid "Teilen als HTML-Schnipsel"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/index.php:2
-msgid "Es wurden noch keine Materialien bereitgestellt."
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:50
-msgid "Vorschau-Bilddatei (optional)"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:61
-msgid "Logo löschen"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:81
-msgid "Datei (gerne auch eine ZIP-Datei) auswählen"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:99
-msgid "Entwurf (nicht veröffentlicht)"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:106
-msgid "Automatisch erkennen"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:121
-msgid ""
-"Fehlt eine Kategorie? Kein Problem, arbeiten Sie stattdessen mit "
-"Schlagwörtern. Die sind viel flexibler."
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:128
-msgid "Vorschau-URL (optional)"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:135
-msgid "Autoren"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:153
-msgid "Person als Autor entfernen."
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:171
-msgid "Person als Autor/Autorin entfernen."
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:189
-msgid "Themen (am besten mindestens 5)"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:210
-msgid "Thema aus der Liste streichen"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/edit.php:258
-msgid ""
-"Ich erkläre mich bereit, dass meine Lernmaterialien unter der angegebenen "
-"Lizenz an alle Nutzenden freigegeben werden. Ich bestätige zudem, dass ich "
-"das Recht habe, diese Dateien frei zu veröffentlichen, weil entweder ich "
-"selbst sie angefertigt habe, oder sie von anderen Quellen mit kompatibler "
-"Lizenz stammen."
-msgstr ""
-
-#: ../app/views/oer/mymaterial/statistics.php:4
-msgid "Gesamtzugriffe"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/_material_list.php:5
-msgid "Material"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/_material_list.php:6
-#: ../app/views/course/lti/grades_user.php:12
-#: ../app/views/course/feedback/_results.php:25
-#: ../app/views/course/feedback/_add_edit_entry_form.php:9
-#: ../app/views/admin/plugin/search.php:17
-msgid "Bewertung"
-msgstr "Rating"
-
-#: ../app/views/oer/mymaterial/_material_list.php:54
-msgid "Lernmaterial bearbeiten"
-msgstr ""
-
-#: ../app/views/oer/mymaterial/_material_list.php:60
-msgid "Dieses Material wirklich löschen?"
-msgstr ""
-
-#: ../app/views/oer/endpoints/index.php:6
-msgid "Public-Key"
-msgstr ""
-
-#: ../app/views/oer/endpoints/index.php:10
-msgid "MD5-Hash"
-msgstr ""
-
-#: ../app/views/oer/endpoints/index.php:14
-msgid "Schlüssel"
-msgstr ""
-
-#: ../app/views/oer/endpoints/index.php:21
-msgid "Statistik"
-msgstr ""
-
-#: ../app/views/oer/endpoints/index.php:24
-msgid "Anzahl verbundener Server"
-msgstr ""
-
-#: ../app/views/oer/endpoints/index.php:28
-msgid "Anzahl eigener Materialien"
-msgstr ""
-
-#: ../app/views/oer/endpoints/index.php:32
-msgid "Anzahl Materialien von anderen Servern"
-msgstr ""
-
-#: ../app/views/oer/endpoints/index.php:37
-msgid "API-Endpoints"
-msgstr ""
-
-#: ../app/views/oer/oai/identify.php:10
-msgid ""
-"Lernmaterialien vom StudIP-Lernmarktplatz - Unter Angabe von folgenden "
-"Materialgruppen erhalten Sie frei zugängliche Materialien."
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:3
-msgid "Lernmarktplatz-Server"
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:9
-msgid "Ein Hash des Public-Keys des Servers."
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:9
-msgid "Key-Hash"
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:10
-msgid "Index-Server"
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:11
-#: ../app/views/admin/ilias_interface/index.php:20
-#: ../app/views/admin/cronjobs/schedules/display.php:10
-#: ../app/views/admin/cronjobs/schedules/index.php:83
-#: ../app/views/admin/cronjobs/schedules/edit.php:35
-#: ../app/views/admin/cronjobs/tasks/index.php:25
-#: ../app/views/admin/plugin/index.php:39
-#: ../app/views/tour/admin_overview.php:37 ../app/views/event_log/edit.php:24
-#: ../app/views/help_content/admin_overview.php:19
-msgid "Aktiv"
-msgstr "Active"
-
-#: ../app/views/oer/admin/hosts.php:20
-msgid "Das ist Ihr Stud.IP"
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:32
-msgid ""
-"Der Key hat ein Carriage-Return Zeichen, weshalb der Hash des Public-Keys "
-"vermutlich vom Original-Hash abweicht."
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:37
-msgid "Als Index-Server aktivieren/deaktivieren"
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:44
-msgid ""
-"Diesen Server als Indexserver aktivieren. Suchanfragen werden immer auch an "
-"ihn gerichtet. Sie sollten nur einen Indexserver verwenden."
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:48
-msgid "Dieser Server steht nicht als Indexserver zur Verfügung."
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:57
-msgid "Soll dieser Server und seine OERs für uns relevant sein?"
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:66
-msgid "Diesen Server nach weiteren bekannten Hosts fragen."
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:79
-msgid "Werden Sie Teil des weltweiten Stud.IP Lernmarktplatzes!"
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:81
-msgid ""
-"Der Lernmarktplatz ist ein Ort des Austauschs von kostenlosen und freien "
-"Lernmaterialien. Daher wäre es schade, wenn er nur auf Ihr einzelnes Stud.IP "
-"beschränkt wäre. Der Lernmarktplatz ist daher als dezentrales Netzwerk "
-"konzipiert, bei dem alle Nutzer aller Stud.IPs sich gegenseitig "
-"Lernmaterialien tauschen können und nach Lernmaterialien anderer Nutzer "
-"suchen können. <em>Dezentral</em> heißt dieses Netzwerk, weil es nicht einen "
-"einzigen zentralen Server gibt, der wie eine große Suchmaschine alle "
-"Informationen bereit hält. Stattdessen sind im besten Fall alle Stud.IPs mit "
-"allen anderen Stud.IPs direkt vernetzt. So ein dezentrales Netz ist sehr "
-"ausfallsicher und es passt zur Opensource-Idee von Stud.IP, weil man sich "
-"von keiner zentralen Institution abhängig macht. Aber Ihr Stud.IP muss "
-"irgendwo einen ersten Kontakt zum großen Netzwerk aller Lernmarktplätze "
-"finden, um loslegen zu können. Wählen Sie dazu irgendeinen der unten "
-"aufgeführten Server aus. Sie werden Index-Server genannt und bilden das Tor "
-"zum Rest des ganzen Netzwerks. Achten Sie darauf, dass Sie mit mindestens "
-"einem, aber auch nicht zu vielen Indexservern verbunden sind."
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:86
-msgid "Stud.IP Entwicklungsserver"
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:89
-msgid "Nein, danke!"
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:99
-msgid "Index-Server hinzufügen"
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:109
-msgid "Server hinzufügen"
-msgstr ""
-
-#: ../app/views/oer/admin/hosts.php:115
-msgid "Serverdaten aktualisieren"
-msgstr ""
-
-#: ../app/views/oer/admin/add_new_host.php:3
-msgid "Adresse des Servers plugin.php...."
-msgstr ""
-
-#: ../app/views/oer/embed/_link.php:3
-#, fuzzy, php-format
-msgid "Zum %s"
-msgstr "Room %s"
-
-#: ../app/views/shared/fachbereich_filter.php:1
-#: ../app/views/shared/filter.php:111
-msgid "Fachbereiche"
-msgstr "Faculty"
-
-#: ../app/views/shared/fachbereich_filter.php:4
-msgid "-- Fachbereich wählen --"
-msgstr "-- Select faculty --"
-
-#: ../app/views/shared/mvv_tree.php:12
-msgid "Modulbeschreibung"
-msgstr "Module description"
-
-#: ../app/views/shared/version/_version.php:8
-#: ../app/views/shared/studiengang/_studiengang.php:25
-#: ../app/views/shared/studiengang/_stgteilversion.php:7
-#: ../app/views/module/module/modul.php:105
-#: ../app/views/studiengaenge/versionen/version.php:13
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:58
-msgid "von Semester:"
-msgstr "from semester:"
-
-#: ../app/views/shared/version/_version.php:13
-#: ../app/views/shared/studiengang/_studiengang.php:37
-#: ../app/views/shared/studiengang/_stgteilversion.php:15
-#: ../app/views/module/module/modul.php:122
-#: ../app/views/studiengaenge/versionen/version.php:30
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:75
-msgid "bis Semester:"
-msgstr "until semester:"
-
-#: ../app/views/shared/version/_version.php:18
-#: ../app/views/shared/studiengang/_studiengang.php:44
-#: ../app/views/shared/studiengang/_stgteilversion.php:20
-#: ../app/views/module/module/modul.php:125
-#: ../app/views/module/module/modul.php:137
-#: ../app/views/module/module/modul.php:194
-#: ../app/views/studiengaenge/versionen/version.php:33
-#: ../app/views/studiengaenge/versionen/version.php:45
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:78
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:90
-msgid "unbegrenzt gültig"
-msgstr "valid without a time limit"
-
-#: ../app/views/shared/version/_version.php:22
-#: ../app/views/shared/studiengang/_studiengang.php:31
-#: ../app/views/shared/studiengang/_stgteilversion.php:11
-#: ../app/views/module/module/modul.php:144
-#: ../app/views/studiengaenge/versionen/version.php:52
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:97
-msgid "Beschlussdatum:"
-msgstr "Decision date:"
-
-#: ../app/views/shared/version/_version.php:26
-#: ../app/views/shared/studiengang/_studiengang.php:47
-#: ../app/views/shared/studiengang/_stgteilversion.php:23
-#: ../app/views/module/module/modul.php:155
-#: ../app/views/studiengaenge/versionen/version.php:60
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:109
-msgid "Fassung:"
-msgstr "Version:"
-
-#: ../app/views/shared/version/_version.php:55
-#: ../app/views/shared/studiengang/_studiengang.php:97
-#: ../app/views/shared/studiengang/_stgteilversion.php:41
-#: ../app/views/studiengaenge/versionen/version.php:109
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:173
-msgid "Status der Bearbeitung"
-msgstr "Processing status"
-
-#: ../app/views/shared/version/_version.php:61
-msgid "Kommentar Bearbeitungsstatus:"
-msgstr "Comment on the processing state:"
-
-#: ../app/views/shared/version/_versionmodule.php:39
-msgid "Liste der Studiengangteilabschnitte"
-msgstr "List of sections of component of course of study"
-
-#: ../app/views/shared/download/mhb.php:42
-#, php-format
-msgid "Modulhandbuch %s"
-msgstr ""
-
-#: ../app/views/shared/download/mhb.php:44
-#, php-format
-msgid "Datum %s"
-msgstr ""
-
-#: ../app/views/shared/download/mhb.php:73
-msgid "dem Modul zugoerdnete Veranstaltungen"
-msgstr ""
-
-#: ../app/views/shared/form_dokumente.php:3
-msgid "Referenzierte Dokumente und Materialien"
-msgstr "Referenced documents and materials"
-
-#: ../app/views/shared/form_dokumente.php:36
-msgid "Fügen Sie Dokumente und Materialien hinzu."
-msgstr "Add documents and materials."
-
-#: ../app/views/shared/form_dokumente.php:38
-msgid "Es wurden keine Dokumente zugeordnet."
-msgstr "No documents have been assigned."
-
-#: ../app/views/shared/form_dokumente.php:53
-msgid "Dokument entfernen"
-msgstr "Remove document"
-
-#: ../app/views/shared/form_dokumente.php:60
-msgid "Kommentar bearbeiten"
-msgstr "Edit comment"
-
-#: ../app/views/shared/form_dokumente.php:65
-msgid "Anmerkungen/Kommentare"
-msgstr "Comments"
-
-#: ../app/views/shared/form_dokumente.php:72
-msgid ""
-"Die Änderungen werden erst gespeichert, wenn das Hauptformular gespeichert "
-"wurde!"
-msgstr "Changes will only be saved when the main form has been saved!"
-
-#: ../app/views/shared/form_dokumente.php:90
-msgid "Neues Dokument anlegen und hinzufügen"
-msgstr "Add new document"
-
-#: ../app/views/shared/form_dokumente.php:100
-msgid ""
-"Die Reihenfolge der zugeordneten Dokumente kann durch Anklicken und Ziehen "
-"geändert werden. Für die Zuordnung eines Dokumentes kann ein zusätzlicher "
-"Text angegeben werden."
-msgstr ""
-"The order of assigned documents can be changed by drag and drop. An "
-"additional text can be provided for document assignment."
-
-#: ../app/views/shared/language_chooser.php:11
-msgid "Sprache zuordnen"
-msgstr "Assign language"
-
-#: ../app/views/shared/modul_variants.php:1
-msgid "Folgendes Modul ist Variante dieses Moduls:"
-msgid_plural "Folgende Module sind Varianten dieses Moduls"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/shared/abschluss_filter.php:4
-msgid "-- Abschluss wählen --"
-msgstr "-- Select a degree --"
-
-#: ../app/views/shared/contacts/range.php:12
-msgid "Ansprechpartner hinzufügen"
-msgstr "Add contact person"
-
-#: ../app/views/shared/contacts/range.php:15
-msgid "Reihenfolge der Ansprechpartner ändern"
-msgstr "Change order of contact persons"
-
-#: ../app/views/shared/contacts/range.php:21
-#: ../app/views/materialien/files/range.php:24
-msgid "Pos."
-msgstr "Pos."
-
-#: ../app/views/shared/contacts/range.php:22
-#: ../app/views/shared/contacts/index.php:14
-msgid "Name/Institution"
-msgstr "Name/Institution"
-
-#: ../app/views/shared/contacts/range.php:24
-msgid "Ansprechpartner-Typ"
-msgstr "Type of contact person"
-
-#: ../app/views/shared/contacts/range.php:48
-#: ../app/views/shared/contacts/details.php:59
-msgid "Ansprechpartner bearbeiten"
-msgstr "Edit contact person"
-
-#: ../app/views/shared/contacts/range.php:54
-#: ../app/views/shared/contacts/details.php:65
-msgid "Ansprechpartner-Zuordnung löschen"
-msgstr "Delete assignment of contact person"
-
-#: ../app/views/shared/contacts/range.php:57
-#: ../app/views/shared/contacts/details.php:68
-msgid "Wollen Sie die Zuordnung des Ansprechpartners wirklich entfernen?"
-msgstr "Do you really want to remove the assignment of the contact person?"
-
-#: ../app/views/shared/contacts/add_ansprechpartner.php:74
-#: ../app/views/materialien/files/add_dokument.php:65
-msgid "oder"
-msgstr "or"
-
-#: ../app/views/shared/contacts/add_ansprechpartner.php:78
-msgid "Neuer externer Ansprechpartner"
-msgstr "New external contact person"
-
-#: ../app/views/shared/contacts/add_ansprechpartner.php:85
-msgid "Vorname (optional)"
-msgstr "First name (optional)"
-
-#: ../app/views/shared/contacts/add_ansprechpartner.php:104
-msgid "Alternative Kontaktmail (optional)"
-msgstr "Alternative contact mail (optional)"
-
-#: ../app/views/shared/contacts/index.php:15
-msgid "Alternative Kontaktmail"
-msgstr "Alternative contact mail"
-
-#: ../app/views/shared/contacts/index.php:39
-msgid "Ansprechpartner zuordnen"
-msgstr "Assign contact person"
-
-#: ../app/views/shared/contacts/index.php:45
-msgid "Alle Zuordnungen löschen"
-msgstr "Delete all assignments"
-
-#: ../app/views/shared/contacts/index.php:48
-msgid "Wollen Sie wirklich alle Zuordnungen entfernen?"
-msgstr "Do you really want to delete all assignments?"
-
-#: ../app/views/shared/contacts/index.php:56
-msgid "Externe Person löschen"
-msgstr "Delete external person"
-
-#: ../app/views/shared/contacts/index.php:59
-msgid "Wollen Sie die externe Person wirklich löschen?"
-msgstr "Do you really want to delete the external person?"
-
-#: ../app/views/shared/contacts/details.php:3
-msgid "Diese Person wurde noch nicht referenziert."
-msgstr "This person has not been referenced yet."
-
-#: ../app/views/shared/log_event/show.php:13
-msgid "Kompaktdarstellung"
-msgstr "Compact presentation"
-
-#: ../app/views/shared/log_event/show.php:15
-msgid "Detaildarstellung"
-msgstr "Detailed view"
-
-#: ../app/views/shared/log_event/show.php:44
-msgid "Element:"
-msgstr "Element:"
-
-#: ../app/views/shared/log_event/show.php:47
-msgid "Wert:"
-msgstr "Value:"
-
-#: ../app/views/shared/log_event/show.php:55
-#, php-format
-msgid "Eintrag %s - %s von %s"
-msgstr "Entry %s - %s out of %s"
-
-#: ../app/views/shared/log_event/show.php:64 ../app/views/event_log/show.php:98
-msgid "keine Einträge gefunden"
-msgstr "no entry found"
-
-#: ../app/views/shared/filter.php:30
-msgid "Zugeordnet zu Objekten"
-msgstr "Assigned to objects"
-
-#: ../app/views/shared/filter.php:86
-msgid "Verantw. Einrichtung"
-msgstr "Responsible institute"
-
-#: ../app/views/shared/kategorie_filter.php:4
-msgid "-- Kategorie wählen --"
-msgstr "-- Select category --"
-
-#: ../app/views/shared/modul/_modullvs.php:4
-msgid "Modulveran&shy;staltung"
-msgstr "Module course label"
-
-#: ../app/views/shared/modul/_modullvs.php:5
-msgid "Lehrveranstaltungs&shy;form"
-msgstr "Course type"
-
-#: ../app/views/shared/modul/_modullvs.php:6
-msgid "Veranstaltungs&shy;titel"
-msgstr "Course title"
-
-#: ../app/views/shared/modul/_modullvs.php:7
-#: ../app/views/shared/modul/_modul.php:146
-#: ../app/views/shared/modul/_modullv.php:15
-#: ../app/views/module/module/modulteil.php:203
-msgid "SWS"
-msgstr "SWS"
-
-#: ../app/views/shared/modul/_modullvs.php:8
-#: ../app/views/shared/modul/_modullv.php:19
-msgid "Workload Präsenz"
-msgstr "Workload of compulsory attendance"
-
-#: ../app/views/shared/modul/_modullvs.php:9
-msgid "Workload Vor- / Nach&shy;bereitung"
-msgstr "Workload of preparation / homework etc"
-
-#: ../app/views/shared/modul/_modullvs.php:10
-msgid "Workload selbstge&shy;staltete Arbeit"
-msgstr "Workload of independent learning"
-
-#: ../app/views/shared/modul/_modullvs.php:11
-#: ../app/views/shared/modul/_modul_ohne_lv.php:10
-#: ../app/views/shared/modul/_modullv.php:31
-msgid "Workload Prüfung incl. Vorbereitung"
-msgstr "Workload (examination and preparation)"
-
-#: ../app/views/shared/modul/_modullvs.php:12
-msgid "Workload Summe"
-msgstr "Sum workload"
-
-#: ../app/views/shared/modul/_modullvs.php:71
-msgid "Workload modulbezogen"
-msgstr "Workload by module"
-
-#: ../app/views/shared/modul/_modullvs.php:78
-#: ../app/views/shared/modul/_modullv.php:52
-msgid "Workload Modul insgesamt"
-msgstr "Total module workload"
-
-#: ../app/views/shared/modul/overview.php:29
-msgid ""
-"Nachricht an alle Veranstaltungteilnehmer die diesem Modul zugeordnet sind."
-msgstr "Message to all course participants that are assignet to this module."
-
-#: ../app/views/shared/modul/overview.php:134
-#: ../app/views/my_studygroups/_course.php:21
-#: ../app/views/my_courses/_course.php:34
-#: ../app/views/calendar/single/seminar_events.php:66
-msgid "[versteckt]"
-msgstr "[hidden]"
-
-#: ../app/views/shared/modul/_modul_ohne_lv.php:5
-#: ../app/views/shared/modul/_modullv.php:27
-msgid "Workload selbstgestaltete Arbeit"
-msgstr "Workload of independent learning"
-
-#: ../app/views/shared/modul/_modul_ohne_lv.php:15
-#: ../app/views/shared/modul/_modullv.php:35
-msgid "Workload insgesamt"
-msgstr "Workload total"
-
-#: ../app/views/shared/modul/_regularien.php:4
-msgid "Regularien"
-msgstr "Prerequisites and conditions"
-
-#: ../app/views/shared/modul/_regularien.php:5
-msgid "Teilnahme&shy;voraussetzungen"
-msgstr "Prerequisites"
-
-#: ../app/views/shared/modul/_regularien.php:6
-msgid "Angebots&shy;rhythmus"
-msgstr "Frequency"
-
-#: ../app/views/shared/modul/_regularien.php:7
-msgid "Anwesenheits&shy;pflicht"
-msgstr "Compulsory attendance"
-
-#: ../app/views/shared/modul/_regularien.php:8
-msgid "Gewicht an Modulnote in %"
-msgstr "Share on module grade in percent"
-
-#: ../app/views/shared/modul/_pruefungen.php:36
-msgid "Gesamtmodul"
-msgstr "Final exam of module"
-
-#: ../app/views/shared/modul/_modul.php:17
-#, php-format
-msgid ""
-"In der Fassung des <b>%s</b>. Beschlusses vom <b>%s</b> (<b>%s</b>) / "
-"Version <b>%s</b>."
-msgstr ""
-"Version of <b>%s</b>. Decision from <b>%s</b> (<b>%s</b>) / Version <b>%s</"
-"b>."
-
-#: ../app/views/shared/modul/_modul.php:26
-#, php-format
-msgid "In der Fassung des <b>%s</b>. Beschlusses vom <b>%s</b>."
-msgstr "Version of <b>%s</b>. Decision from <b>%s</b>."
-
-#: ../app/views/shared/modul/_modul.php:38
-#: ../app/views/module/module/modul.php:23
-msgid "Modulbezeichnung"
-msgstr "Module label"
-
-#: ../app/views/shared/modul/_modul.php:42
-#: ../app/views/module/module/modul.php:27
-#: ../app/views/module/module/index.php:9
-#: ../app/views/module/institute/details.php:5
-msgid "Modulcode"
-msgstr "Module code"
-
-#: ../app/views/shared/modul/_modul.php:46
-msgid "Semester der erstmaligen Durchführung"
-msgstr "Semester of first implementation"
-
-#: ../app/views/shared/modul/_modul.php:51
-msgid "Fachbereich/Institut"
-msgstr "Faculty/Institute"
-
-#: ../app/views/shared/modul/_modul.php:56
-msgid "Verwendet in Studiengängen / Semestern"
-msgstr "Module used in courses of study / semesters"
-
-#: ../app/views/shared/modul/_modul.php:81
-msgid "mehr..."
-msgstr "more..."
-
-#: ../app/views/shared/modul/_modul.php:90
-msgid "Modulverantwortliche/r"
-msgstr "Responsible person for this module"
-
-#: ../app/views/shared/modul/_modul.php:120
-#: ../app/views/module/module/modul.php:458
-msgid "Weitere verantwortliche Personen"
-msgstr "Further responsible persons"
-
-#: ../app/views/shared/modul/_modul.php:135
-msgid "Modulinhalte"
-msgstr "Module contents"
-
-#: ../app/views/shared/modul/_modul.php:140
-#: ../app/views/shared/modul/_modullv.php:7
-msgid "Lehrveranstaltungsform"
-msgid_plural "Lehrveranstaltungsformen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/shared/modul/_modul.php:155
-msgid "Unterrichtssprache"
-msgid_plural "Unterrichtsprachen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/shared/modul/_modul.php:161
-msgid "Dauer in Semestern"
-msgstr "Duration (semesters)"
-
-#: ../app/views/shared/modul/_modul.php:165
-msgid "Angebotsrhythmus Modul"
-msgstr "Module frequency"
-
-#: ../app/views/shared/modul/_modul.php:169
-msgid "Aufnahmekapazität Modul"
-msgstr "Module capacity"
-
-#: ../app/views/shared/modul/_modul.php:177
-msgid "Credit-Points"
-msgstr "Credit points"
-
-#: ../app/views/shared/modul/_modul.php:181
-msgid "Modulabschlussnote"
-msgstr "Share on module final degree"
-
-#: ../app/views/shared/modul/_modul.php:218
-#: ../app/views/module/module/modul.php:635
-msgid "Faktor der Modulnote für die Endnote des Studiengangs"
-msgstr "Share of module grade on the course of study's final grade"
-
-#: ../app/views/shared/modul/_modullv.php:23
-msgid "Workload Vor- / Nachbereitung"
-msgstr "Workload of preparation / homework etc"
-
-#: ../app/views/shared/modul/_modullv.php:40
-msgid "Workload selbstgestaltete Arbeit (modulbezogen"
-msgstr "Workload self-arranged work (module-oriented"
-
-#: ../app/views/shared/modul/_modullv.php:46
-msgid "Workload Prüfung incl. Vorbereitung (modulbezogen)"
-msgstr "Workload exam including preparation (module-oriented)"
-
-#: ../app/views/shared/modul/_modullv.php:75
-msgid "Angebotsrhythmus"
-msgstr "Frequency"
-
-#: ../app/views/shared/modul/_modullv.php:79
-msgid "Aufnahmekapazität"
-msgstr "Capacity"
-
-#: ../app/views/shared/modul/_modullv.php:84
-#: ../app/views/module/module/modulteil.php:396
-msgid "Anwesenheitspflicht"
-msgstr "Compulsory attendance"
-
-#: ../app/views/shared/inst_chooser.php:14
-msgid "Einrichtung zuordnen"
-msgstr "Assign institute"
-
-#: ../app/views/shared/inst_chooser.php:23
-msgid "Ebene anzeigen"
-msgstr "Show level"
-
-#: ../app/views/shared/studiengang/_studiengang_info.php:17
-#, php-format
-msgid "%s %s vom %s"
-msgstr "%s %s from %s"
-
-#: ../app/views/shared/studiengang/_studiengang_info.php:41
-#, php-format
-msgid "%s bis unbegrenzt"
-msgstr "%s without limit"
-
-#: ../app/views/shared/studiengang/_studiengang_info.php:43
-#, php-format
-msgid "%s bis %s"
-msgstr "%s to %s"
-
-#: ../app/views/shared/studiengang/_studiengang.php:6
-msgid "Name des Studiengangs"
-msgstr "Name of course of study"
-
-#: ../app/views/shared/studiengang/_studiengang.php:14
-msgid "Kurzbezeichnung"
-msgstr "Short description"
-
-#: ../app/views/shared/studiengang/_studiengang.php:70
-msgid "Diesem Studiengang wird ein Fach direkt zugewiesen"
-msgstr "A field of study will be directly assigned to this course of study"
-
-#: ../app/views/shared/studiengang/_studiengang.php:72
-msgid "Diesem Studiengang können mehrere Studiengangteile zugewiesen werden."
-msgstr ""
-"Several partials of course of study can be assigned to this course of study."
-
-#: ../app/views/shared/studiengang/_studiengang.php:105
-msgid "Kommentar Status"
-msgstr "Status comment"
-
-#: ../app/views/shared/studiengang/_studiengangteil.php:12
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:58
-msgid "Kredit-Punkte"
-msgstr "Credit points"
-
-#: ../app/views/shared/studiengang/_studiengangteil.php:13
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:64
-msgid "Semesterzahl"
-msgstr "Amount of semesters"
-
-#: ../app/views/shared/studiengang/_studiengangteil.php:14
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:81
-msgid "Titelzusatz"
-msgstr "Title supplement"
-
-#: ../app/views/shared/studiengang/_studiengangteil.php:15
-msgid "Personen/Kontakte"
-msgstr "Persons/Contacts"
-
-#: ../app/views/sitemap/index.php:4
-msgid "Zusatznavigation"
-msgstr "Additional navigation"
-
-#: ../app/views/sitemap/index.php:7
-msgid "Fußzeile"
-msgstr "Footer"
-
-#: ../app/views/profile/working_place.php:4
-#: ../app/views/settings/statusgruppen/modify_institute.php:33
-msgid "Sprechzeit"
-msgstr "Office hours"
-
-#: ../app/views/profile/working_place.php:10
-msgid "Wo ich arbeite:"
-msgstr "Where I work:"
-
-#: ../app/views/profile/index.php:7 ../app/views/course/details/index.php:20
-msgid "Allgemeine Informationen"
-msgstr "General information"
-
-#: ../app/views/profile/index.php:32
-msgid "Skype"
-msgstr "Skype"
-
-#: ../app/views/profile/index.php:116
-msgid "Literaturlisten"
-msgstr "Reference lists"
-
-#: ../app/views/profile/not_available.php:2
-msgid "Dieses Profil ist nicht verfügbar."
-msgstr "Profile not available."
-
-#: ../app/views/profile/not_available.php:3
-msgid ""
-"Der Benutzer hat sich unsichtbar geschaltet oder ist im System nicht "
-"vorhanden."
-msgstr "The user has decided to be invisible or does not exist in the system."
-
-#: ../app/views/profile/public_files.php:4
-msgid "Freigegebene Dateien"
-msgstr "Released files"
-
-#: ../app/views/profile/extern.php:8
-msgid "Beschreibung für den OER Campus"
-msgstr ""
-
-#: ../app/views/profile/widget-avatar.php:10 ../app/views/avatar/update.php:20
-msgid "Die hochgeladene Datei ist zu groß. Bitte wählen Sie ein anderes Bild."
-msgstr "The uploaded file is too big. Please select another picture."
-
-#: ../app/views/profile/widget-avatar.php:11
-msgid ""
-"Die hochgeladene Datei hat falsche Typ. Bitte wählen Sie ein anderes Bild."
-msgstr "The uploaded file has the wrong type. Please select another picture."
-
-#: ../app/views/profile/widget-avatar.php:13
-msgid "Bild hochladen oder löschen."
-msgstr "Upload or delete picture."
-
-#: ../app/views/profile/widget-avatar.php:13
-msgid "Drag & Drop oder Klicken"
-msgstr "Drag & drop or click"
-
-#: ../app/views/profile/widget-avatar.php:23
-msgid "Profilbesuche:"
-msgstr "Visits:"
-
-#: ../app/views/profile/widget-avatar.php:28
-msgid "Zur Rangliste"
-msgstr "To the high score list"
-
-#: ../app/views/profile/widget-avatar.php:30
-msgid "Rang"
-msgstr "Score"
-
-#: ../app/views/api/oauth/authorize.php:4
-#, php-format
-msgid "Die Applikation <strong>%s</strong> möchte auf Ihre Daten zugreifen."
-msgstr "The application <strong>%s</strong> would like to access your data."
-
-#: ../app/views/api/oauth/authorize.php:12
-msgid "Erlauben"
-msgstr "Allow"
-
-#: ../app/views/api/oauth/authorize.php:13
-msgid "Verweigern"
-msgstr "Deny"
-
-#: ../app/views/api/oauth/authorize.php:21
-#, php-format
-msgid "Angemeldet als <strong>%s</strong> (%s)"
-msgstr "Logged in as <strong>%s</strong> (%s)"
-
-#: ../app/views/api/oauth/authorize.php:27
-#, php-format
-msgid ""
-"Sind sie nicht <strong>%s</strong>, so <a href=\"%s\">melden Sie sich bitte "
-"ab</a> und versuchen es erneut."
-msgstr ""
-"You are not <strong>%s</strong>. Please <a href=\"%s\">log out</a> and retry."
-
-#: ../app/views/api/authorizations/index.php:4
-msgid "Sie haben noch keinen Apps Zugriff auf Ihren Account gewährt."
-msgstr "You haven't granted access to your account to any app."
-
-#: ../app/views/api/authorizations/index.php:35
-msgid "App entfernen"
-msgstr "Delete app"
-
-#: ../app/views/api/authorizations/index.php:37
-msgid "Wollen Sie der App wirklich den Zugriff auf Ihre Daten untersagen?"
-msgstr "Do you really want to forbid the app to access your data?"
-
-#: ../app/views/resources/property/_add_edit_form.php:25
-#: ../app/views/resources/admin/properties.php:9
-msgid "Minimale Rechtestufe für Änderungen"
-msgstr "Minimal permission level for modifications"
-
-#: ../app/views/resources/property/_add_edit_form.php:36
-msgid "Globaler Raumadmin"
-msgstr "Global room admin"
-
-#: ../app/views/resources/property/_add_edit_form.php:41
-msgid "Mögliche Werte"
-msgstr "Possible values"
-
-#: ../app/views/resources/property/_add_edit_form.php:46
-#: ../app/views/resources/admin/property_groups.php:110
-#: ../app/views/resources/admin/properties.php:7
-msgid "Angezeigter Name"
-msgstr "Displayed name"
-
-#: ../app/views/resources/property/_add_edit_form.php:53
-msgid "Diese Eigenschaft kann zur Suche genutzt werden."
-msgstr "This property may be used in the search."
-
-#: ../app/views/resources/property/_add_edit_form.php:58
-msgid "Diese Eigenschaft soll im Info-Icon zu einem Raum angezeigt werden."
-msgstr "This property shall be displayed in the info icon of a room."
-
-#: ../app/views/resources/property/_add_edit_form.php:66
-msgid "Suchkriterium mit Intervall"
-msgstr "Search criteria with interval"
-
-#: ../app/views/resources/search/rooms.php:30
-msgid ""
-"Es wurden keine Räume gefunden, die zu den angegebenen Suchkriterien passen!"
-msgstr "No rooms could be found that match the specified search criteria!"
-
-#: ../app/views/resources/search/rooms.php:35
-msgid ""
-"Wählen Sie Suchkriterien oder ein Element im Ressourcenbaum, um Räume zu "
-"finden."
-msgstr ""
-"Please select search criteria or an element in the resource tree to find "
-"rooms."
-
-#: ../app/views/resources/global_locks/delete.php:8
-msgid "Soll die folgende Sperrung wirklich gelöscht werden?"
-msgstr "Do you really want to delete the following lock?"
-
-#: ../app/views/resources/global_locks/delete.php:14
-#: ../app/views/resources/global_locks/_add_edit_form.php:29
-#: ../app/views/resources/admin/global_locks.php:16
-msgid "Typ der Sperrung"
-msgstr "Lock type"
-
-#: ../app/views/resources/global_locks/_add_edit_form.php:6
-#: ../app/views/course/block_appointments/index.php:26
-#: ../app/views/admin/semester/index.php:24
-#: ../app/views/admin/banner/index.php:16
-#: ../app/views/admin/holidays/index.php:20
-msgid "Zeitraum"
-msgstr "Period"
-
-#: ../app/views/resources/global_locks/_add_edit_form.php:18
-#: ../app/views/resources/room_request/_add_edit_form.php:18
-#: ../app/views/resources/resource/delete_bookings.php:14
-#: ../app/views/course/block_appointments/index.php:33
-msgid "Enddatum"
-msgstr "Final date"
-
-#: ../app/views/resources/room/select_category.php:5
-#: ../app/views/course/room_requests/request_start.php:44
-#: ../app/views/room_management/overview/rooms.php:7
-msgid "Raumkategorie"
-msgstr "Room category"
-
-#: ../app/views/resources/room/select_category.php:7
-msgid "Bitte eine Raumkategorie auswählen:"
-msgstr "Please select a room category:"
-
-#: ../app/views/resources/room/index.php:19
-#: ../app/views/resources/building/index.php:26
-#: ../app/views/resources/location/index.php:5
-msgid "Beschreibung und Hinweise"
-msgstr "Description and notes"
-
-#: ../app/views/resources/room/index.php:31
-#: ../app/views/resources/_common/_room_search_result.php:94
-#, php-format
-msgid "%d Sitzplatz"
-msgid_plural "%d Sitzplätze"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/resources/room/index.php:93
-#: ../app/views/resources/building/index.php:38
-#: ../app/views/resources/location/index.php:17
-#: ../app/views/resources/_common/_room_search_result.php:60
-msgid "Zum Lageplan"
-msgstr "Go to map"
-
-#: ../app/views/resources/room/delete.php:5
-msgid "Soll der folgende Raum wirklich gelöscht werden?"
-msgstr "Do you really want to delete the following room?"
-
-#: ../app/views/resources/room/_add_edit_form.php:12
-msgid "Der Raum befindet sich in folgender Hierarchie:"
-msgstr "The room is located in the following hierarchy:"
-
-#: ../app/views/resources/room/_add_edit_form.php:23
-msgid "Name des Raumes"
-msgstr "Room name"
-
-#: ../app/views/resources/room/_add_edit_form.php:27
-#: ../app/views/resources/category/_add_edit_form.php:21
-#: ../app/views/resources/building/_add_edit_form.php:16
-#: ../app/views/resources/location/_add_edit_form.php:15
-#: ../app/views/resources/resource/_add_edit_form.php:20
-msgid "Beschreibungstext"
-msgstr "Descritption text"
-
-#: ../app/views/resources/room/_add_edit_form.php:33
-msgid "Raum ist wünschbar"
-msgstr "Room is requestable"
-
-#: ../app/views/resources/room/_add_edit_form.php:46
-msgid "Raumplan ist öffentlich zugänglich"
-msgstr "Room plan is public"
-
-#: ../app/views/resources/room/_add_edit_form.php:50
-#: ../app/views/resources/building/_add_edit_form.php:41
-#: ../app/views/resources/location/_add_edit_form.php:20
-#: ../app/views/resources/resource/_add_edit_form.php:29
-msgid "Sortierposition"
-msgstr "Sort position"
-
-#: ../app/views/resources/category/show_resources.php:35
-msgid "Es gibt keine Ressourcen in der gewählten Ressourcenkategorie!"
-msgstr "There are no resources in the selected resource category!"
-
-#: ../app/views/resources/category/delete.php:3
-msgid "Soll die folgende Ressourcenkategorie wirklich gelöscht werden?"
-msgstr "Do you really want to delete the following resource category?"
-
-#: ../app/views/resources/category/delete.php:13
-msgid "Zugehörige Klasse"
-msgstr "Associated class"
-
-#: ../app/views/resources/category/delete.php:19
-msgid "Zuweisen von Ressourcen"
-msgstr "Resource assignment"
-
-#: ../app/views/resources/category/delete.php:20
-msgid ""
-"Die zu dieser Kategorie gehörenden Ressourcen müssen einer anderen Kategorie "
-"zugewiesen oder gelöscht werden!"
-msgstr ""
-"The resources associated with this category must either be assigned to "
-"another category or they must be deleted!"
-
-#: ../app/views/resources/category/delete.php:25
-msgid "Ressourcen der folgenden Kategorie zuordnen:"
-msgstr "Assign resources to the following category:"
-
-#: ../app/views/resources/category/delete.php:44
-msgid "Ressourcen unwiderruflich löschen"
-msgstr "Delete resources irrevocably"
-
-#: ../app/views/resources/category/_add_edit_form.php:25
-msgid "Name der Datenklasse"
-msgstr "Name of the data class"
-
-#: ../app/views/resources/category/_add_edit_form.php:34
-msgid ""
-"Hinweis: Je nach gewählter Datenklasse werden automatisch weitere "
-"Eigenschaften zur Kategorie hinzugefügt."
-msgstr ""
-"Please note: Depending on the selected data class, additional properties "
-"will be added to the category automatically."
-
-#: ../app/views/resources/category/_add_edit_form.php:37
-msgid "Icon-Nummer"
-msgstr "Icon number"
-
-#: ../app/views/resources/category/_add_edit_form.php:48
-msgid "Wünschbar"
-msgstr "Requestable"
-
-#: ../app/views/resources/category/_add_edit_form.php:49
-msgid "Geschützt"
-msgstr "Protected"
-
-#: ../app/views/resources/category/_add_edit_form.php:75
-msgid "Dies ist eine Systemeigenschaft, die nicht gelöscht werden darf!"
-msgstr "This is a system property which must not be deleted!"
-
-#: ../app/views/resources/building/select_category.php:5
-msgid "Gebäudekategorie"
-msgstr "Building category"
-
-#: ../app/views/resources/building/select_category.php:7
-msgid "Bitte eine Gebäudekategorie auswählen:"
-msgstr "Please select a building category:"
-
-#: ../app/views/resources/building/lock.php:5
-#: ../app/views/resources/resource/lock.php:5
-msgid "Bitte Sperrzeiten auswählen"
-msgstr "Please select lock period"
-
-#: ../app/views/resources/building/lock.php:18
-#: ../app/views/resources/resource/lock.php:22
-#: ../app/views/admin/semester/lock.php:40
-msgid "Sperren"
-msgstr "Lock"
-
-#: ../app/views/resources/building/delete.php:3
-msgid "Soll das folgende Gebäude wirklich gelöscht werden?"
-msgstr "Do you really want to delete the following building?"
-
-#: ../app/views/resources/building/_add_edit_form.php:12
-msgid "Name des Gebäudes"
-msgstr "Building name"
-
-#: ../app/views/resources/building/_add_edit_form.php:20
-msgid "Standort / Hierarchie"
-msgstr "Location / Hierarchy"
-
-#: ../app/views/resources/room_group/permissions.php:32
-msgid ""
-"Es sind keine gemeinsamen Rechte für die oben aufgeführten Räume vorhanden."
-msgstr "There are no common permissions for the rooms shown above."
-
-#: ../app/views/resources/room_group/permissions.php:39
-msgid "Gemeinsame Rechte"
-msgstr "Common permissions"
-
-#: ../app/views/resources/room_group/permissions.php:55
-msgid "Berechtigung für alle Räume übernehmen"
-msgstr "Apply permissions for all rooms"
-
-#: ../app/views/resources/room_group/permissions.php:60
-msgid "Spezielle Rechte"
-msgstr "Special permissions"
-
-#: ../app/views/resources/messages/index.php:5
-#: ../app/views/resources/room_request/planning.php:3
-msgid "Raumauswahl"
-msgstr "Room selection"
-
-#: ../app/views/resources/messages/index.php:11
-msgid "Auswahl anhand von Suchergebnissen"
-msgstr "Select by search results"
-
-#: ../app/views/resources/messages/index.php:54
-msgid "Auswahl anhand einer individuellen Raumgruppe"
-msgstr "Select by individual room group"
-
-#: ../app/views/resources/messages/index.php:73
-msgid "Empfängerkreis auswählen"
-msgstr "Select circle of recipients"
-
-#: ../app/views/resources/messages/index.php:79
-msgid "Alle Personen mit einer bestimmten Rechtestufe."
-msgstr "All persons with a specific permission level."
-
-#: ../app/views/resources/messages/index.php:86
-msgid "Alle Personen, die von Buchungen im folgenden Zeitraum betroffen sind."
-msgstr "All persons that are affected by bookings in the following time range."
-
-#: ../app/views/resources/messages/index.php:94
-msgid "Auswahl anhand der minimalen Rechtestufe"
-msgstr "Select by minimal permission level"
-
-#: ../app/views/resources/messages/index.php:97
-msgid ""
-"Sende die Rundmail an alle Personen, die mindestens die folgende Rechtestufe "
-"an den ausgewählten Räumen haben:"
-msgstr ""
-"Send the circular mail to all persons that have at least the following "
-"permission level for the selected rooms:"
-
-#: ../app/views/resources/messages/index.php:123
-msgid "Auswahl anhand von Buchungen in einem Zeitraum"
-msgstr "Select by bookings inside a time range"
-
-#: ../app/views/resources/messages/index.php:141
-msgid "Mail verfassen"
-msgstr "Write mail"
-
-#: ../app/views/resources/admin/property_groups.php:5
-msgid "Eigenschaftsgruppen"
-msgstr "Property groups"
-
-#: ../app/views/resources/admin/property_groups.php:16
-#: ../app/views/resources/admin/property_groups.php:38
-msgid ""
-"Die ausgewählten Gruppen werden beim Speichern gelöscht bzw. die "
-"ausgewählten Eigenschaften aus der Gruppe entfernt."
-msgstr ""
-"The selected groups will be deleted on save or the selected properties will "
-"be removed from the group."
-
-#: ../app/views/resources/admin/property_groups.php:25
-msgid "Alle Gruppen löschen"
-msgstr "Delete all groups"
-
-#: ../app/views/resources/admin/property_groups.php:48
-#: ../app/views/admin/statusgroups/_group.php:27
-#: ../app/views/admin/statusgroups/deleteGroup.php:5
-#: ../app/views/contact/index.php:16
-msgid "Gruppe löschen"
-msgstr "Delete group"
-
-#: ../app/views/resources/admin/property_groups.php:68
-#: ../app/views/course/statusgroups/_member.php:67
-msgid "Aus der Gruppe entfernen"
-msgstr "Remove from group"
-
-#: ../app/views/resources/admin/property_groups.php:89
-msgid "Es sind keine Eigenschaftsgruppen vorhanden!"
-msgstr "No property groups are available!"
-
-#: ../app/views/resources/admin/property_groups.php:95
-msgid "Ungruppierte Eigenschaften"
-msgstr "Ungrouped properties"
-
-#: ../app/views/resources/admin/property_groups.php:106
-msgid "Alle Eigenschaften zu einer neuen Gruppe hinzufügen"
-msgstr "Add all properties to a new group"
-
-#: ../app/views/resources/admin/property_groups.php:112
-msgid "Gruppe zuweisen"
-msgstr "Assign group"
-
-#: ../app/views/resources/admin/property_groups.php:132
-msgid "Zu einer neuen Gruppe hinzufügen"
-msgstr "Add to a new group"
-
-#: ../app/views/resources/admin/categories.php:14
-#: ../app/views/admin/cronjobs/schedules/edit.php:70
-msgid "Klassenname"
-msgstr "Class name"
-
-#: ../app/views/resources/admin/categories.php:15
-msgid "System-Kategorie"
-msgstr "System category"
-
-#: ../app/views/resources/admin/categories.php:41
-msgid "Alle Ressourcen anzeigen"
-msgstr "Show all resources"
-
-#: ../app/views/resources/admin/configuration.php:12
-msgid "Raumverwaltung aktivieren"
-msgstr "Activate room management system"
-
-#: ../app/views/resources/admin/configuration.php:16
-msgid "Anzeigeoptionen"
-msgstr "Display options"
-
-#: ../app/views/resources/admin/configuration.php:23
-msgid "Belegungen sind sichtbar für alle Nutzer"
-msgstr "Bookings are visible for every user"
-
-#: ../app/views/resources/admin/configuration.php:39
-msgid "URL für Kartendienst"
-msgstr "URL for map service"
-
-#: ../app/views/resources/admin/configuration.php:43
-msgid ""
-"Die URL muss zwei Platzhalter enhalten: LATITUDE für die Längenangabe und "
-"LONGITUDE für die Breitenangabe."
-msgstr ""
-"The URL must contain two placeholders: LATITUDE for the latitude and "
-"LONGITUDE for the longitude."
-
-#: ../app/views/resources/admin/configuration.php:46
-msgid ""
-"Ab welcher Uhrzeit sollen Belegungen in der Standardansicht des "
-"Belegungsplans angezeigt werden?"
-msgstr ""
-"From which time shall bookings be displayed in the default view of the "
-"booking plan?"
-
-#: ../app/views/resources/admin/configuration.php:52
-msgid ""
-"Bis zu welcher Uhrzeit sollen Belegungen in der Standardansicht des "
-"Belegungsplans angezeigt werden?"
-msgstr ""
-"Until which time shall bookings be displayed in the default view of the "
-"booking plan?"
-
-#: ../app/views/resources/admin/configuration.php:66
-msgid "Ressourcenanfragen sind eingeschaltet"
-msgstr "Resource requests are enabled"
-
-#: ../app/views/resources/admin/configuration.php:74
-msgid "Ressourceneigenschaften dürfen bei einer Anfrage gewünscht werden"
-msgstr "Resource properties may be requested"
-
-#: ../app/views/resources/admin/configuration.php:82
-msgid "Nur konkrete Raumanfragen erlauben"
-msgstr "Allow specific room requests only"
-
-#: ../app/views/resources/admin/configuration.php:90
-msgid "Aktuelle Raumanfragen auf der Übersichtsseite anzeigen"
-msgstr "Display current room requests on the overview page"
-
-#: ../app/views/resources/admin/configuration.php:93
-msgid ""
-"Ab welchem Prozentwert (für den Anteil an Belegungen) sollen "
-"Einzelbelegungen statt Serienbelegungen durchgeführt werden, wenn es zu "
-"Überschneidungen kommt?"
-msgstr ""
-"From which percentage (share of bookings) shall single bookings instead of "
-"serial bookings be made when overlaps occur?"
-
-#: ../app/views/resources/admin/configuration.php:99
-msgid ""
-"Ab welcher Anzahl an Einzelterminen sollen diese zusammengefasst zu einer "
-"Gruppe bearbeitet werden?"
-msgstr "At which amount of single dates shall these be processed in a group?"
-
-#: ../app/views/resources/admin/configuration.php:105
-msgid "Buchen von Räumen und Ressourcen"
-msgstr "Booking of rooms and resources"
-
-#: ../app/views/resources/admin/configuration.php:107
-msgid ""
-"Wie lange darf die Rüstzeit vor dem Beginn einer Buchung maximal dauern? "
-"(Angabe in Minuten)"
-msgstr ""
-"What is the maximum duration of the preparation time before a booking? (in "
-"minutes)"
-
-#: ../app/views/resources/admin/configuration.php:112
-msgid "Was ist die kürzeste erlaubte Dauer einer Buchung in Minuten?"
-msgstr "What is the shortest allowed duration of a booking in minutes?"
-
-#: ../app/views/resources/admin/booking_log.php:7
-#, php-format
-msgid "%1$s: Alle Buchungen von %2$s"
-msgstr "%1$s: All bookings of %2$s"
-
-#: ../app/views/resources/admin/booking_log.php:13
-#, php-format
-msgid "Alle Buchungen von %s"
-msgstr "All bookings of %s"
-
-#: ../app/views/resources/admin/booking_log.php:20
-#, php-format
-msgid "%1$s: Aktuelle und zukünftige Buchungen von %2$s"
-msgstr "%1$s: Current and future bookings of %2$s"
-
-#: ../app/views/resources/admin/booking_log.php:26
-#, php-format
-msgid "Aktuelle und zukünftige Buchungen von %s"
-msgstr "Current and future bookings of %s"
-
-#: ../app/views/resources/admin/booking_log.php:34
-msgid "Buchungszeiträume"
-msgstr "Booking time ranges"
-
-#: ../app/views/resources/admin/booking_log.php:68
-msgid "Es liegen keine Buchungen vor!"
-msgstr "No bookings available!"
-
-#: ../app/views/resources/admin/booking_log.php:74
-msgid "Nur aktuelle und zukünftige Buchungen anzeigen"
-msgstr "Display only current and future bookings"
-
-#: ../app/views/resources/admin/booking_log.php:88
-msgid "Auch stattgefundene Buchungen anzeigen"
-msgstr "Also display past bookings"
-
-#: ../app/views/resources/admin/separable_rooms.php:18
-msgid "Gebäude auswählen"
-msgstr "Select building"
-
-#: ../app/views/resources/admin/separable_rooms.php:23
-#, php-format
-msgid "%s: Teilbare Räume"
-msgstr "%s: Separable rooms"
-
-#: ../app/views/resources/admin/separable_rooms.php:41
-msgid "Raumteile"
-msgstr "Room parts"
-
-#: ../app/views/resources/admin/separable_rooms.php:50
-msgid "Teilbare Räume löschen"
-msgstr "Delete separable rooms"
-
-#: ../app/views/resources/admin/separable_rooms.php:54
-msgid "Raumteile löschen"
-msgstr "Delete room parts"
-
-#: ../app/views/resources/admin/separable_rooms.php:94
-msgid "Wollen Sie den Raum wirklich entfernen?"
-msgstr "Do you really want to remove the room?"
-
-#: ../app/views/resources/admin/separable_rooms.php:107
-#, php-format
-msgid "%s: Einzelne Räume"
-msgstr "%s: Single rooms"
-
-#: ../app/views/resources/admin/separable_rooms.php:133
-msgid "Raumteil(e) zu teilbarem Raum hinzufügen"
-msgstr "Add room part(s) to separable room"
-
-#: ../app/views/resources/admin/separable_rooms.php:143
-msgid "Name des neuen teilbaren Raumes"
-msgstr "Name of the new separable room"
-
-#: ../app/views/resources/admin/separable_rooms.php:145
-msgid "Neuen teilbaren Raum erzeugen"
-msgstr "Create new separable room"
-
-#: ../app/views/resources/admin/properties.php:10
-msgid "Mögliches Suchkriterium"
-msgstr "Possible search criteria"
-
-#: ../app/views/resources/admin/properties.php:11
-msgid "Verwendung in Kategorien"
-msgstr "Use in categories"
-
-#: ../app/views/resources/admin/properties.php:51
-#, php-format
-msgid "Soll die Eigenschaft \"%s\" wirklich gelöscht werden?"
-msgstr "Do you really want to delete the property \"%s\"?"
-
-#: ../app/views/resources/admin/properties.php:66
-msgid "Es sind keine Eigenschaften definiert!"
-msgstr "No properties are defined!"
-
-#: ../app/views/resources/admin/global_locks.php:4
-#, php-format
-msgid "Die Raumverwaltung ist vom %1$s bis zum %2$s gesperrt."
-msgstr "The room management system is locked from %1$s to %2$s."
-
-#: ../app/views/resources/admin/global_locks.php:30
-msgid "Sperrung bearbeiten"
-msgstr "Edit lock"
-
-#: ../app/views/resources/admin/global_locks.php:37
-msgid "Sperrung löschen"
-msgstr "Delete lock"
-
-#: ../app/views/resources/admin/global_locks.php:52
-msgid ""
-"Es sind keine gegenwärtigen und zukünftigen Sperren der Raumverwaltung "
-"hinterlegt."
-msgstr "No current and future locks of the room management system are stored."
-
-#: ../app/views/resources/admin/user_permissions.php:4
-msgid "Globale Berechtigung"
-msgstr "Global permissions"
-
-#: ../app/views/resources/admin/user_permissions.php:12
-#: ../app/views/resources/admin/user_permissions.php:171
-msgid ""
-"Die Berechtigung kann zurzeit aufgrund einer globalen Sperrung der "
-"Raumverwaltung nicht genutzt werden!"
-msgstr ""
-"The permission cannot be set due to a global lock of the room management "
-"system!"
-
-#: ../app/views/resources/admin/user_permissions.php:20
-msgid "Aktivität"
-msgstr "Activity"
-
-#: ../app/views/resources/admin/user_permissions.php:26
-#, php-format
-msgid "Inaktiv seit mehr als einem Jahr"
-msgid_plural "Inaktiv seit mehr als %d Jahren"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/resources/admin/user_permissions.php:35
-#, php-format
-msgid "Inaktiv seit mehr als einem Monat"
-msgid_plural "Inaktiv seit mehr als %d Monaten"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/resources/admin/user_permissions.php:43
-msgid "Gestern zuletzt aktiv."
-msgstr "Last active yesterday."
-
-#: ../app/views/resources/admin/user_permissions.php:45
-msgid "Vorgestern zuletzt aktiv."
-msgstr "Last active the day before yesterday."
-
-#: ../app/views/resources/admin/user_permissions.php:48
-#, php-format
-msgid "Inaktiv seit %d Tagen"
-msgstr "Inactive since %d days"
-
-#: ../app/views/resources/admin/user_permissions.php:53
-msgid "Innerhalb der letzten 24 Stunden zuletzt aktiv gewesen."
-msgstr "Last active in the last 24 hours."
-
-#: ../app/views/resources/admin/user_permissions.php:64
-#: ../app/views/resources/admin/user_permissions.php:199
-msgid "Liste mit Buchungen anzeigen"
-msgstr "Show list with bookings"
-
-#: ../app/views/resources/admin/user_permissions.php:79
-msgid "Temporäre Berechtigungen"
-msgstr "Temporary permissions"
-
-#: ../app/views/resources/admin/user_permissions.php:83
-#: ../app/views/resources/admin/user_permissions.php:154
-msgid "Name der Ressource"
-msgstr "Resource name"
-
-#: ../app/views/resources/admin/user_permissions.php:84
-#: ../app/views/resources/admin/user_permissions.php:155
-#: ../app/views/calendar/single/manage_access.php:41
-msgid "Berechtigung"
-msgstr "Permission"
-
-#: ../app/views/resources/admin/user_permissions.php:102
-msgid ""
-"Die Berechtigung kann aufgrund einer globalen Sperrung der Raumverwaltung "
-"zurzeit nicht genutzt werden!"
-msgstr ""
-"The permission cannot be used at the moment due to a global lock of the room "
-"management system!"
-
-#: ../app/views/resources/admin/user_permissions.php:123
-#: ../app/views/resources/admin/user_permissions.php:186
-msgid "Berechtigung bearbeiten"
-msgstr "Edit permission"
-
-#: ../app/views/resources/admin/user_permissions.php:150
-msgid "Dauerhafte Berechtigungen"
-msgstr "Permanent permissions"
-
-#: ../app/views/resources/admin/user_permissions.php:211
-msgid "Es wurde keine Person ausgewählt!"
-msgstr "No person has been selected!"
-
-#: ../app/views/resources/room_request/overview.php:8
-#, php-format
-msgid "Anfragenliste (%d Anfrage)"
-msgid_plural "Anfragenliste (%d Anfragen)"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/resources/room_request/overview.php:31
-#: ../app/views/room_management/overview/index.php:109
-msgid "Dringlichkeit"
-msgstr "Urgency"
-
-#: ../app/views/resources/room_request/overview.php:32
-#: ../app/views/room_management/overview/index.php:110
-msgid "letzte Änderung"
-msgstr "last change"
-
-#: ../app/views/resources/room_request/overview.php:60
-#: ../app/views/resources/room_request/planning.php:304
-msgid "Es sind keine Anfragen vorhanden!"
-msgstr "No requests available!"
-
-#: ../app/views/resources/room_request/planning.php:5
-msgid "Bitte wählen Sie einen Raum aus"
-msgstr ""
-
-#: ../app/views/resources/room_request/planning.php:27
-#: ../app/views/resources/room_planning/semester_plan.php:48
-#: ../app/views/resources/room_planning/booking_plan.php:16
-#, php-format
-msgid "%d Sitzplätze"
-msgstr "%d seats"
-
-#: ../app/views/resources/room_request/planning.php:64
-#: ../app/views/resources/room_planning/semester_plan.php:85
-#: ../app/views/room_management/planning/semester_plan.php:40
-msgid "Semesterplan"
-msgstr "Semester plan"
-
-#: ../app/views/resources/room_request/planning.php:116
-#: ../app/views/resources/resource/booking_plan.php:46
-#: ../app/views/resources/room_planning/semester_plan.php:137
-#: ../app/views/resources/room_planning/booking_plan.php:105
-#: ../app/views/room_management/planning/semester_plan.php:93
-#: ../app/views/room_management/planning/index.php:90
-msgid "Wiederholungstermin"
-msgstr "Repetition date"
-
-#: ../app/views/resources/room_request/planning.php:124
-msgid "Im Plan gezeigte Anfragen buchen"
-msgstr "Book the requests that are displayed in the plan"
-
-#: ../app/views/resources/room_request/planning.php:136
-msgid "Anfragen"
-msgstr "Requests"
-
-#: ../app/views/resources/room_request/planning.php:139
-msgid "Datum/Uhrzeit"
-msgstr "Date/Time"
-
-#: ../app/views/resources/room_request/planning.php:143
-#: ../app/views/resources/room_request/resolve.php:105
-#: ../app/views/resources/_common/_request_info.php:17
-msgid "Gewünschter Raum"
-msgstr "Requested room"
-
-#: ../app/views/resources/room_request/resolve.php:9
-#: ../app/views/resources/room_request/decline.php:17
-msgid "Informationen zur Anfrage"
-msgstr "Request information"
-
-#: ../app/views/resources/room_request/resolve.php:14
-#, php-format
-msgid "Anfrage erstellt am %1$s von %2$s"
-msgstr "Request created on %1$s by %2$s"
-
-#: ../app/views/resources/room_request/resolve.php:24
-#, php-format
-msgid "Letzte Änderung am %1$s von %2$s"
-msgstr "Last changes on %1$s by %2$s"
-
-#: ../app/views/resources/room_request/resolve.php:54
-msgid "Anzahl Teilnehmende"
-msgstr ""
-
-#: ../app/views/resources/room_request/resolve.php:65
-msgid "Angeforderte Belegungszeiten"
-msgstr "Requested booking periods"
-
-#: ../app/views/resources/room_request/resolve.php:80
-#: ../app/views/resources/_common/_request_info.php:9
-#, php-format
-msgid "%d Minute"
-msgid_plural "%d Minuten"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/resources/room_request/resolve.php:90
-msgid "Gewünschte Raumeigenschaften"
-msgstr "Requested room properties"
-
-#: ../app/views/resources/room_request/resolve.php:111
-msgid "Kommentar des Anfragenden"
-msgstr "Comment by the requesting person"
-
-#: ../app/views/resources/room_request/resolve.php:131
-msgid "Auswahl alternative Räume"
-msgstr "Select alternative rooms"
-
-#: ../app/views/resources/room_request/resolve.php:139
-msgid "Auswahl anhand einer Raumgruppe"
-msgstr "Select by room group"
-
-#: ../app/views/resources/room_request/resolve.php:166
-msgid "Alle Räume"
-msgstr "All rooms"
-
-#: ../app/views/resources/room_request/resolve.php:168
-msgid "Alle meine Räume"
-msgstr "All my rooms"
-
-#: ../app/views/resources/room_request/resolve.php:177
-msgid "Suche anhand der gewünschten Raumeigenschaften"
-msgstr "Search by requested room properties"
-
-#: ../app/views/resources/room_request/resolve.php:184
-msgid "Benachrichtigung über die Auflösung der Anfrage"
-msgstr "Notification on the resolving of the request"
-
-#: ../app/views/resources/room_request/resolve.php:192
-msgid "Nur die erstellende Person benachrichtigen."
-msgstr "Only notify the creator."
-
-#: ../app/views/resources/room_request/resolve.php:200
-msgid "Die erstellende Person und alle Lehrenden benachrichtigen."
-msgstr "Notify the creator and all lecturers."
-
-#: ../app/views/resources/room_request/resolve.php:206
-msgid "Termine zuordnen"
-msgstr "Assign dates"
-
-#: ../app/views/resources/room_request/resolve.php:258
-msgid "Keine Auswahl"
-msgstr "No selection"
-
-#: ../app/views/resources/room_request/resolve.php:334
-#: ../app/views/resources/room_request/decline.php:35
-msgid "Vorherige Anfrage"
-msgstr ""
-
-#: ../app/views/resources/room_request/resolve.php:341
-msgid "Anfrage trotzdem auflösen"
-msgstr "Resolve request anyway"
-
-#: ../app/views/resources/room_request/resolve.php:348
-#: ../app/views/resources/room_request/resolve.php:354
-#: ../app/views/resources/_common/_request_tr.php:136
-msgid "Anfrage bearbeiten"
-msgstr "Edit requests"
-
-#: ../app/views/resources/room_request/resolve.php:372
-msgid "Terminserien expandieren"
-msgstr "Expand date series"
-
-#: ../app/views/resources/room_request/resolve.php:376
-msgid "Terminserien zusammenklappen"
-msgstr "Fold date series"
-
-#: ../app/views/resources/room_request/resolve.php:383
-#: ../app/views/resources/room_request/decline.php:50
-msgid "Nächste Anfrage"
-msgstr ""
-
-#: ../app/views/resources/room_request/resolve_room_tr.php:16
-msgid "Zum Belegungsplan"
-msgstr "Go to booking plan"
-
-#: ../app/views/resources/room_request/rerequest_booking.php:8
-#: ../app/views/resources/booking/delete.php:6
-msgid "Soll die folgende Buchung wirklich gelöscht werden?"
-msgstr "Do you really want to delete the following booking?"
-
-#: ../app/views/resources/room_request/rerequest_booking.php:19
-msgid "Löschen und Anfrage erstellen"
-msgstr "Delete and create request"
-
-#: ../app/views/resources/room_request/delete.php:7
-#: ../app/views/resources/room_request/decline.php:9
-msgid "Soll die folgende Anfrage wirklich gelöscht werden?"
-msgstr "Do you really want to delete the following request?"
-
-#: ../app/views/resources/room_request/_add_edit_form.php:7
-#: ../app/views/resources/booking/_add_edit_form.php:108
-msgid "Mehrtägig"
-msgstr "Lasting several days"
-
-#: ../app/views/resources/room_request/_add_edit_form.php:25
-#: ../app/views/resources/resource/delete_bookings.php:19
-#: ../app/views/course/dates/singledate.php:12
-msgid "Startuhrzeit"
-msgstr "Start time"
-
-#: ../app/views/resources/room_request/_add_edit_form.php:30
-#: ../app/views/resources/resource/delete_bookings.php:24
-#: ../app/views/course/dates/singledate.php:22
-msgid "Enduhrzeit"
-msgstr "End time"
-
-#: ../app/views/resources/room_request/_add_edit_form.php:41
-msgid "Anfragetext"
-msgstr "Request text"
-
-#: ../app/views/resources/room_request/decline.php:13
-msgid "Soll die folgende Anfrage wirklich abgelehnt werden?"
-msgstr "Do you really want to deny the following request?"
-
-#: ../app/views/resources/room_request/decline.php:27
-msgid "Kommentar zur Ablehnung der Anfrage"
-msgstr "Comment for the denial of the request"
-
-#: ../app/views/resources/room_request/decline.php:46
-msgid "Ablehnen"
-msgstr "Decline"
-
-#: ../app/views/resources/export/select_booking_sources.php:6
-#: ../app/views/resources/export/resource_bookings.php:13
-#: ../app/views/resources/resource/export_bookings.php:13
-msgid "Zeitbereich auswählen"
-msgstr "Select time range"
-
-#: ../app/views/resources/export/select_booking_sources.php:27
-#, php-format
-msgid "%u Raum"
-msgid_plural "%u Räume"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/resources/export/select_booking_sources.php:67
-#, php-format
-msgid "%u Raumgruppe"
-msgid_plural "%u Raumgruppen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/resources/export/select_booking_sources.php:103
-msgid "Liste mit Buchungen exportieren"
-msgstr "Export booking list"
-
-#: ../app/views/resources/booking/move.php:8
-#: ../app/views/resources/booking/copy.php:10
-msgid "Zielraum auswählen"
-msgstr "Select target room"
-
-#: ../app/views/resources/booking/move.php:9
-msgid "In welchen Raum soll die Buchung verschoben werden?"
-msgstr "In which room shall the booking be moved?"
-
-#: ../app/views/resources/booking/move.php:11
-#: ../app/views/resources/booking/copy.php:13
-msgid "Zielressource auswählen"
-msgstr "Select target resource"
-
-#: ../app/views/resources/booking/move.php:12
-msgid "In welche Ressource soll die Buchung verschoben werden?"
-msgstr "In which resource shall the booking be moved?"
-
-#: ../app/views/resources/booking/move.php:47
-msgid ""
-"Es sind keine Räume verfügbar, in die die Buchung verschoben werden kann!"
-msgstr "No rooms are available in which the booking can be moved!"
-
-#: ../app/views/resources/booking/move.php:51
-msgid ""
-"Es sind keine Ressourcen verfügbar, in die die Buchung verschoben werden "
-"kann!"
-msgstr "No resources are available in which the booking can be moved!"
-
-#: ../app/views/resources/booking/copy.php:11
-msgid "In welchen Raum bzw. welche Räume soll die Buchung kopiert werden?"
-msgstr "In which room(s) shall the booking be copied?"
-
-#: ../app/views/resources/booking/copy.php:14
-msgid "In welche Ressource(n) soll die Buchung kopiert werden?"
-msgstr "In which resource(s) shall the booking be copied?"
-
-#: ../app/views/resources/booking/copy.php:46
-msgid "Es sind keine Räume verfügbar, in die die Buchung kopiert werden kann!"
-msgstr "No rooms are available in which the booking can be copied!"
-
-#: ../app/views/resources/booking/copy.php:48
-msgid ""
-"Es sind keine Ressourcen verfügbar, in die die Buchung kopiert werden kann!"
-msgstr "No resources are available in which the booking can be copied!"
-
-#: ../app/views/resources/booking/add_from_request.php:12
-msgid "Details zur Anfrage"
-msgstr "Request details"
-
-#: ../app/views/resources/booking/add_from_request.php:13
-msgid "Angefragte Zeiträume"
-msgstr "Requested periods"
-
-#: ../app/views/resources/booking/add_from_request.php:20
-msgid "Zu buchende Ressource"
-msgstr "Resource to be booked"
-
-#: ../app/views/resources/booking/add_from_request.php:24
-msgid "Buchungsoptionen"
-msgstr "Booking options"
-
-#: ../app/views/resources/booking/add_from_request.php:35
-msgid "Lehrende über die Buchung benachrichtigen"
-msgstr "Notify lecturers about the booking"
-
-#: ../app/views/resources/booking/add_from_request.php:42
-#: ../app/views/resources/booking/index.php:142
-#: ../app/views/resources/booking/_add_edit_form.php:508
-msgid "Interner Kommentar zur Buchung"
-msgstr "Internal comment for the booking"
-
-#: ../app/views/resources/booking/copy_to_semester.php:8
-#: ../app/views/room_management/planning/copy_bookings.php:131
-msgid "Zielsemester"
-msgstr "Target semester"
-
-#: ../app/views/resources/booking/copy_to_semester.php:10
-msgid "In welches Semester soll die Buchung kopiert werden?"
-msgstr "In which semester shall the booking be copied?"
-
-#: ../app/views/resources/booking/copy_to_semester.php:25
-msgid "In welcher Kalenderwoche soll die Buchung stattfinden?"
-msgstr "In which calendar week shall the booking take place?"
-
-#: ../app/views/resources/booking/index.php:5
-#: ../app/views/resources/booking/_add_edit_form.php:475
-#, php-format
-msgid "Letzte Änderung am %s"
-msgstr "Last changes on %s"
-
-#: ../app/views/resources/booking/index.php:10
-msgid "Gebuchte Ressource"
-msgstr "Booked resource"
-
-#: ../app/views/resources/booking/index.php:18
-msgid "Zeiträume"
-msgstr "Period"
-
-#: ../app/views/resources/booking/index.php:29
-msgid "Diese Buchung ist Teil der folgenden Terminserie:"
-msgstr "This booking is a part of the following date series:"
-
-#: ../app/views/resources/booking/index.php:41
-msgid "Nicht verfügbar"
-msgstr "Not available"
-
-#: ../app/views/resources/booking/index.php:46
-msgid "Gesperrt für:"
-msgstr "Locked for:"
-
-#: ../app/views/resources/booking/index.php:49
-msgid "Sperrung vorgenommen von:"
-msgstr "Locked by:"
-
-#: ../app/views/resources/booking/index.php:55
-msgid "Reserviert für:"
-msgstr "Reserved for:"
-
-#: ../app/views/resources/booking/index.php:58
-msgid "Reservierung vorgenommen von:"
-msgstr "Reserved by:"
-
-#: ../app/views/resources/booking/index.php:64
-#: ../app/views/resources/booking/_add_edit_form.php:455
-msgid "Gebucht von:"
-msgstr "Booked by:"
-
-#: ../app/views/resources/booking/index.php:84
-#: ../app/views/resources/booking/index.php:117
-msgid "Gebucht für:"
-msgstr "Booked for:"
-
-#: ../app/views/resources/booking/_add_edit_form.php:15
-msgid "Bitte wählen Sie einen der folgenden Buchungstypen aus:"
-msgstr "Please select one of the following booking types:"
-
-#: ../app/views/resources/booking/_add_edit_form.php:43
-msgid "Uhrzeit (von - bis)"
-msgstr "Time (from - until)"
-
-#: ../app/views/resources/booking/_add_edit_form.php:57
-msgid "Datum (von - bis)"
-msgstr "Date (from - until)"
-
-#: ../app/views/resources/booking/_add_edit_form.php:115
-msgid "Ende der Wiederholung"
-msgstr "Repetition end"
-
-#: ../app/views/resources/booking/_add_edit_form.php:116
-msgid "Ende des Terminblocks"
-msgstr "End of date block"
-
-#: ../app/views/resources/booking/_add_edit_form.php:131
-msgid "Enddatum manuell festlegen."
-msgstr "Set end date manually."
-
-#: ../app/views/resources/booking/_add_edit_form.php:144
-#, php-format
-msgid "Ende der Vorlesungszeit des Semesters %s"
-msgstr "End of the teaching period of the semester %s"
-
-#: ../app/views/resources/booking/_add_edit_form.php:172
-msgid "Alle betroffenen Personen über die Sperrbuchung benachrichtigen."
-msgstr "Notify all affected persons about the lock booking."
-
-#: ../app/views/resources/booking/_add_edit_form.php:185
-msgid "Alle anderen Teilräume ebenfalls sperren."
-msgstr "Lock all other room parts, too."
-
-#: ../app/views/resources/booking/_add_edit_form.php:189
-msgid "Alle anderen Teilräume ebenfalls reservieren."
-msgstr "Reserve all other room parts, too."
-
-#: ../app/views/resources/booking/_add_edit_form.php:195
-msgid "Alle anderen Teilräume ebenfalls buchen."
-msgstr "Book all other room parts, too."
-
-#: ../app/views/resources/booking/_add_edit_form.php:203
-#: ../app/views/course/dates/singledate.php:31
-#: ../app/views/course/dates/details.php:20
-#: ../app/views/course/dates/details-edit.php:8
-msgid "Art des Termins"
-msgstr "Date type"
-
-#: ../app/views/resources/booking/_add_edit_form.php:213
-msgid "Konvolut"
-msgstr "Bundle"
-
-#: ../app/views/resources/booking/_add_edit_form.php:217
-#: ../app/views/resources/booking/_add_edit_form.php:233
-msgid "Terminblock"
-msgstr "Date block"
-
-#: ../app/views/resources/booking/_add_edit_form.php:223
-#: ../app/views/resources/booking/_add_edit_form.php:310
-msgid "Wiederholungstermine"
-msgstr "Repetition date"
-
-#: ../app/views/resources/booking/_add_edit_form.php:240
-#: ../app/views/course/block_appointments/index.php:57
-msgid "Jeden Tag"
-msgstr "Every day"
-
-#: ../app/views/resources/booking/_add_edit_form.php:248
-#: ../app/views/course/block_appointments/index.php:64
-msgid "Mo-Fr"
-msgstr "Mo-Fr"
-
-#: ../app/views/resources/booking/_add_edit_form.php:256
-msgid "Montags"
-msgstr "Mondays"
-
-#: ../app/views/resources/booking/_add_edit_form.php:264
-msgid "Dienstags"
-msgstr "Tuesdays"
-
-#: ../app/views/resources/booking/_add_edit_form.php:272
-msgid "Mittwochs"
-msgstr "Wednesdays"
-
-#: ../app/views/resources/booking/_add_edit_form.php:280
-msgid "Donnerstags"
-msgstr "Thursdays"
-
-#: ../app/views/resources/booking/_add_edit_form.php:288
-msgid "Freitags"
-msgstr "Fridays"
-
-#: ../app/views/resources/booking/_add_edit_form.php:296
-msgid "Samstags"
-msgstr "Saturdays"
-
-#: ../app/views/resources/booking/_add_edit_form.php:304
-msgid "Sonntags"
-msgstr "Sundays"
-
-#: ../app/views/resources/booking/_add_edit_form.php:317
-msgid "Tägliche Wiederholung"
-msgstr "Daily repetition"
-
-#: ../app/views/resources/booking/_add_edit_form.php:331
-msgid "jeden zweiten Tag"
-msgstr "every other day"
-
-#: ../app/views/resources/booking/_add_edit_form.php:337
-msgid "jeden dritten Tag"
-msgstr "every third day"
-
-#: ../app/views/resources/booking/_add_edit_form.php:343
-msgid "jeden vierten Tag"
-msgstr "every fourth day"
-
-#: ../app/views/resources/booking/_add_edit_form.php:349
-msgid "jeden fünften Tag"
-msgstr "every fifth day"
-
-#: ../app/views/resources/booking/_add_edit_form.php:355
-msgid "jeden sechsten Tag"
-msgstr "every sixth day"
-
-#: ../app/views/resources/booking/_add_edit_form.php:363
-msgid "Wöchentliche Wiederholung"
-msgstr "Weekly repetition"
-
-#: ../app/views/resources/booking/_add_edit_form.php:389
-msgid "jede vierte Woche"
-msgstr "every fourth week"
-
-#: ../app/views/resources/booking/_add_edit_form.php:395
-msgid "jede fünfte Woche"
-msgstr "every fifth week"
-
-#: ../app/views/resources/booking/_add_edit_form.php:403
-msgid "Monatliche Wiederholung"
-msgstr "Monthly repetition"
-
-#: ../app/views/resources/booking/_add_edit_form.php:433
-msgid "Eine andere nutzende Person auswählen"
-msgstr "Select another user"
-
-#: ../app/views/resources/booking/_add_edit_form.php:443
-msgid "Die nutzende Person zur Buchung"
-msgstr "The user of the booking"
-
-#: ../app/views/resources/booking/_add_edit_form.php:484
-msgid "Buchungstext"
-msgstr "Booking text"
-
-#: ../app/views/resources/booking/_add_edit_form.php:494
-msgid "Interner Kommentar zur Reservierung"
-msgstr "Internal comment for the reservation"
-
-#: ../app/views/resources/booking/_add_edit_form.php:498
-msgid "Interner Kommentar zur Sperrbuchung"
-msgstr "Internal comment for the lock booking"
-
-#: ../app/views/resources/booking/_add_edit_form.php:502
-msgid "Interner Kommentar zur geplanten Buchung"
-msgstr "Internal comment for the planned booking"
-
-#: ../app/views/resources/booking/_add_edit_form.php:515
-#: ../app/views/resources/booking/_add_edit_form.php:520
-msgid "Vorhandene Buchungen überschreiben"
-msgstr "Overwrite existing bookings"
-
-#: ../app/views/resources/booking/_add_edit_form.php:527
-msgid "Einzelbuchungen"
-msgstr "Single booking"
-
-#: ../app/views/resources/booking/_add_edit_form.php:570
-msgid "wiederherstellen"
-msgstr "restore"
-
-#: ../app/views/resources/booking/_add_edit_form.php:585
-msgid "Reservierungen entfernen und buchen"
-msgstr "Remove reservation and create booking"
-
-#: ../app/views/resources/booking/edit.php:5
-msgid "Duplizieren"
-msgstr ""
-
-#: ../app/views/resources/print/clipboard_rooms.php:13
-#, php-format
-msgid "In der Raumgruppe %s sind keine Räume vorhanden!"
-msgstr "The room group %s does not contain any room!"
-
-#: ../app/views/resources/print/clipboard_rooms.php:21
-#, php-format
-msgid "Bitte Räume aus der Raumgruppe %s auswählen"
-msgstr "Please select rooms from the room group %s"
-
-#: ../app/views/resources/print/clipboard_rooms.php:48
-msgid "Raumgruppe neu wählen"
-msgstr "Reselect room group"
-
-#: ../app/views/resources/print/clipboard_rooms.php:56
-msgid "Individuelle Raumgruppe"
-msgstr "Individual room group"
-
-#: ../app/views/resources/print/clipboard_rooms.php:66
-msgid "Art des Belegungsplanes"
-msgstr "Booking plan type"
-
-#: ../app/views/resources/print/clipboard_rooms.php:72
-msgid "Wochenplan"
-msgstr "Week booking plan"
-
-#: ../app/views/resources/print/clipboard_rooms.php:78
-msgid "Wochenplan inklusive Wochenende"
-msgstr "Week booking plan including weekends"
-
-#: ../app/views/resources/print/clipboard_rooms.php:84
-msgid "Tagesplan"
-msgstr "Day booking plan"
-
-#: ../app/views/resources/print/clipboard_rooms.php:97
-msgid "Weiter zur Raumauswahl"
-msgstr "Advance to room selection"
-
-#: ../app/views/resources/print/clipboard_rooms.php:129
-#, php-format
-msgid "%s: Belegungsplan"
-msgstr "%s: Booking plan"
-
-#: ../app/views/resources/location/select_category.php:5
-msgid "Standortkategorie"
-msgstr "Location category"
-
-#: ../app/views/resources/location/select_category.php:7
-msgid "Bitte eine Standortkategorie auswählen:"
-msgstr "Please select a location category:"
-
-#: ../app/views/resources/location/delete.php:3
-msgid "Soll der folgende Standort wirklich gelöscht werden?"
-msgstr "Do you really want to delete the following location?"
-
-#: ../app/views/resources/location/_add_edit_form.php:11
-msgid "Name des Standortes"
-msgstr "Location name"
-
-#: ../app/views/resources/resource/delete_bookings.php:7
-msgid "Zeitbereich zum Löschen von Buchungen wählen"
-msgstr "Select time range to delete bookings"
-
-#: ../app/views/resources/resource/delete_bookings.php:31
-#: ../app/views/resources/_common/_resource_tr.php:223
-msgid "Buchungen löschen"
-msgstr "Delete bookings"
-
-#: ../app/views/resources/resource/permissions.php:59
-#: ../app/views/resources/resource/temporary_permissions.php:236
-msgid "Teilnehmende aus Veranstaltung hinzufügen"
-msgstr "Add participants from courses"
-
-#: ../app/views/resources/resource/_standard_properties_display_part.php:20
-msgid "Weitere Eigenschaften"
-msgstr "Additional properties"
-
-#: ../app/views/resources/resource/_standard_properties_display_part.php:36
-#: ../app/views/admin/configuration/table-header.php:10
-msgid "Wert"
-msgstr "Value"
-
-#: ../app/views/resources/resource/temporary_permissions.php:29
-#: ../app/views/resources/_common/_permission_table.php:67
-msgid "Rechtestufe"
-msgstr "Permission level"
-
-#: ../app/views/resources/resource/temporary_permissions.php:30
-msgid "Gültig von"
-msgstr "Valid from"
-
-#: ../app/views/resources/resource/temporary_permissions.php:31
-msgid "Gültig bis"
-msgstr "Valid until"
-
-#: ../app/views/resources/resource/temporary_permissions.php:174
-msgid "Neuen Zeitbereich für die ausgewählten Berechtigungen setzen"
-msgstr "Set a new time range for the selected permissions"
-
-#: ../app/views/resources/resource/delete.php:5
-msgid "Soll die folgende Ressource wirklich gelöscht werden?"
-msgstr "Do you really want to delete the following resource?"
-
-#: ../app/views/resources/resource/_add_edit_form.php:25
-msgid "Elternressource"
-msgstr "Parent resource"
-
-#: ../app/views/resources/resource/files.php:8
-msgid "Zum Hauptordner"
-msgstr "Go to main folder"
-
-#: ../app/views/resources/resource/files.php:31
-#: ../app/views/file/choose_folder.php:91 ../app/views/file/choose_file.php:79
-msgid "Dieser Ordner ist leer"
-msgstr "This folder is empty"
-
-#: ../app/views/resources/resource/files.php:69 ../app/views/files/flat.php:38
-#: ../app/views/files/index.php:62 ../app/views/files/_flat_tfoot.php:40
-msgid "Soll die Auswahl wirklich gelöscht werden?"
-msgstr "Do you really want to delete the selection?"
-
-#: ../app/views/resources/room_planning/semester_plan.php:154
-#: ../app/views/resources/room_planning/booking_plan.php:124
-msgid ""
-"Es wurde kein Raum ausgewählt und Sie haben keine Berechtigungen an Räumen!"
-msgstr "No room has been selected and you don't have permissions on rooms!"
-
-#: ../app/views/resources/room_planning/overbooked_rooms.php:7
-msgid "Anzahl Teilnehmende der Veranstaltung"
-msgstr "Amount of participants of the course"
-
-#: ../app/views/resources/room_planning/overbooked_rooms.php:24
-#, php-format
-msgid "%d Teilnehmende"
-msgstr "%d participants"
-
-#: ../app/views/resources/room_planning/overbooked_rooms.php:39
-#: ../app/views/resources/_common/_resource_tr.php:260
-msgid "Belegungsplan anzeigen"
-msgstr "Display booking plan"
-
-#: ../app/views/resources/room_planning/overbooked_rooms.php:53
-msgid "Es liegen keine überbuchten Räume vor."
-msgstr "There are no overbooked rooms available."
-
-#: ../app/views/resources/room_planning/booking_plan.php:24
-#: ../app/views/room_management/planning/index.php:29
-msgid "Vorlesungswoche"
-msgstr "Week of lecture"
-
-#: ../app/views/resources/_common/building.php:22
-msgid "Verantwortliche Person"
-msgstr "Responsible person"
-
-#: ../app/views/resources/_common/building.php:30
-msgid "Das Gebäude ist behindertengerecht ausgestattet."
-msgstr "The building is accessible."
-
-#: ../app/views/resources/_common/_room_tr.php:45
-msgid "Anfragen auflösen"
-msgstr "Resolve requests"
-
-#: ../app/views/resources/_common/_resource_tr.php:209
-msgid "Buchen"
-msgstr "Book"
-
-#: ../app/views/resources/_common/_resource_tr.php:239
-#: ../app/views/course/dates/_date_row.php:61
-msgid "Dateien anzeigen"
-msgstr "Show files"
-
-#: ../app/views/resources/_common/_room_search_result.php:16
-msgid "Raumdetails anzeigen"
-msgstr "Show room details"
-
-#: ../app/views/resources/_common/_room_search_result.php:68
-msgid "Zur Raumgruppe hinzufügen"
-msgstr "Add to room group"
-
-#: ../app/views/resources/_common/_request_info.php:19
-msgid "Gewünschte Ressource"
-msgstr "Requested resource"
-
-#: ../app/views/resources/_common/_request_info.php:26
-msgid "Es wurde kein spezifischer Raum gewünscht."
-msgstr "No specific room has been requested."
-
-#: ../app/views/resources/_common/_request_info.php:28
-msgid "Es wurde keine spezifische Ressource gewünscht."
-msgstr "No specific resource has been requested."
-
-#: ../app/views/resources/_common/_request_info.php:35
-msgid ""
-"Die Anfrage ist unvollständig, und kann so nicht dauerhaft gespeichert "
-"werden!"
-msgstr "The request is incomplete and can therefore not be saved permanently!"
-
-#: ../app/views/resources/_common/_request_info.php:37
-msgid "Die Anfrage ist neu."
-msgstr "The request is new."
-
-#: ../app/views/resources/_common/_request_info.php:51
-msgid "Letzte Änderung am"
-msgstr "Last changes on"
-
-#: ../app/views/resources/_common/_request_info.php:53
-msgid "Letzte Änderung von"
-msgstr "Last changes by"
-
-#: ../app/views/resources/_common/_request_info.php:64
-msgid "Gewünschte Zahl an Sitzplätzen"
-msgstr "Requested amount of seats"
-
-#: ../app/views/resources/_common/_request_info.php:68
-#: ../app/views/course/room_requests/request_summary.php:50
-msgid "Gewünschter Raumtyp"
-msgstr "Requested room type"
-
-#: ../app/views/resources/_common/_request_info.php:85
-msgid "Bearbeitung durch"
-msgstr "Processing by"
-
-#: ../app/views/resources/_common/_request_info.php:93
-#: ../app/views/module/module/modul.php:220
-#: ../app/views/course/room_requests/_request_edit_header.php:18
-#: ../app/views/course/room_requests/index.php:20
-#: ../app/views/admin/courses/courses.php:82
-#: ../app/views/admin/courses/courses.php:83
-msgid "Bearbeitungsstatus"
-msgstr "Processing status"
-
-#: ../app/views/resources/_common/_request_info.php:96
-msgid "Nachricht an die Administration"
-msgstr "Message to the administration"
-
-#: ../app/views/resources/_common/_request_info.php:100
-msgid "Nachricht der Adminstration"
-msgstr "Message from the administration"
-
-#: ../app/views/resources/_common/_request_tr.php:7
-msgid "Markierung ändern"
-msgstr "Change marking"
-
-#: ../app/views/resources/_common/_request_tr.php:63
-#, php-format
-msgid "vom %1$s bis %2$s"
-msgstr "from %1$s until %2$s"
-
-#: ../app/views/resources/_common/_request_tr.php:69
-#, php-format
-msgid "am %1$s von %2$s bis %3$s"
-msgstr "on %1$s from %2$s to %3$s"
-
-#: ../app/views/resources/_common/_request_tr.php:153
-msgid "Profil anzeigen"
-msgstr "Show profile"
-
-#: ../app/views/resources/_common/_permission_table.php:176
-#, php-format
-msgid "Es sind keine besonderen Rechte für %s vorhanden."
-msgstr "No special permissions available for %s."
-
-#: ../app/views/resources/_common/_permission_table.php:180
-msgid "Es sind keine besonderen Rechte vorhanden."
-msgstr "No special permissions available."
-
-#: ../app/views/score/index.php:4
-msgid "Ihre Punkte:"
-msgstr "Your score:"
-
-#: ../app/views/score/index.php:8
-msgid "Stud.IP-Rangliste"
-msgstr "Stud.IP high score list"
-
-#: ../app/views/score/index.php:21
-msgid "Platz"
-msgstr "Ranking"
-
-#: ../app/views/score/index.php:55
-#, php-format
-msgid "Eine persönliche Ankündigung"
-msgid_plural "%s persönliche Ankündigungen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/score/index.php:67
-#, php-format
-msgid "Eine Umfrage"
-msgid_plural "%s Umfragen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/score/index.php:79
-#, php-format
-msgid "Ein Termin"
-msgid_plural "%s Termine"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/score/index.php:99
-msgid "Ihren Wert von der Liste löschen"
-msgstr "Remove your score from the high score list"
-
-#: ../app/views/news/edit_news.php:49
-msgid "Titel der Ankündigung"
-msgstr "Header of announcement"
-
-#: ../app/views/news/edit_news.php:63
-msgid "Geben Sie hier den Ankündigungstext ein"
-msgstr "Enter announcement"
-
-#: ../app/views/news/edit_news.php:64
-msgid "Inhalt der Ankündigung"
-msgstr "Content of announcement"
-
-#: ../app/views/news/edit_news.php:70
-msgid "Veröffentlichungsdatum"
-msgstr "Release date"
-
-#: ../app/views/news/edit_news.php:77 ../app/views/news/admin_news.php:89
-msgid "Einstelldatum"
-msgstr "Creation date"
-
-#: ../app/views/news/edit_news.php:93
-msgid "Laufzeit in Tagen"
-msgstr "Duration in days"
-
-#: ../app/views/news/edit_news.php:98
-msgid "Laufzeit"
-msgstr "Duration"
-
-#: ../app/views/news/edit_news.php:109
-msgid "Kommentare zulassen"
-msgstr "Accept comments"
-
-#: ../app/views/news/edit_news.php:116
-msgid "Kommentare zu dieser Ankündigung"
-msgstr "Comments"
-
-#: ../app/views/news/edit_news.php:128
-msgid "Markierte Kommentare löschen"
-msgstr "Delete selected comments"
-
-#: ../app/views/news/edit_news.php:140
-msgid "In weiteren Bereichen anzeigen"
-msgstr "Show in other areas"
-
-#: ../app/views/news/edit_news.php:149
-msgid "Suchvorlage auswählen"
-msgstr "Select search template"
-
-#: ../app/views/news/edit_news.php:152
-#: ../app/views/multipersonsearch/no_js_form.php:20
-msgid "Vorauswahl bestimmter Bereiche, alternativ zur Suche"
-msgstr "Pre-select areas"
-
-#: ../app/views/news/edit_news.php:154
-#: ../app/views/multipersonsearch/no_js_form.php:21
-msgid "--- Suchvorlagen ---"
-msgstr "--- Search templates ---"
-
-#: ../app/views/news/edit_news.php:164
-#: ../app/views/multipersonsearch/no_js_form.php:28
-msgid "Vorauswahl anwenden"
-msgstr "Use pre-selection"
-
-#: ../app/views/news/edit_news.php:171
-msgid "Freitextsuche"
-msgstr "Free text search"
-
-#: ../app/views/news/edit_news.php:188
-msgid "Gefundene Bereiche, die der Ankündigung hinzugefügt werden können"
-msgstr "Add areas to this announcement"
-
-#: ../app/views/news/edit_news.php:212
-msgid "In den Suchergebnissen markierte Bereiche der Ankündigung hinzufügen"
-msgstr "Add marked areas to this announcement"
-
-#: ../app/views/news/edit_news.php:218
-msgid ""
-"Bei den bereits ausgewählten Bereichen die markierten Bereiche entfernen"
-msgstr "Delete the selected areas from the already selected areas"
-
-#: ../app/views/news/edit_news.php:231
-msgid "Keine Bereiche ausgewählt"
-msgstr "No areas selected"
-
-#: ../app/views/news/edit_news.php:233
-msgid "1 Bereich ausgewählt"
-msgstr "1 area selected"
-
-#: ../app/views/news/edit_news.php:235
-#, php-format
-msgid "%s Bereiche ausgewählt"
-msgstr "%s areas in which the announcement is shown"
-
-#: ../app/views/news/edit_news.php:239
-msgid "Bereiche, in denen die Ankündigung angezeigt wird"
-msgstr "Announcement will be shown in these areas"
-
-#: ../app/views/news/edit_news.php:266
-#: ../app/views/course/ilias_interface/edit_object_assignment.php:28
-#: ../app/views/course/ilias_interface/add_object.php:128
-#: ../app/views/course/ilias_interface/edit_moduletitle.php:9
-#: ../app/views/course/ilias_interface/add_groups.php:30
-#: ../app/views/course/ilias_interface/view_object.php:20
-#: ../app/views/course/enrolment/apply.php:27
-#: ../app/views/course/enrolment/apply.php:42
-#: ../app/views/course/statusgroups/groupinfo.php:99
-#: ../app/views/admin/role/assign_role_institutes.php:34
-#: ../app/views/tour/import.php:47
-#: ../app/views/my_ilias_accounts/view_object.php:9
-msgid "Schließen"
-msgstr "Close"
-
-#: ../app/views/news/display.php:53
-msgid ""
-"Es sind keine aktuellen Ankündigungen vorhanden. Um neue Ankündigungen zu "
-"erstellen, klicken Sie rechts auf das Plus-Zeichen."
-msgstr ""
-"No new announcements. To create a new announcement, click the plus sign."
-
-#: ../app/views/news/display.php:57 ../app/views/news/display.php:63
-#, php-format
-msgid "Abgelaufene und unveröffentlichte Ankündigungen anzeigen (%s)"
-msgstr "Show expired and unpublished announcements (%s)"
-
-#: ../app/views/news/display.php:67
-msgid "Abgelaufene und unveröffentlichte Ankündigungen ausblenden"
-msgstr "Show expired and unpublished announcements"
-
-#: ../app/views/news/_comments.php:18
-msgid "Kommentieren"
-msgstr "Comment"
-
-#: ../app/views/news/_comments.php:23
-msgid "Geben Sie hier Ihren Kommentar ein!"
-msgstr "Enter your comment here!"
-
-#: ../app/views/news/_comments.php:34
-#, php-format
-msgid "Kommentare lesen (%s) / Kommentar schreiben"
-msgstr "Read comment (%s) / write comment"
-
-#: ../app/views/news/admin_news.php:41
-msgid "Anzeige von"
-msgstr "Display from"
-
-#: ../app/views/news/admin_news.php:43
-msgid "Ankündigungen anzeigen, die ab diesem Datum sichtbar sind"
-msgstr "Show announcements visible from"
-
-#: ../app/views/news/admin_news.php:48
-msgid "Anzeige bis"
-msgstr "Display until"
-
-#: ../app/views/news/admin_news.php:50
-msgid "Ankündigungen anzeigen, die vor diesem Datum sichtbar sind"
-msgstr "Show announcements visible before"
-
-#: ../app/views/news/admin_news.php:55
-msgid "Filter anwenden"
-msgstr "Use filter"
-
-#: ../app/views/news/admin_news.php:55
-msgid "Liste mit Suchbegriff und/oder Zeitraum filtern"
-msgstr "Results filtered by search and/or filter"
-
-#: ../app/views/news/admin_news.php:103
-#: ../app/views/course/timesrooms/_regularEvents.php:156
-#: ../app/views/course/timesrooms/_irregularEvents.php:112
-#: ../app/views/course/dates/create_folders.php:15
-#: ../app/views/admin/courses/additional_inputs.php:9
-#: ../app/views/admin/courses/additional_inputs.php:11
-#: ../app/views/admin/courses/additional_inputs.php:17
-#: ../app/views/admin/courses/additional_inputs.php:19
-#: ../app/views/admin/courses/additional_inputs.php:22
-#: ../app/views/admin/courses/additional_inputs.php:24
-msgid "Alle auswählen"
-msgstr "Select all"
-
-#: ../app/views/news/admin_news.php:114
-msgid "Diese Ankündigung zum Entfernen vormerken"
-msgstr "Mark announcements for deleting"
-
-#: ../app/views/news/admin_news.php:132
-msgid "Kopieren, um neue Ankündigung zu erstellen"
-msgstr "Copy to create new announcement"
-
-#: ../app/views/news/admin_news.php:139
-msgid "Ankündigung aus diesem Bereich entfernen"
-msgstr "Delete announcement in this area"
-
-#: ../app/views/news/admin_news.php:145
-msgid "Ankündigung löschen"
-msgstr "Delete announcement"
-
-#: ../app/views/news/admin_news.php:158
-msgid "Alle markierten Ankündigungen entfernen"
-msgstr "Delete selected announcement"
-
-#: ../app/views/news/admin_news.php:166
-msgid "Keine Ankündigungen vorhanden."
-msgstr "No announcements."
-
-#: ../app/views/news/_actions.php:13
-msgid "Aufrufe"
-msgstr "Views"
-
-#: ../app/views/news/_actions.php:26
-#, php-format
-msgid "%s neue(r) Kommentar(e)"
-msgstr "%s new comment(s)"
-
-#: ../app/views/news/_actions.php:29
-#, php-format
-msgid "%s Kommentare"
-msgstr "%s comments"
-
-#: ../app/views/news/rss_config.php:4
-msgid "RSS Export aktivieren"
-msgstr "Activate RSS feeds"
-
-#: ../app/views/news/rss_config.php:6
-msgid "RSS Export deaktivieren"
-msgstr "Deactivate RSS feed"
-
-#: ../app/views/fachabschluss/faecher/details_fachbereich.php:15
-#: ../app/views/fachabschluss/faecher/index.php:30
-#: ../app/views/fachabschluss/abschluesse/details.php:17
-msgid "Fach bearbeiten"
-msgstr "Edit subject"
-
-#: ../app/views/fachabschluss/faecher/index.php:5
-msgid "Fächer mit verwendeten Abschlüssen"
-msgstr "Fields of study with used final degrees"
-
-#: ../app/views/fachabschluss/faecher/index.php:6
-#, php-format
-msgid "%s Fach"
-msgid_plural "%s Fächer"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/fachabschluss/faecher/index.php:35
-msgid "Fach löschen"
-msgstr "Delete field of study"
-
-#: ../app/views/fachabschluss/faecher/index.php:38
-#, php-format
-msgid "Wollen Sie wirklich das Fach \"%s\" löschen?"
-msgstr "Really delete field \"%s\"?"
-
-#: ../app/views/fachabschluss/faecher/index.php:42
-msgid "Fach kann nicht glöscht werden"
-msgstr "Subject cannot be delete"
-
-#: ../app/views/fachabschluss/faecher/fach.php:17
-#: ../app/views/fachabschluss/kategorien/kategorie.php:22
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:12
-#: ../app/views/studiengaenge/stgteilbezeichnungen/index.php:12
-#: ../app/views/studiengaenge/stgteilbezeichnungen/stgteilbezeichnung.php:16
-msgid "Kurzname"
-msgstr "Short name"
-
-#: ../app/views/fachabschluss/faecher/fach.php:57
-msgid "Bitte mindestens eine verantwortliche Einrichtung hinzufügen."
-msgstr "Please add at least one responsible Institute."
-
-#: ../app/views/fachabschluss/faecher/fach.php:59
-#: ../app/views/module/module/modul.php:303
-msgid "Es wurde noch keine verantwortliche Einrichtung angegeben."
-msgstr "No responsible institute has been added yet."
-
-#: ../app/views/fachabschluss/faecher/fach.php:84
-#: ../app/views/admin/content_terms_of_use/edit.php:35
-msgid "Zusätzliche Angaben"
-msgstr "Additional information"
-
-#: ../app/views/fachabschluss/faecher/fach.php:94
-msgid ""
-"Hier können zusätzlich Schlagworte angegeben werden, die in der Suche "
-"berücksichtigt werden."
-msgstr "Additional keywords which are used in the search can be entered here."
-
-#: ../app/views/fachabschluss/faecher/fach.php:101
-msgid "Fach anlegen"
-msgstr "Add field of study"
-
-#: ../app/views/fachabschluss/faecher/fach.php:105
-#: ../app/views/fachabschluss/kategorien/kategorie.php:50
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:42
-#: ../app/views/module/module/modulteil.php:465
-#: ../app/views/module/module/modul.php:685
-#: ../app/views/module/module/lvgruppe.php:24
-#: ../app/views/course/studygroup/edit.php:16
-#: ../app/views/course/studygroup/edit.php:51
-#: ../app/views/settings/messaging.php:119
-#: ../app/views/settings/account/index.php:158
-#: ../app/views/settings/studies/studiengang.php:103
-#: ../app/views/settings/studies/studiengang.php:157
-#: ../app/views/settings/studies/institute.php:54
-#: ../app/views/settings/studies/institute.php:98
-#: ../app/views/settings/notification.php:95
-#: ../app/views/settings/userdomains.php:49
-#: ../app/views/settings/userdomains.php:84
-#: ../app/views/settings/userdomains.php:112
-#: ../app/views/settings/calendar.php:157 ../app/views/settings/password.php:27
-#: ../app/views/settings/details.php:107
-#: ../app/views/admin/specification/edit.php:75
-#: ../app/views/admin/user/edit_institute.php:62
-#: ../app/views/admin/datafields/edit.php:198
-#: ../app/views/lvgruppen/lvgruppen/lvgruppe.php:23
-#: ../app/views/studiengaenge/versionen/abschnitt.php:28
-#: ../app/views/studiengaenge/versionen/modul_zuordnung.php:33
-#: ../app/views/studiengaenge/versionen/modulteil_semester.php:52
-#: ../app/views/studiengaenge/versionen/version.php:141
-#: ../app/views/studiengaenge/stgteilbezeichnungen/stgteilbezeichnung.php:35
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:100
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:344
-msgid "Änderungen übernehmen"
-msgstr "Accept changes"
-
-#: ../app/views/fachabschluss/faecher/fach.php:108
-#: ../app/views/fachabschluss/kategorien/kategorie.php:56
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:45
-#: ../app/views/module/module/modulteil.php:476
-#: ../app/views/module/module/modul.php:692
-#: ../app/views/module/module/lvgruppe.php:26
-#: ../app/views/admin/courseplanning/weekday.php:10
-#: ../app/views/lvgruppen/lvgruppen/lvgruppe.php:25
-#: ../app/views/studiengaenge/versionen/abschnitt.php:30
-#: ../app/views/studiengaenge/versionen/modul_zuordnung.php:38
-#: ../app/views/studiengaenge/versionen/modulteil_semester.php:54
-#: ../app/views/studiengaenge/versionen/version.php:144
-#: ../app/views/studiengaenge/stgteilbezeichnungen/stgteilbezeichnung.php:41
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:103
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:350
-msgid "zurück zur Übersicht"
-msgstr "back to overview"
-
-#: ../app/views/fachabschluss/faecher/details.php:16
-#: ../app/views/fachabschluss/abschluesse/index.php:31
-msgid "Abschluss bearbeiten"
-msgstr "Edit degree"
-
-#: ../app/views/fachabschluss/kategorien/kategorie.php:46
-msgid "Abschluss-Kategorie anlegen"
-msgstr "Add degree category"
-
-#: ../app/views/fachabschluss/kategorien/index.php:14
-#: ../app/views/course/topics/index.php:50
-msgid "Materialien"
-msgstr "Materials"
-
-#: ../app/views/fachabschluss/kategorien/index.php:43
-msgid "Abschluss-Kategorie bearbeiten"
-msgstr "Edit category of degree"
-
-#: ../app/views/fachabschluss/kategorien/index.php:48
-msgid "Abschluss-Kategorie löschen"
-msgstr "Delete category of degree"
-
-#: ../app/views/fachabschluss/kategorien/index.php:51
-#, php-format
-msgid "Wollen Sie wirklich die Abschluss-Kategorie \"%s\" löschen?"
-msgstr "Confirm deletion of \"%s\"?"
-
-#: ../app/views/fachabschluss/kategorien/index.php:55
-msgid "Löschen nicht möglich"
-msgstr "Deleting impossible"
-
-#: ../app/views/fachabschluss/kategorien/index.php:69
-msgid "Es wurden noch keine Abschluss-Kategorien angelegt."
-msgstr "No category created."
-
-#: ../app/views/fachabschluss/abschluesse/index.php:5
-msgid "Abschlüsse mit verwendeten Fächern"
-msgstr "Degrees with used fields of study"
-
-#: ../app/views/fachabschluss/abschluesse/index.php:6
-#, php-format
-msgid "%s Abschluss"
-msgid_plural "%s Abschlüsse"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/fachabschluss/abschluesse/index.php:36
-msgid "Abschluss löschen"
-msgstr "Delete degree"
-
-#: ../app/views/fachabschluss/abschluesse/index.php:40
-#, php-format
-msgid "Wollen Sie wirklich den Abschluss \"%s\" löschen?"
-msgstr "Confirm deletion of degree \"%s\"?"
-
-#: ../app/views/fachabschluss/abschluesse/index.php:46
-msgid "Abschluss kann nicht glöscht werden"
-msgstr "Degree cannot be deleted"
-
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:20
-msgid "Abschluss-Kategorie wählen"
-msgstr "Select degree category"
-
-#: ../app/views/fachabschluss/abschluesse/abschluss.php:38
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:96
-msgid "Abschluss anlegen"
-msgstr "Set up degree"
-
-#: ../app/views/web_migrate/history.php:8
-msgid ""
-"Die markierten Anpassungen werden beim Klick auf \"Starten\" zurückgesetzt:"
-msgstr ""
-
-#: ../app/views/web_migrate/history.php:10
-msgid "Diese Anpassungen wurden im System bereits ausgeführt."
-msgstr ""
-
-#: ../app/views/web_migrate/history.php:49
-#: ../app/views/web_migrate/index.php:58
-#: ../app/views/admin/plugin/manifest.php:22
-msgid "keine Beschreibung vorhanden"
-msgstr "no description available"
-
-#: ../app/views/web_migrate/history.php:61
-#: ../app/views/web_migrate/index.php:71
-#, php-format
-msgid "Die Migration wurde %s von %s bereits angestossen und läuft noch."
-msgstr "Migration %s of %s has already been started and is still running."
-
-#: ../app/views/web_migrate/history.php:66
-#: ../app/views/web_migrate/index.php:76
-#, php-format
-msgid ""
-"Sollte während der Migration ein Fehler aufgetreten sein, so können Sie "
-"diese Sperre durch den unten stehenden Link oder das Löschen der Datei <em>"
-"%s</em> auflösen."
-msgstr ""
-"Any migration errors can be reset by clicking the link or deleting the file "
-"<em>%s</em>."
-
-#: ../app/views/web_migrate/history.php:72
-#: ../app/views/web_migrate/index.php:82
-msgid "Sperre aufheben"
-msgstr "Unlock"
-
-#: ../app/views/web_migrate/index.php:2
-msgid "Ihr System befindet sich auf dem aktuellen Stand."
-msgstr "Your system is up-to-date."
-
-#: ../app/views/web_migrate/index.php:17
-msgid ""
-"Die markierten Anpassungen werden beim Klick auf \"Starten\" ausgeführt:"
-msgstr ""
-
-#: ../app/views/web_migrate/index.php:19
-msgid ""
-"Die hier aufgeführten Anpassungen werden beim Klick auf \"Starten\" "
-"ausgeführt:"
-msgstr "The following modifications will be made after the click on \"start\":"
-
-#: ../app/views/studygroup/browse.php:6
-msgid "gegründet"
-msgstr "created"
-
-#: ../app/views/studygroup/browse.php:8
-msgid "GründerIn"
-msgstr "Founder"
-
-#: ../app/views/studygroup/browse.php:9 ../app/views/calendar/group/week.php:49
-#: ../app/views/calendar/group/day.php:45
-msgid "Mitglied"
-msgstr "Member"
-
-#: ../app/views/studygroup/browse.php:16
-#, php-format
-msgid "%u Studiengruppe"
-msgid_plural "%u Studiengruppen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/studygroup/browse.php:27
-msgid "Klicken, um die Sortierung zu ändern"
-msgstr "Click here to change ordering"
-
-#: ../app/views/studygroup/browse.php:54
-msgid "Mitgliedschaft muss beantragt werden"
-msgstr "You must apply for membership"
-
-#: ../app/views/studygroup/browse.php:77
-msgid "Sie sind Mitglied in dieser Gruppe"
-msgstr "You are a member of this group"
-
-#: ../app/views/tfa/setup.php:5
-msgid "Zwei-Faktor-Authentifizierung einrichten"
-msgstr "Setup two-factor authentication"
-
-#: ../app/views/tfa/setup.php:8
-msgid ""
-"Mittels Zwei-Faktor-Authentifizierung können Sie Ihr Konto schützen, indem "
-"bei jedem Login ein Token von Ihnen eingegeben werden muss."
-msgstr ""
-"Using two-factor authentication you can protect your account by entering a "
-"token on each login."
-
-#: ../app/views/tfa/setup.php:10
-msgid ""
-"Dieses Token erhalten Sie entweder per E-Mail oder können es über eine "
-"geeignete Authenticator-App erzeugen lassen."
-msgstr ""
-"You get that token either via E-Mail or by using an appropriate "
-"authenticator app."
-
-#: ../app/views/tfa/setup.php:21 ../app/views/tfa/index.php:3
-msgid "Authenticator-App"
-msgstr "Authenticator app"
-
-#: ../app/views/tfa/index.php:2
-msgid "Zwei-Faktor-Authentifizierung ist aktiviert"
-msgstr "Two-factor authentication is activated"
-
-#: ../app/views/tfa/index.php:6
-msgid "Aufheben"
-msgstr "Revoke"
-
-#: ../app/views/module/module/diff.php:61
-#: ../app/views/studiengaenge/versionen/diff.php:52
-#, php-format
-msgid "Vergleich von %s mit %s"
-msgstr "Compare %s with %s"
-
-#: ../app/views/module/module/modulteil.php:20
-msgid "Nummerierung und Bezeichnung"
-msgstr "Numbering and description"
-
-#: ../app/views/module/module/modulteil.php:60
-msgid "Lern-/Lehrform"
-msgstr "Form of learning/teaching"
-
-#: ../app/views/module/module/modulteil.php:89
-msgid "Zusätzliche Bezeichnung"
-msgstr "Additional description"
-
-#: ../app/views/module/module/modulteil.php:94
-msgid "Modulteil-ID aus Fremdsystem"
-msgstr "Module component ID from external system"
-
-#: ../app/views/module/module/modulteil.php:110
-msgid "Häufigkeit"
-msgstr "Frequency"
-
-#: ../app/views/module/module/modulteil.php:133
-#: ../app/views/module/module/modul.php:365
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:219
-msgid "Lehrsprachen"
-msgstr "Language of instruction"
-
-#: ../app/views/module/module/modulteil.php:138
-#: ../app/views/module/module/modul.php:370
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:224
-msgid "Geben Sie die Lehrsprachen an."
-msgstr "Please enter the language of instruction."
-
-#: ../app/views/module/module/modulteil.php:146
-#: ../app/views/module/module/modul.php:377
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:231
-msgid "Sprache entfernen"
-msgstr "Remove language"
-
-#: ../app/views/module/module/modulteil.php:153
-#: ../app/views/module/module/modul.php:383
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:237
-msgid ""
-"Die Reihenfolge der Sprachen kann durch Anklicken und Ziehen geändert werden."
-msgstr "The order of the languages can be changed by drag and drop."
-
-#: ../app/views/module/module/modulteil.php:165
-#: ../app/views/module/module/modul.php:395
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:249
-msgid "Es wurden noch keine Sprachen angegeben."
-msgstr "No languages have been specified."
-
-#: ../app/views/module/module/modulteil.php:173
-msgid "Kapazität/Teilnahmezahl Modulteil"
-msgstr "Module component's capacity/number of participants"
-
-#: ../app/views/module/module/modulteil.php:177
-#: ../app/views/module/module/modulteil.php:188
-#: ../app/views/module/module/modul.php:418
-#: ../app/views/module/module/modul.php:426
-msgid "Teilnahmezahl"
-msgstr "Amount of participants"
-
-#: ../app/views/module/module/modulteil.php:208
-#: ../app/views/module/module/modulteil.php:219
-#: ../app/views/module/module/modulteil.php:268
-#: ../app/views/module/module/modulteil.php:288
-#: ../app/views/module/module/modulteil.php:308
-#: ../app/views/module/module/modulteil.php:326
-#: ../app/views/module/module/modul.php:32
-#: ../app/views/module/module/modul.php:406
-#: ../app/views/module/module/modul.php:443
-#: ../app/views/module/module/modul.php:541
-#: ../app/views/module/module/modul.php:559
-#: ../app/views/module/module/modul.php:640
-#: ../app/views/admin/user/edit_institute.php:54
-#: ../app/views/admin/user/edit.php:593
-msgid "keine Angabe"
-msgstr "no entry"
-
-#: ../app/views/module/module/modulteil.php:213
-#: ../app/views/module/module/modul.php:439
-#: ../app/views/studiengaenge/versionen/abschnitt.php:14
-msgid "Kreditpunkte"
-msgstr "Credit points"
-
-#: ../app/views/module/module/modulteil.php:230
-msgid "Teilnahmevoraussetzung Modulteil"
-msgstr "Module component requirements"
-
-#: ../app/views/module/module/modulteil.php:232
-#: ../app/views/module/module/modul.php:475
-msgid "Teilnahmevoraussetzung"
-msgstr "Prerequesite"
-
-#: ../app/views/module/module/modulteil.php:243
-msgid "Kommentar Modulteil"
-msgstr "Module component comment"
-
-#: ../app/views/module/module/modulteil.php:259
-#: ../app/views/module/module/modul.php:534
-msgid "Workload"
-msgstr "Workload"
-
-#: ../app/views/module/module/modulteil.php:261
-msgid "Workload (Präsenzzeit)"
-msgstr "Workload (compulsory attendance)"
-
-#: ../app/views/module/module/modulteil.php:281
-msgid "Workload ( Vor-/Nachbereitung)"
-msgstr "Workload (preparation / homework etc.)"
-
-#: ../app/views/module/module/modulteil.php:301
-msgid "Workload (Modulteil selbstgestaltete Arbeitszeit)"
-msgstr ""
-
-#: ../app/views/module/module/modulteil.php:321
-msgid "Workload (Modulteil Prüfung)"
-msgstr "Work load (exam component)"
-
-#: ../app/views/module/module/modulteil.php:342
-msgid "Prüfung/Note"
-msgstr "Exam/grade"
-
-#: ../app/views/module/module/modulteil.php:353
-msgid "Prüfungsleistung Modulteil"
-msgstr "Examination of module component"
-
-#: ../app/views/module/module/modulteil.php:362
-msgid "Anteil an Modulnote"
-msgstr "Module grade share"
-
-#: ../app/views/module/module/modulteil.php:370
-msgid "Ausgleichbar bei Minderleistung"
-msgstr "Compensable at underperformance"
-
-#: ../app/views/module/module/modulteil.php:386
-msgid "Dieser Modulteil <strong>ist ausgleichbar</strong> bei Minderleistung."
-msgstr ""
-"This module component is <strong>compensable</strong> at underperformance."
-
-#: ../app/views/module/module/modulteil.php:388
-msgid ""
-"Dieser Modulteil ist <strong>nicht ausgleichbar</strong> bei Minderleistung."
-msgstr ""
-"This module component is <strong>not compensable</strong> at "
-"underperformance."
-
-#: ../app/views/module/module/modulteil.php:413
-msgid "Es besteht <strong>Anwesenheitspflicht</strong>."
-msgstr "<strong>Compulsory attendance</strong>."
-
-#: ../app/views/module/module/modulteil.php:415
-msgid "Es besteht <strong>keine Anwesenheitspflicht</strong>."
-msgstr "<strong>No compulsory attendance</strong>."
-
-#: ../app/views/module/module/modulteil.php:463
-#: ../app/views/module/module/module.php:82
-#: ../app/views/module/module/module.php:83
-msgid "Modulteil anlegen"
-msgstr "Add module component"
-
-#: ../app/views/module/module/modulteil.php:470
-#: ../app/views/module/module/modul.php:688
-msgid "Deskriptor löschen"
-msgstr "Delete descriptor"
-
-#: ../app/views/module/module/modulteil.php:470
-#: ../app/views/module/module/modul.php:688
-#, php-format
-msgid "Soll der Deskriptor in der Ausgabesprache %s gelöscht werden?"
-msgstr ""
-"Do you really want to delete the descriptor in the original language %s?"
-
-#: ../app/views/module/module/modulteil.php:481
-#: ../app/views/module/module/modul.php:697
-msgid "Originalfassung anzeigen"
-msgstr "Original version"
-
-#: ../app/views/module/module/copy_form.php:6
-msgid ""
-"Das Modul kann nicht kopiert werden, da die aktuellste Version unbegrenzt "
-"gültig ist. Setzen Sie erst ein Endsemester für die aktuellste Version."
-msgstr ""
-"The module cannot be copied since the most current version is valid "
-"unlimitedly. Set an end semester first for the current version."
-
-#: ../app/views/module/module/copy_form.php:12
-#: ../app/views/module/module/module.php:89
-#: ../app/views/module/module/module.php:90
-msgid "Modul bearbeiten"
-msgstr "Edit module"
-
-#: ../app/views/module/module/copy_form.php:13
-msgid "Aktuellste Version bearbeiten"
-msgstr "Edit most current version"
-
-#: ../app/views/module/module/copy_form.php:26
-#, php-format
-msgid ""
-"Wollen Sie wirklich das Modul \"%s\" und alle zugehörigen Modulteile "
-"kopieren?"
-msgstr "Really copy module \"%s\" and all attached module parts?"
-
-#: ../app/views/module/module/copy_form.php:35
-msgid "Das Modul ist in seiner aktuellsten Version gültig von:"
-msgstr "In its most current version the module is valid from:"
-
-#: ../app/views/module/module/copy_form.php:41
-msgid "Bis:"
-msgstr "Until:"
-
-#: ../app/views/module/module/copy_form.php:52
-msgid "Neues Startsemester:"
-msgstr "New start semester:"
-
-#: ../app/views/module/module/copy_form.php:58
-msgid "Gültig bis:"
-msgstr "Valid until:"
-
-#: ../app/views/module/module/copy_form.php:78
-msgid "Zuordnungen zu Studiengängen mit übernehmen"
-msgstr "Copy assignments to courses of study"
-
-#: ../app/views/module/module/copy_form.php:80
-#: ../app/views/module/module/assignments.php:2
-msgid "Verwendet in Studiengängen"
-msgstr "Used in course of study"
-
-#: ../app/views/module/module/copy_form.php:83
-msgid "Zuordnungen anzeigen"
-msgstr "Show assignments"
-
-#: ../app/views/module/module/approve.php:9
-#: ../app/views/studiengaenge/versionen/approve.php:7
-#: ../app/views/studiengaenge/studiengangteile/approve.php:7
-#: ../app/views/studiengaenge/studiengaenge/approve.php:32
-msgid "Genehmigen"
-msgstr "Approve"
-
-#: ../app/views/module/module/diff_select.php:3
-msgid "Vergleich mit folgendem Modul:"
-msgstr "Compare with the following module:"
-
-#: ../app/views/module/module/diff_select.php:20
-msgid "Dieses Modul ist eine Novellierung des Moduls:"
-msgstr "This module is a revision of module:"
-
-#: ../app/views/module/module/diff_select.php:26
-msgid "Dieses Modul ist eine Variante von:"
-msgstr "This module is a variant of:"
-
-#: ../app/views/module/module/diff_select.php:33
-msgid "Folgende Module sind Varianten dieses Moduls:"
-msgstr "The following modules are variations of this module:"
-
-#: ../app/views/module/module/modul.php:35
-#: ../app/views/admin/api/permissions.php:9
-msgid "Quelle"
-msgstr "Resource"
-
-#: ../app/views/module/module/modul.php:37
-msgid "Dieses Modul hat keine Vorlage."
-msgstr "This module has no template."
-
-#: ../app/views/module/module/modul.php:39
-#, php-format
-msgid ""
-"Dieses Modul ist eine Novellierung des Moduls <strong><em>%s</em></strong>."
-msgstr "This module is a revision of module <strong><em>%s</em></strong>."
-
-#: ../app/views/module/module/modul.php:43
-msgid "Modul-ID Fremdsystem"
-msgstr "Module ID in the external system"
-
-#: ../app/views/module/module/modul.php:54
-msgid "Ist Variante von"
-msgstr "Is a variant of"
-
-#: ../app/views/module/module/modul.php:67
-#: ../app/views/module/module/modul.php:92
-msgid "Dieses Modul ist nicht die Variante eines anderen Moduls."
-msgstr "This module is not a variant of another module."
-
-#: ../app/views/module/module/modul.php:76
-#: ../app/views/module/module/modul.php:281
-msgid " entfernen"
-msgstr " remove"
-
-#: ../app/views/module/module/modul.php:108
-#: ../app/views/studiengaenge/versionen/version.php:16
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:61
-msgid "-- Semester wählen --"
-msgstr "-- Select semester --"
-
-#: ../app/views/module/module/modul.php:142
-msgid "Das Endsemester wird nur angegeben, wenn das Modul abgeschlossen ist."
-msgstr "The end semester is only provided when the module is finished."
-
-#: ../app/views/module/module/modul.php:148
-#: ../app/views/studiengaenge/versionen/version.php:54
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:101
-msgid "TT.MM.JJJJ"
-msgstr "dd.mm.yyyy"
-
-#: ../app/views/module/module/modul.php:182
-msgid "Version:"
-msgstr "Version:"
-
-#: ../app/views/module/module/modul.php:192
-#, php-format
-msgid "von Semester: %s bis Semester: %s"
-msgstr "from semester: %s until semester: %s"
-
-#: ../app/views/module/module/modul.php:193
-msgid "unbekanntes Semester"
-msgstr "unknown semester"
-
-#: ../app/views/module/module/modul.php:198
-#, php-format
-msgid "Beschlussdatum: %s"
-msgstr "Decision date: %s"
-
-#: ../app/views/module/module/modul.php:205
-#, php-format
-msgid "Fassung: %s. %s"
-msgstr "Version: %s. %s"
-
-#: ../app/views/module/module/modul.php:269
-msgid "Bitte geben Sie eine verantwortliche Einrichtung an."
-msgstr "Please specify a responsible institute."
-
-#: ../app/views/module/module/modul.php:320
-msgid "Geben Sie gegebenenfalls beteiligte Einrichtungen an."
-msgstr "Please specify participating institutes, if any."
-
-#: ../app/views/module/module/modul.php:340
-msgid ""
-"Die Reihenfolge der beteiligten Einrichtungen kann durch Anklicken und "
-"Ziehen geändert werden."
-msgstr ""
-"The order of participating institutes can be modified by drag and drop."
-
-#: ../app/views/module/module/modul.php:359
-msgid "Es wurden noch keine weiteren beteiligten Einrichtungen angegeben."
-msgstr "No further participating institutes were specified."
-
-#: ../app/views/module/module/modul.php:402
-msgid "Dauer (Semester)"
-msgstr "Duration (in semesters)"
-
-#: ../app/views/module/module/modul.php:409
-msgid "Turnus/Angebotsrhythmus"
-msgstr "Frequency"
-
-#: ../app/views/module/module/modul.php:414
-msgid "Kapazität/Teilnahmezahl"
-msgstr "Capacity / amount of participants"
-
-#: ../app/views/module/module/modul.php:467
-msgid ""
-"Gegebenenfalls weitere Namen von verantwortlichen Personen, die keinen "
-"Account in Stud.IP haben. Oder allgemeine Angaben zur Verantwortlichkeit."
-msgstr ""
-"Further names of responsible persons (if any) which don't have an account in "
-"Stud.IP. Alternatively you can provide general information regarding "
-"responsibility."
-
-#: ../app/views/module/module/modul.php:473
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:296
-msgid "Inhalte und Informationen"
-msgstr "Content and information"
-
-#: ../app/views/module/module/modul.php:536
-msgid "Stunden (selbstgestaltete Arbeitszeit)"
-msgstr ""
-
-#: ../app/views/module/module/modul.php:554
-msgid "Stunden (Prüfung)"
-msgstr "Hours (exam)"
-
-#: ../app/views/module/module/modul.php:603
-msgid "Leistung/Prüfungsform"
-msgstr "Type of examination"
-
-#: ../app/views/module/module/modul.php:622
-msgid "Kommentar Note"
-msgstr "Grade comment"
-
-#: ../app/views/module/module/modul.php:643
-msgid "Ersatztext"
-msgstr "Replacement text"
-
-#: ../app/views/module/module/modul.php:681
-msgid "Modul anlegen"
-msgstr "Create new module"
-
-#: ../app/views/module/module/index.php:11
-#: ../app/views/module/institute/details.php:7
-msgid "Fassung"
-msgstr "Version"
-
-#: ../app/views/module/module/index.php:14
-#: ../app/views/module/institute/details.php:10
-msgid "Ausgabesprachen"
-msgstr "Output languages"
-
-#: ../app/views/module/module/modulteil_lvg.php:19
-#: ../app/views/module/module/modulteil_lvg.php:20
-#: ../app/views/module/module/modulteil_lvg.php:23
-msgid "LV-Gruppe bearbeiten"
-msgstr "Edit course group"
-
-#: ../app/views/module/module/modulteil_lvg.php:30
-#: ../app/views/module/module/modulteil_lvg.php:31
-msgid "Zuordnung der LV-Gruppe löschen"
-msgstr "Delete assignment of course group"
-
-#: ../app/views/module/module/modulteil_lvg.php:35
-#, php-format
-msgid ""
-"Wollen Sie wirklich die Lehrveranstaltungsgruppe \"%s\" vom Modulteil \"%s\" "
-"entfernen?"
-msgstr "Really delete \"%s\" from \"%s\"?"
-
-#: ../app/views/module/module/modulteil_lvg.php:55
-msgid "LV-Gruppe hinzufügen:"
-msgstr "Add course group:"
-
-#: ../app/views/module/module/modulteil_lvg.php:58
-msgid "LV-Gruppe zuordnen"
-msgstr "Assign course group"
-
-#: ../app/views/module/module/lvgruppe.php:15
-#: ../app/views/admin/banner/new.php:21
-#: ../app/views/lvgruppen/lvgruppen/lvgruppe.php:13
-msgid "Alternativtext"
-msgstr "Alternative text"
-
-#: ../app/views/module/module/lvgruppe.php:21
-#: ../app/views/lvgruppen/lvgruppen/lvgruppe.php:20
-msgid "Lehrveranstaltungsgruppe anlegen"
-msgstr "Create course group"
-
-#: ../app/views/module/module/details.php:50
-#: ../app/views/module/module/details.php:51
-msgid "Modulteil bearbeiten"
-msgstr "Edit component"
-
-#: ../app/views/module/module/details.php:57
-#: ../app/views/module/module/details.php:58
-msgid "Modulteil kopieren"
-msgstr "Copy component"
-
-#: ../app/views/module/module/details.php:64
-#: ../app/views/module/module/details.php:65
-#: ../app/views/lvgruppen/lvgruppen/index.php:51
-msgid "Modulteil löschen"
-msgstr "Delete component"
-
-#: ../app/views/module/module/details.php:69
-#, php-format
-msgid "Wollen Sie wirklich den Modulteil \"%s\" löschen?"
-msgstr "Really delete module component \"%s\"?"
-
-#: ../app/views/module/module/module.php:71
-#: ../app/views/module/module/module.php:72
-msgid "Modulbeschreibung ansehen"
-msgstr "Show module description"
-
-#: ../app/views/module/module/module.php:104
-#: ../app/views/module/module/module.php:105
-msgid "Modul löschen"
-msgstr "Delete module"
-
-#: ../app/views/module/module/module.php:109
-#, php-format
-msgid "Wollen Sie wirklich das Modul \"%s\" löschen?"
-msgstr "Really delete module \"%s\"?"
-
-#: ../app/views/module/module/assignments.php:11
-msgid "Keine Zuordnungen vorhanden"
-msgstr "No assignment available"
-
-#: ../app/views/terms/index.php:6
-msgid "Was können Sie tun?"
-msgstr "What can you do?"
-
-#: ../app/views/terms/index.php:18
-msgid "Verstanden"
-msgstr "I understand"
-
-#: ../app/views/terms/index.php:26
-msgid "Ich stimme den Nutzungsbedingungen nicht zu"
-msgstr "I do not agree to the terms of use"
-
-#: ../app/views/files/upload-drag-and-drop.php:2
-msgid "Neue Dateien zum Hinzufügen per Drag & Drop in diesen Bereich ziehen."
-msgstr "Add files via drag and drop to this area."
-
-#: ../app/views/files/all_files.php:15
-#, php-format
-msgid "Alle Dateien, Seite %d"
-msgstr "All files, page %d"
-
-#: ../app/views/files/flat.php:68
-msgid "Name oder Autor/-in"
-msgstr "Name or author"
-
-#: ../app/views/files/_overview.php:9 ../app/views/files/_overview.php:34
-#: ../app/views/files/_overview.php:59 ../app/views/files/_overview.php:84
-#, php-format
-msgid "Insgesamt %d Datei"
-msgid_plural "Insgesamt %d Dateien"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/files/_overview.php:48
-msgid "Persönlichr Dateibereich"
-msgstr ""
-
-#: ../app/views/files/_overview.php:106
-msgid "Es sind keine Dateien vorhanden, die für Sie zugänglich sind!"
-msgstr "No files that are accessible to you are available!"
-
-#: ../app/views/files/_fileref_tr.php:47
-#: ../app/views/files_dashboard/_search_tr.php:26
-#: ../app/views/files_dashboard/_search_tr.php:40
-msgid "Das Herunterladen dieser Datei ist nur eingeschränkt möglich."
-msgstr "The download of this file is restricted."
-
-#: ../app/views/files/my_uploaded_files.php:3
-msgid "Meine hochgeladenen Dateien mit ungeklärter Lizenz"
-msgstr "My uploaded files with an unknown license"
-
-#: ../app/views/files/my_uploaded_files.php:5
-msgid "Meine hochgeladenen Dateien"
-msgstr "My uploaded files"
-
-#: ../app/views/files/_flat_tfoot.php:20
-msgid "Lizenz ändern"
-msgstr "Change license"
-
-#: ../app/views/materialien/files/range.php:12
-msgid "neues Dokument hinzufügen"
-msgstr "add new document"
-
-#: ../app/views/materialien/files/range.php:15
-msgid "vorhandenes Dokument hinzufügen"
-msgstr "add existing document"
-
-#: ../app/views/materialien/files/range.php:18
-msgid "Reihenfolge der Dokumente ändern"
-msgstr "Change order of documents"
-
-#: ../app/views/materialien/files/range.php:29
-#: ../app/views/materialien/files/index.php:12
-#: ../app/views/materialien/files/add_dokument.php:15
-msgid "Art der Datei"
-msgstr "File type"
-
-#: ../app/views/materialien/files/range.php:31
-#: ../app/views/materialien/files/index.php:14
-msgid "Dateityp"
-msgstr "File type"
-
-#: ../app/views/materialien/files/range.php:85
-#: ../app/views/materialien/files/index.php:63
-msgid "Dokument bearbeiten"
-msgstr "Edit document"
-
-#: ../app/views/materialien/files/range.php:92
-#: ../app/views/materialien/files/index.php:76
-#: ../app/views/admin/user/list_files.php:18
-msgid "Datei herunterladen"
-msgstr "Download file"
-
-#: ../app/views/materialien/files/range.php:99
-msgid "Dokument-Zuordnung löschen"
-msgstr "Delete document assignment"
-
-#: ../app/views/materialien/files/range.php:102
-msgid "Wollen Sie die Zuordnung des Dokuments wirklich entfernen?"
-msgstr "Do you really want to remove the assignment of the document?"
-
-#: ../app/views/materialien/files/index.php:3
-msgid "Verlinkte Dokumente"
-msgstr "Linked documents"
-
-#: ../app/views/materialien/files/index.php:4
-#, php-format
-msgid "%s Dokument"
-msgid_plural "%s Dokumente"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/materialien/files/index.php:69
-msgid "Dokument zuordnen"
-msgstr "Assign document"
-
-#: ../app/views/materialien/files/index.php:83
-msgid "Dokument löschen"
-msgstr "Delete document"
-
-#: ../app/views/materialien/files/index.php:86
-msgid "Wollen Sie das Dokument wirklich entfernen?"
-msgstr "Do you really want to remove the document?"
-
-#: ../app/views/materialien/files/add_dokument.php:31
-msgid "Angezeigter Name des Dokuments"
-msgstr "Displayed name of the document"
-
-#: ../app/views/materialien/files/add_dokument.php:61
-#: ../app/views/materialien/files/add_dokument.php:62
-#: ../app/views/messages/write.php:132 ../app/views/messages/write.php:133
-msgid "Datei hochladen"
-msgstr "Upload file"
-
-#: ../app/views/materialien/files/add_dokument.php:67
-msgid "Link hinzufügen"
-msgstr "Add link"
-
-#: ../app/views/materialien/files/add_dokument.php:70
-#: ../app/views/messages/write.php:136
-msgid "wird verarbeitet"
-msgstr "processing"
-
-#: ../app/views/materialien/files/add_dokument.php:71
-#: ../app/views/messages/write.php:137
-msgid "gespeichert"
-msgstr "saved"
-
-#: ../app/views/materialien/files/add_dokument.php:93
-#: ../app/views/materialien/files/details.php:33
-msgid "Kategoriezuordnung"
-msgstr "Assign category"
-
-#: ../app/views/materialien/files/add_dokument.php:102
-#: ../app/views/materialien/files/details.php:38
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:312
-msgid "Schlagwörter"
-msgstr "Keywords"
-
-#: ../app/views/materialien/files/add_dokument.php:113
-#: ../app/views/materialien/files/details.php:51
-msgid "Sichtbarkeit nach außen"
-msgstr "Visibility from the outside"
-
-#: ../app/views/materialien/files/add_dokument.php:127
-msgid "Schlagwörter wählen"
-msgstr "Select keywords"
-
-#: ../app/views/materialien/files/details.php:9
-msgid "Art der Datei "
-msgstr "File type "
-
-#: ../app/views/materialien/files/details.php:61
-msgid "Das Dokument wurde noch nicht referenziert."
-msgstr "The document has not been referenced yet."
-
-#: ../app/views/siteinfo/new.php:23 ../app/views/siteinfo/edit.php:20
-msgid "Titel der Rubrik"
-msgstr "Category title"
-
-#: ../app/views/siteinfo/new.php:28 ../app/views/siteinfo/edit.php:25
-msgid "Rubrik-Zuordnung"
-msgstr "Category allocation"
-
-#: ../app/views/siteinfo/new.php:42 ../app/views/siteinfo/edit.php:42
-msgid "Seiteninhalt"
-msgstr "Page content"
-
-#: ../app/views/siteinfo/help.php:5
-msgid "Verfügbares Markup"
-msgstr "Available markup"
-
-#: ../app/views/siteinfo/help.php:6
-#, php-format
-msgid ""
-"Zusätzlich zu den üblichen %sSchnellformatierungen%s und dem Wiki-Markup ist "
-"folgendes Markup verfügbar:"
-msgstr ""
-"In addition to usual %squick formatting%s and the Wiki markup, the following "
-"markup is available:"
-
-#: ../app/views/siteinfo/help.php:9
-#, php-format
-msgid ""
-"Nur wenn %s der Nutzersprache entspricht, wird der Text (%s) zwischen den "
-"Tags angezeigt"
-msgstr ""
-"Only if %s is the user's language the text (%s) between the tags will be "
-"displayed"
-
-#: ../app/views/siteinfo/help.php:12
-#, php-format
-msgid ""
-"Die durch %s angegebenen CSS-Gestaltungsangaben werden dem umschlossenen "
-"Bereich (%s) zugewiesen."
-msgstr ""
-"The CSS format instructions given by %s will be allocated to the area (%s) "
-"enclosed."
-
-#: ../app/views/siteinfo/help.php:15
-msgid "Die Angabe der verwendeten Stud.IP-Version."
-msgstr "Information about the Stud.IP version in use."
-
-#: ../app/views/siteinfo/help.php:17
-msgid "Der Name des Standortes gemäß der Konfiguration."
-msgstr "Name of location as provided in the configuration."
-
-#: ../app/views/siteinfo/help.php:19
-msgid "Der administrative Kontakt gemäß der Konfiguration."
-msgstr "Administrative contact as provided in the configuration."
-
-#: ../app/views/siteinfo/help.php:21
-#, php-format
-msgid ""
-"Ausgabe von Vor- und Nachnamen verlinkt mit dem Profil und der E-Mail-"
-"Adresse des mit %s angegebenen Nutzers."
-msgstr ""
-"Display first name and last name of the user specified through %s, including "
-"link to this user's personal profile and e-mail address."
-
-#: ../app/views/siteinfo/help.php:23
-#, php-format
-msgid ""
-"Ausgabe von Vor- und Nachnamen verlinkt mit dem Profil des mit %s "
-"angegebenen Nutzers."
-msgstr ""
-"Display first name and last name of the user specified through %s, including "
-"link to this user's profile."
-
-#: ../app/views/siteinfo/help.php:25
-msgid ""
-"Ausgabe von Vor- und Nachnamen verlinkt mit dem Profil und der E-Mail-"
-"Adresse aller Nutzer mit Root-Status."
-msgstr ""
-"Display first names and last names of the all the users having status of a "
-"root, including links to their personal profiles and e-mail addresses."
-
-#: ../app/views/siteinfo/help.php:27
-msgid ""
-"Ausgabe von Vor- und Nachnamen verlinkt mit dem Profil und der E-Mail-"
-"Adresse aller Nutzer mit Admin-Status."
-msgstr ""
-"Display first name and last name of the all the users having status of an "
-"administrator, including links to their personal profiles and e-mail "
-"addresses."
-
-#: ../app/views/siteinfo/help.php:29
-msgid "Ausgabe des Inhaltes von http://www.studip.de/crew.php."
-msgstr "Display the content of http://www.studip.de/crew.php."
-
-#: ../app/views/siteinfo/help.php:31
-#, php-format
-msgid ""
-"Ausgabe von Ranglisten für die mit %s angegebenen Kriterien, die die "
-"Ausprägungen:"
-msgstr "Display high score lists with respect to the given %s criteria:"
-
-#: ../app/views/siteinfo/help.php:43
-#, php-format
-msgid ""
-"Ausgabe von mit %s spezifizierten Kennzahlen aus den folgenden Möglichkeiten:"
-msgstr ""
-"Display key data specified through %s to be selected out of the following "
-"options:"
-
-#: ../app/views/siteinfo/help.php:69
-msgid "Ausgabe der history.txt"
-msgstr "Display history.txt"
-
-#: ../app/views/siteinfo/help.php:71
-msgid "Ausgabe der Nutzungsbedingungen"
-msgstr "Show terms of use"
-
-#: ../app/views/siteinfo/delete.php:10
-msgid "Wollen Sie die Seite wirklich löschen?"
-msgstr "Are you sure to delete this page?"
-
-#: ../app/views/siteinfo/delete.php:12
-msgid "Wollen Sie die Rubrik mit allen Seiten wirklich löschen?"
-msgstr "Are you sure to delete this category including all pages?"
-
-#: ../app/views/siteinfo/markup/rootlist.php:5
-#: ../app/views/siteinfo/markup/adminList.php:5
-msgid "keine. Na sowas. Das kann ja eigentlich gar nicht sein..."
-msgstr "none. Oops. This is supposed not to happen..."
-
-#: ../app/views/siteinfo/markup/userinfo.php:5
-#: ../app/views/siteinfo/markup/userlink.php:5
-msgid "Nutzer nicht gefunden."
-msgstr "User not found."
-
-#: ../app/views/course/admission/index.php:6
-msgid "Bitte geben Sie hier an, welche speziellen Anmelderegeln gelten sollen."
-msgstr "Please specify here which special admission rule shall be used."
-
-#: ../app/views/course/admission/index.php:10
-#: ../app/views/course/details/index.php:440
-#, php-format
-msgid "Diese Veranstaltung gehört zum Anmeldeset \"%s\"."
-msgstr "The course is part of admission \"%s\"."
-
-#: ../app/views/course/admission/index.php:17
-#: ../app/views/course/grouping/parent.php:22
-msgid "Zuordnung aufheben"
-msgstr "Delete assignment"
-
-#: ../app/views/course/admission/index.php:39
-msgid "Teilnahmebeschränkte Anmeldung"
-msgstr "Restricted course"
-
-#: ../app/views/course/admission/index.php:41
-msgid "Zeitgesteuerte und Teilnahmebeschränkte Anmeldung"
-msgstr "Restricted course with time control"
-
-#: ../app/views/course/admission/index.php:48
-msgid "Klicken um Zuordnungsmöglichkeiten zu öffnen"
-msgstr "Click here to show assignment options"
-
-#: ../app/views/course/admission/index.php:49
-msgid "Zuordnung zu einem bestehenden Anmeldeset"
-msgstr "Assignment to admission"
-
-#: ../app/views/course/admission/index.php:50
-msgid ""
-"Wenn die Veranstaltung die Anmelderegeln eines Anmeldesets übernehmen soll, "
-"klicken Sie hier und wählen das entsprechende Anmeldeset aus."
-msgstr ""
-"If the course shall adopt the admission rules of an admission set please "
-"click here and select the appropriate admission set."
-
-#: ../app/views/course/admission/index.php:59
-msgid "Meine Anmeldesets"
-msgstr "My admission sets"
-
-#: ../app/views/course/admission/index.php:67
-msgid "Verfügbare Anmeldesets meiner Einrichtungen"
-msgstr "Available admissions at my institutes"
-
-#: ../app/views/course/admission/index.php:93
-msgid ""
-"Bitte geben Sie hier an, wieviele Personen maximal für die Veranstaltung "
-"vorgesehen sind,\n"
-"                und ob eine Warteliste erstellt werden soll, falls die Zahl "
-"der Anmeldungen die maximale Personenzahl überschreitet."
-msgstr ""
-"Please specify here how many persons are allowed for the course at maximum\n"
-"                and if a wait list shall be created if the amount of "
-"enrolments exceeds the maximum amount of persons."
-
-#: ../app/views/course/admission/index.php:98
-msgid "max. Anzahl:"
-msgstr "max. amount:"
-
-#: ../app/views/course/admission/index.php:101
-#, php-format
-msgid "(%s freie Plätze)"
-msgstr "(%s available seats)"
-
-#: ../app/views/course/admission/index.php:104
-msgid "Einstellungen für die Warteliste:"
-msgstr "Settings for the waiting list:"
-
-#: ../app/views/course/admission/index.php:110
-msgid "Warteliste aktivieren"
-msgstr "Activate waiting list"
-
-#: ../app/views/course/admission/index.php:112
-#, php-format
-msgid "(%s Wartende)"
-msgstr "(%s on the wait list)"
-
-#: ../app/views/course/admission/index.php:121
-msgid "automatisches Nachrücken aus der Warteliste aktivieren"
-msgstr "activate move up from wait list"
-
-#: ../app/views/course/admission/index.php:123
-msgid "max. Anzahl an Wartenden (optional)"
-msgstr "max. number of persons on wait list (optional)"
-
-#: ../app/views/course/admission/index.php:132
-msgid "Teilnehmendenanzahl und Warteliste ändern"
-msgstr "Change number of participants and waiting list"
-
-#: ../app/views/course/admission/index.php:141
-#: ../app/views/course/details/index.php:452
-#: ../app/views/admin/sem_classes/details.php:111
-msgid "Anmeldemodus"
-msgstr "Registration mode"
-
-#: ../app/views/course/admission/index.php:143
-msgid "Bitte wählen Sie hier einen Anmeldemodus aus:"
-msgstr "Please select a registration mode:"
-
-#: ../app/views/course/admission/index.php:150
-msgid "Direkter Eintrag"
-msgstr "Instant entry"
-
-#: ../app/views/course/admission/index.php:156
-msgid "Vorläufiger Eintrag"
-msgstr "Preliminary enrolment"
-
-#: ../app/views/course/admission/index.php:158
-msgid "Hinweistext bei vorläufigen Eintragungen:"
-msgstr "Hint shown in case of preliminary enrolment:"
-
-#: ../app/views/course/admission/index.php:168
-msgid ""
-"Anmeldung ist <u>verbindlich</u>. (Teilnehmenden können sich nicht selbst "
-"wieder abmelden.)"
-msgstr ""
-"The enrolment is <u>binding</u>. (participants cannot unsubscribe from the "
-"course.)"
-
-#: ../app/views/course/admission/index.php:181
-msgid "Zugriff für externe Nutzer"
-msgstr "Access for external users"
-
-#: ../app/views/course/admission/index.php:183
-msgid ""
-"Über diese Einstellung können Sie externen Nutzern, die keinen Zugang zum "
-"Stud.IP haben, Zugriff auf die Veranstaltung gewähren. Bitte beachten Sie, "
-"dass von Kursteilnehmern z.B. im Forum, Dateibereich oder Wiki erstellte "
-"Inhalte damit weltweit ohne Anmeldung einsehbar sind. Die Teilnehmerliste "
-"ist für externe Nutzer nicht sichtbar."
-msgstr ""
-"With this settings you can allow access to courses for external users who "
-"don't have a Stud.IP account. Please note that content created by course "
-"participants will thereby be available worldwide without registration. The "
-"participant list is not visible for external users."
-
-#: ../app/views/course/admission/index.php:191
-msgid "Lesezugriff für nicht in Stud.IP angemeldete Personen erlauben"
-msgstr "Allow read access for persons not logged into Stud.IP"
-
-#: ../app/views/course/admission/index.php:200
-msgid "Schreibzugriff für nicht in Stud.IP angemeldete Personen erlauben"
-msgstr "Allow write access for persons not logged into Stud.IP"
-
-#: ../app/views/course/admission/index.php:205
-msgid "Zugriffseinstellung ändern"
-msgstr "Change access option"
-
-#: ../app/views/course/admission/index.php:215
-msgid "Zugelassenene Nutzerdomänen"
-msgstr "Allowed user domains"
-
-#: ../app/views/course/admission/index.php:217
-msgid "Bitte geben Sie hier an, welche Nutzerdomänen zugelassen sind."
-msgstr "Please specify which user domains are allowed."
-
-#: ../app/views/course/admission/index.php:230
-msgid "Nutzerdomänen ändern"
-msgstr "Change user domains"
-
-#: ../app/views/course/admission/instant_course_set.php:10
-msgid "Neue Anmelderegel erstellen"
-msgstr "Create new admission rule"
-
-#: ../app/views/course/admission/instant_course_set.php:13
-msgid "Name für diese Anmelderegel"
-msgstr "Name of admission setting"
-
-#: ../app/views/course/cancel_dates/index.php:5
-msgid "Folgende Veranstaltungstermine ausfallen lassen"
-msgstr "Cancel the following course dates"
-
-#: ../app/views/course/cancel_dates/index.php:15
-#: ../app/views/course/timesrooms/_cancel_form.php:9
-msgid ""
-"Wenn Sie die nicht stattfindenden Termine mit einem Kommentar versehen, "
-"werden die Ausfalltermine im Ablaufplan weiterhin dargestellt und auch im "
-"Terminkalender eingeblendet."
-msgstr ""
-"If you add a comment to the cancelled dates they will still be displayed in "
-"the schedule as well as in the calendar."
-
-#: ../app/views/course/cancel_dates/index.php:20
-#: ../app/views/course/timesrooms/_cancel_form.php:18
-msgid ""
-"Benachrichtigung über ausfallende Termine an alle Teilnehmenden verschicken"
-msgstr "Notify all participants about cancelled dates"
-
-#: ../app/views/course/overview/index.php:14
-msgid "Zeit / Veranstaltungsort"
-msgstr "Time / Course location"
-
-#: ../app/views/course/overview/index.php:38
-#: ../app/views/course/studygroup/details.php:11
-msgid "Moderiert von"
-msgstr "Moderated by"
-
-#: ../app/views/course/ilias_interface/edit_object_assignment.php:11
-msgid ""
-"Fügt einen Link zu diesem Objekt im ILIAS-Kurs ein. Änderungen am "
-"ursprünglichen Lernobjekt wirken sich auf alle verlinkten Vorkommen des "
-"Objekts aus."
-msgstr ""
-"Adds a link to this object in the ILIAS course. Modifications on the "
-"original learning object will be applied to all references of the object."
-
-#: ../app/views/course/ilias_interface/edit_object_assignment.php:21
-msgid ""
-"Erstellt eine neue Instanz des Objekts. Das kopierte Objekt ist zunächst "
-"offline, Sie müssen das Objekt daher in ILIAS erst auf \"online\" stellen, "
-"damit es für Teilnehmende der Veranstaltung sichtbar wird. Diese Option ist "
-"z.B. für Tests geeignet, weil sich eine Test-Instanz nicht mehr ändern "
-"lässt, sobald Lernende daran teilgenommen haben."
-msgstr ""
-"Creates a new instance of the object. The copied object is offline at first. "
-"You therefore must set the object \"online\" in ILIAS so that it becomes "
-"visible for participants of the course. This option is suitable for tests e."
-"g. because a test instance cannot be modified after lecturers participated "
-"in it."
-
-#: ../app/views/course/ilias_interface/add_object.php:5
-#: ../app/views/course/ilias_interface/add_groups.php:5
-msgid "ILIAS-Installation auswählen"
-msgstr "Select ILIAS installation"
-
-#: ../app/views/course/ilias_interface/add_object.php:17
-msgid "Suche nach Lernobjekten"
-msgstr "Search for learning objects"
-
-#: ../app/views/course/ilias_interface/add_object.php:24
-#, php-format
-msgid "Sie können nun einen leeren Kurs in der %s-Installation anlegen."
-msgstr "You can now create an empty course in the %s installation."
-
-#: ../app/views/course/ilias_interface/add_object.php:30
-msgid "Veranstaltung wählen"
-msgstr "Select course"
-
-#: ../app/views/course/ilias_interface/add_object.php:46
-msgid "ILIAS-Kurs wählen"
-msgstr "Select ILIAS course"
-
-#: ../app/views/course/ilias_interface/add_object.php:58
-#, php-format
-msgid ""
-"Es wurden keine Kurse in der %s-Installation gefunden, in denen Sie als "
-"Kursadministrator/-in eingetragen sind."
-msgstr ""
-"No courses in the %s installation could be found where you are entered as "
-"course administrator."
-
-#: ../app/views/course/ilias_interface/add_object.php:67
-msgid "Gefundene Lernobjekte"
-msgstr "Found learning objects"
-
-#: ../app/views/course/ilias_interface/index.php:9
-#, php-format
-msgid "Lernobjekte in %s"
-msgstr "Learning object in %s"
-
-#: ../app/views/course/ilias_interface/index.php:50
-#: ../app/views/course/ilias_interface/index.php:52
-#: ../app/views/course/ilias_interface/index.php:103
-#: ../app/views/course/ilias_interface/index.php:105
-#: ../app/views/my_ilias_accounts/index.php:47
-#: ../app/views/my_ilias_accounts/index.php:49
-msgid "In ILIAS anzeigen"
-msgstr "Show in ILIAS"
-
-#: ../app/views/course/ilias_interface/index.php:60
-#: ../app/views/course/ilias_interface/index.php:62
-#: ../app/views/my_ilias_accounts/index.php:57
-#: ../app/views/my_ilias_accounts/index.php:59
-msgid "In ILIAS bearbeiten"
-msgstr "Edit in ILIAS"
-
-#: ../app/views/course/ilias_interface/index.php:74
-#: ../app/views/course/ilias_interface/view_object.php:14
-#, php-format
-msgid ""
-"Dies ist die einzige Instanz des Objekts \"%s\". Durch das Entfernen aus dem "
-"Kurs wird das Objekt unwiderruflich gelöscht! Wollen Sie das Objekt wirklich "
-"löschen?"
-msgstr ""
-"This is the only instance of the object \"%s\". By removing it from the "
-"course, the object will be deleted irrevocably! Do you really want to delete "
-"the object?"
-
-#: ../app/views/course/ilias_interface/index.php:74
-#: ../app/views/course/ilias_interface/view_object.php:14
-#, php-format
-msgid "Wollen Sie das Objekt \"%s\" jetzt entfernen?"
-msgstr "Do you really want to remove the object \"%s\" now?"
-
-#: ../app/views/course/ilias_interface/index.php:86
-msgid "Es sind keine Lernobjekte mit dieser Veranstaltung verknüpft."
-msgstr "No learning objects are associated with this course."
-
-#: ../app/views/course/ilias_interface/add_groups.php:23
-#, php-format
-msgid "Die Gruppen können nun in der %s-Installation aktualisiert werden."
-msgstr "The groups can only be updated in the %s installation."
-
-#: ../app/views/course/ilias_interface/add_groups.php:23
-#, php-format
-msgid "Die Gruppen können nun in der %s-Installation angelegt werden."
-msgstr "The groups can only be added in the %s installation."
-
-#: ../app/views/course/timesrooms/createCycle.php:8
-msgid "Regelmäßiger Termin"
-msgstr "Regular date"
-
-#: ../app/views/course/timesrooms/createCycle.php:11
-msgid "Starttag"
-msgstr "Start date"
-
-#: ../app/views/course/timesrooms/createCycle.php:24
-#: ../app/views/course/timesrooms/editDate.php:23
-#: ../app/views/course/timesrooms/createSingleDate.php:13
-#: ../app/views/course/block_appointments/index.php:38
-msgid "Startzeit"
-msgstr "Start time"
-
-#: ../app/views/course/timesrooms/createCycle.php:33
-#: ../app/views/course/timesrooms/editDate.php:28
-#: ../app/views/course/timesrooms/createSingleDate.php:18
-#: ../app/views/course/block_appointments/index.php:45
-msgid "Endzeit"
-msgstr "End time"
-
-#: ../app/views/course/timesrooms/createCycle.php:56
-msgid "Turnus"
-msgstr "Cycle"
-
-#: ../app/views/course/timesrooms/createCycle.php:59
-#: ../app/views/calendar/single/edit.php:237
-msgid "Wöchentlich"
-msgstr "Weekly"
-
-#: ../app/views/course/timesrooms/createCycle.php:62
-msgid "Zweiwöchentlich"
-msgstr "Fortnightly"
-
-#: ../app/views/course/timesrooms/createCycle.php:65
-msgid "Dreiwöchentlich"
-msgstr "Triweekly"
-
-#: ../app/views/course/timesrooms/createCycle.php:71
-msgid "Startwoche"
-msgstr "Start week"
-
-#: ../app/views/course/timesrooms/createCycle.php:97
-msgid "Endwoche"
-msgstr "End week"
-
-#: ../app/views/course/timesrooms/createCycle.php:123
-msgid "SWS Lehrende"
-msgstr "Working hours Lecturers"
-
-#: ../app/views/course/timesrooms/editStack.php:8
-#: ../app/views/course/timesrooms/editDate.php:34
-msgid "Raumangaben"
-msgstr "Room"
-
-#: ../app/views/course/timesrooms/editStack.php:20
-#: ../app/views/course/room_requests/_request_form_footer.php:12
-msgid "Raum auswählen"
-msgstr "Select room"
-
-#: ../app/views/course/timesrooms/editStack.php:29
-#: ../app/views/course/timesrooms/editDate.php:81
-#: ../app/views/course/room_requests/request_summary.php:60
-#: ../app/views/course/room_requests/request_select_properties.php:31
-msgid "Rüstzeit (in Minuten)"
-msgstr "Preparation time (in minutes)"
-
-#: ../app/views/course/timesrooms/editStack.php:38
-msgid "Freie Ortsangabe (keine Raumbuchung):"
-msgstr "Free text (no room booking):"
-
-#: ../app/views/course/timesrooms/editStack.php:40
-msgid "Freie Ortsangabe:"
-msgstr "Free text:"
-
-#: ../app/views/course/timesrooms/editStack.php:53
-#: ../app/views/course/timesrooms/editDate.php:102
-msgid "Kein Raum"
-msgstr "No room"
-
-#: ../app/views/course/timesrooms/editStack.php:59
-#: ../app/views/course/timesrooms/editDate.php:107
-msgid "Keine Änderungen an den Raumangaben vornehmen"
-msgstr "Don´t change anything"
-
-#: ../app/views/course/timesrooms/editStack.php:64
-msgid "Terminangaben"
-msgstr "Date data"
-
-#: ../app/views/course/timesrooms/editStack.php:68
-msgid "-- Keine Änderung --"
-msgstr "-- No change --"
-
-#: ../app/views/course/timesrooms/editStack.php:81
-#: ../app/views/course/timesrooms/editStack.php:99
-#: ../app/views/admin/sem_classes/details.php:57
-msgid "hinzufügen"
-msgstr "add"
-
-#: ../app/views/course/timesrooms/editStack.php:82
-#: ../app/views/course/timesrooms/editStack.php:100
-msgid "entfernen"
-msgstr "remove"
-
-#: ../app/views/course/timesrooms/editDate.php:5
-msgid "Zeitangaben"
-msgstr "Time"
-
-#: ../app/views/course/timesrooms/editDate.php:41
-msgid "Raum direkt buchen"
-msgstr "Book room directly"
-
-#: ../app/views/course/timesrooms/editDate.php:57
-#: ../app/views/course/timesrooms/createSingleDate.php:46
-#: ../app/views/course/block_appointments/index.php:106
-#, php-format
-msgid "(%d Sitzplätze)"
-msgstr "(%d seats)"
-
-#: ../app/views/course/timesrooms/editDate.php:68
-msgid "Nur buchbare Räume anzeigen"
-msgstr "Display bookable rooms only"
-
-#: ../app/views/course/timesrooms/editDate.php:91
-#: ../app/views/course/timesrooms/editDate.php:94
-#: ../app/views/course/dates/singledate.php:40
-msgid "Freie Ortsangabe (keine Raumbuchung)"
-msgstr "Location (no room booking)"
-
-#: ../app/views/course/timesrooms/editDate.php:109
-#, php-format
-msgid "(gebucht: %s)"
-msgstr "(booked: %s)"
-
-#: ../app/views/course/timesrooms/editDate.php:120
-#: ../app/views/course/dates/details-edit.php:46
-msgid "Zugewiesene Lehrende"
-msgstr "Assigned lecturers"
-
-#: ../app/views/course/timesrooms/editDate.php:137
-#: ../app/views/course/timesrooms/editDate.php:161
-#: ../app/views/course/dates/details-edit.php:63
-#: ../app/views/course/dates/details-edit.php:87
-msgid "Kein spezieller Lehrender zugewiesen"
-msgstr "No special lecturer assigned"
-
-#: ../app/views/course/timesrooms/editDate.php:143
-#: ../app/views/course/dates/details-edit.php:69
-msgid "Lehrende der Veranstaltung"
-msgstr "Lecturers"
-
-#: ../app/views/course/timesrooms/editDate.php:160
-#: ../app/views/course/dates/details-edit.php:86
-#, php-format
-msgid ""
-"Ihre Auswahl entspricht dem Zustand \"%s\" und wird beim Speichern "
-"zurückgesetzt"
-msgstr "Your selection matches the state \"%s\" and will be reset when saving"
-
-#: ../app/views/course/timesrooms/editDate.php:174
-#: ../app/views/course/dates/details-edit.php:100
-msgid "Zugewiesene Gruppen"
-msgstr "Assigned groups"
-
-#: ../app/views/course/timesrooms/editDate.php:188
-#: ../app/views/course/dates/details-edit.php:114
-msgid "Keine spezielle Gruppe zugewiesen"
-msgstr "No special group assigned"
-
-#: ../app/views/course/timesrooms/editDate.php:194
-#: ../app/views/course/dates/details-edit.php:120
-msgid "Gruppen der Veranstaltung"
-msgstr "Course's groups"
-
-#: ../app/views/course/timesrooms/editDate.php:207
-#: ../app/views/course/dates/details-edit.php:133
-msgid "Alle Gruppen wurden dem Termin zugewiesen"
-msgstr "All groups have been assigned to the date"
-
-#: ../app/views/course/timesrooms/editDate.php:225
-msgid "Zur Raumanfrage wechseln"
-msgstr "Go to room request"
-
-#: ../app/views/course/timesrooms/editDate.php:225
-#: ../app/views/course/timesrooms/_regularEvents.php:94
-#: ../app/views/course/timesrooms/_regularEvents.php:99
-#: ../app/views/course/timesrooms/index.php:27
-#: ../app/views/course/room_requests/new.php:7
-msgid "Raumanfrage erstellen"
-msgstr "Create room request"
-
-#: ../app/views/course/timesrooms/_roomRequest.php:9
-msgid "Raumanfrage für die gesamte Veranstaltung"
-msgstr "Room request for the entire course"
-
-#: ../app/views/course/timesrooms/_roomRequest.php:13
-msgid ""
-"Hier können Sie für die gesamte Veranstaltung, also für alle regelmäßigen "
-"und unregelmäßigen Termine, eine Raumanfrage erstellen."
-msgstr ""
-"Here you can create a room request for the whole course which means periodic "
-"and aperiodic dates."
-
-#: ../app/views/course/timesrooms/_roomRequest.php:18
-msgid "Neue Raumanfrage für die Veranstaltung erstellen"
-msgstr "Add new room request for this course"
-
-#: ../app/views/course/timesrooms/_roomRequest.php:19
-msgid "Neue Raumanfrage"
-msgstr "New room request"
-
-#: ../app/views/course/timesrooms/_roomRequest.php:26
-msgid "Für diese Veranstaltung liegt eine offene Raumanfrage vor"
-msgstr "One unprocessed room request for this course"
-
-#: ../app/views/course/timesrooms/_roomRequest.php:30
-msgid "Keine Raumanfrage vorhanden"
-msgstr "No room requests"
-
-#: ../app/views/course/timesrooms/editSemester.php:5
-msgid "Semester ändern"
-msgstr "Change semester"
-
-#: ../app/views/course/timesrooms/editSemester.php:24
-msgid "Ein Semester"
-msgstr "One semester"
-
-#: ../app/views/course/timesrooms/editSemester.php:35
-#: ../app/views/evaluation/_admin_list_vote.php:19
-#: ../app/views/admin/statusgroups/editGroup.php:36
-msgid "Unbegrenzt"
-msgstr "Unlimited"
-
-#: ../app/views/course/timesrooms/editSemester.php:41
-msgid "Semester speichern"
-msgstr "Save semester"
-
-#: ../app/views/course/timesrooms/_roomRequestInfo.php:8
-#, php-format
-msgid "Für diese Veranstaltung liegt eine offene Raumanfrage vor."
-msgid_plural "Für diese Veranstaltung liegen %u offene Raumanfragen vor"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/course/timesrooms/_cycleRow.php:69
-msgid "Keine Raumangabe"
-msgstr "No room preference"
-
-#: ../app/views/course/timesrooms/_cycleRow.php:75
-msgid "Für diesen Termin existiert eine Raumanfrage."
-msgstr "A room request exists for this date."
-
-#: ../app/views/course/timesrooms/_cycleRow.php:88
-msgid "Kommentare bearbeiten"
-msgstr "Edit comment"
-
-#: ../app/views/course/timesrooms/_cycleRow.php:89
-msgid "Kommentar für diesen Termin bearbeiten"
-msgstr "Edit comment for this date"
-
-#: ../app/views/course/timesrooms/_cycleRow.php:97
-#: ../app/views/course/dates/_date_row-exdate.php:24
-msgid "Diesen Termin wiederherstellen?"
-msgstr "Restore this date?"
-
-#: ../app/views/course/timesrooms/_cycleRow.php:106
-#: ../app/views/course/dates/_date_row-exdate.php:23
-msgid "Termin wiederherstellen"
-msgstr "Restore date"
-
-#: ../app/views/course/timesrooms/_cycleRow.php:114
-msgid "Diesen Termin bearbeiten"
-msgstr "Edit this date"
-
-#: ../app/views/course/timesrooms/_cycleRow.php:122
-msgid "Wollen Sie diesen Termin wirklich löschen / ausfallen lassen?"
-msgstr "Do you really want to delete / cancel this date?"
-
-#: ../app/views/course/timesrooms/_cycleRow.php:141
-msgid "Termin löschen"
-msgstr "Delete date"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:11
-#: ../app/views/course/timesrooms/_regularEvents.php:12
-msgid "Regelmäßigen Termin hinzufügen"
-msgstr "Add periodic date"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:31
-msgid "Keine Raumbuchungen vorhanden"
-msgstr "No requests found"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:33
-msgid "Keine offenen Raumbuchungen"
-msgstr "No unprocessed room requests"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:50
-#, php-format
-msgid "Raum %s angefragt"
-msgstr "Room %s requested"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:55
-msgid "Bearbeitete Raumanfrage vorhanden!"
-msgstr "Processed room request available!"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:67
-#: ../app/views/course/timesrooms/_irregularEvents.php:62
-msgid "Einzel-Raumanfrage"
-msgstr "Room request"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:71
-msgid "keine offenen Anfragen"
-msgstr "no open requests"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:81
-#: ../app/views/course/timesrooms/_regularEvents.php:82
-msgid "Diesen Zeitraum bearbeiten"
-msgstr "Edit period of time"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:108
-#: ../app/views/course/timesrooms/_regularEvents.php:109
-msgid "Diesen Zeitraum löschen"
-msgstr "Delete period of time"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:111
-msgid "Soll dieser Zeitraum wirklich gelöscht werden?"
-msgstr "Delete this period of time?"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:163
-#: ../app/views/course/timesrooms/_irregularEvents.php:119
-#: ../app/views/course/members/tutor_list.php:180
-#: ../app/views/course/members/accepted_list.php:170
-#: ../app/views/course/members/awaiting_list.php:157
-#: ../app/views/course/members/autor_list.php:219
-#: ../app/views/course/members/user_list.php:180
-#: ../app/views/course/statusgroups/getgroup.php:104
-#: ../app/views/course/statusgroups/index.php:39
-#: ../app/views/course/grouping/members.php:82
-#: ../app/views/course/grouping/_perm_level.php:128
-#: ../app/views/admin/ilias_interface/soap_methods.php:37
-#: ../app/views/admin/cronjobs/schedules/index.php:152
-#: ../app/views/admin/cronjobs/logs/index.php:131
-#: ../app/views/admin/cronjobs/tasks/execute.php:11
-#: ../app/views/admin/cronjobs/tasks/index.php:80
-#: ../app/views/admin/user/_results.php:233 ../app/views/contact/index.php:113
-msgid "Ausführen"
-msgstr "Execute"
-
-#: ../app/views/course/timesrooms/_regularEvents.php:181
-msgid "Keine regelmäßigen Termine vorhanden"
-msgstr "No periodic dates"
-
-#: ../app/views/course/timesrooms/createSingleDate.php:41
-#: ../app/views/course/block_appointments/index.php:101
-msgid "<em>Keinen</em> Raum buchen"
-msgstr "<em>Do not</em> book a room"
-
-#: ../app/views/course/timesrooms/createSingleDate.php:56
-#: ../app/views/course/block_appointments/index.php:116
-msgid "Freie Ortsangabe"
-msgstr "Location"
-
-#: ../app/views/course/timesrooms/createSingleDate.php:60
-msgid "(führt <em>nicht</em> zu einer Raumbuchung)"
-msgstr "(does <em>not</em> create a room booking)"
-
-#: ../app/views/course/timesrooms/_irregularEvents.php:13
-msgid "Unregelmäßige Termine / Blocktermine"
-msgstr "Aperiodic dates / block dates"
-
-#: ../app/views/course/timesrooms/_irregularEvents.php:20
-#: ../app/views/course/timesrooms/_irregularEvents.php:21
-msgid "Einzeltermin hinzufügen"
-msgstr "Add single date"
-
-#: ../app/views/course/timesrooms/_irregularEvents.php:27
-#: ../app/views/course/timesrooms/_irregularEvents.php:28
-msgid "Blocktermin hinzufügen"
-msgstr "Add block date"
-
-#: ../app/views/course/timesrooms/_irregularEvents.php:51
-#: ../app/views/course/dates/index.php:75
-msgid "Ohne Semester"
-msgstr "Without semester"
-
-#: ../app/views/course/timesrooms/_irregularEvents.php:57
-#, php-format
-msgid "%u Termin"
-msgid_plural "%u Termine"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/course/timesrooms/_irregularEvents.php:64
-#, php-format
-msgid "%u noch offen"
-msgstr "%u outstanding"
-
-#: ../app/views/course/timesrooms/_irregularEvents.php:66
-msgid "keine offen"
-msgstr "none open"
-
-#: ../app/views/course/timesrooms/_irregularEvents.php:133
-msgid "Keine unregelmäßigen Termine vorhanden"
-msgstr "No aperiodic dates available"
-
-#: ../app/views/course/timesrooms/_stack_actions.php:2
-#: ../app/views/course/dates/singledate.php:53
-#: ../app/views/course/dates/details-edit.php:152
-msgid "Ausfallen lassen"
-msgstr "Cancel"
-
-#: ../app/views/course/timesrooms/_stack_actions.php:3
-msgid "Stattfinden lassen"
-msgstr "Take place"
-
-#: ../app/views/course/basicdata/view.php:31
-#: ../app/views/course/basicdata/view.php:62
-#: ../app/views/course/basicdata/view.php:300
-msgid "Fehlende Datenzeilen"
-msgstr "Missing data record"
-
-#: ../app/views/course/basicdata/view.php:46
-#: ../app/views/admin/smileys/edit.php:39 ../app/views/wiki/info.php:22
-#: ../app/views/my_ilias_accounts/_ilias_module.php:10
-#: ../app/views/file/_file_aside.php:19 ../app/views/file/_folder_aside.php:9
-msgid "Erstellt"
-msgstr "Created"
-
-#: ../app/views/course/basicdata/view.php:91
-msgid "Mehrere Lehrende hinzufügen"
-msgstr "Add multiple lecturers"
-
-#: ../app/views/course/basicdata/view.php:114
-msgid "Keine Lehrende eingetragen"
-msgstr "No lecturer entered"
-
-#: ../app/views/course/basicdata/view.php:130
-#: ../app/views/course/basicdata/view.php:267
-msgid "Die Funktion, die die Person in der Veranstaltung erfüllt."
-msgstr "The function that the person fulfills in the course."
-
-#: ../app/views/course/basicdata/view.php:149
-#: ../app/views/course/basicdata/view.php:209
-#: ../app/views/course/basicdata/view.php:286
-msgid "Soll die Person wirklich entfernt werden?"
-msgstr "Do you really want to remove the person?"
-
-#: ../app/views/course/basicdata/view.php:167
-msgid "Mehrere Vertretungen hinzufügen"
-msgstr "Add multiple substitutes"
-
-#: ../app/views/course/basicdata/view.php:189
-msgid "Keine Vertretung eingetragen"
-msgstr "No substitute entered"
-
-#: ../app/views/course/basicdata/view.php:227
-msgid "Mehrere TutorInnen hinzufügen"
-msgstr "Add multiple tutors"
-
-#: ../app/views/course/basicdata/view.php:251
-msgid "Keine TutorInnen eingetragen"
-msgstr "No tutors entered"
-
-#: ../app/views/course/basicdata/view.php:297
-msgid "Beschreibungen"
-msgstr "Descriptions"
-
-#: ../app/views/course/basicdata/_input.php:31
-#: ../app/views/course/basicdata/_input.php:66
-msgid "Keine Änderung möglich"
-msgstr "Changes not applicable"
-
-#: ../app/views/course/studygroup/_replace_founder.php:2
-msgid "GruppengründerInnen"
-msgstr "Founders of the group"
-
-#: ../app/views/course/studygroup/_replace_founder.php:16
-msgid "Als GruppengründerIn eintragen"
-msgstr "Enter as founder of the group"
-
-#: ../app/views/course/studygroup/_feedback.php:5
-msgid "Beim Anlegen der Studiengruppe traten folgende Fehler auf:"
-msgstr "The following errors occurred while creating the study group:"
-
-#: ../app/views/course/studygroup/_feedback.php:7
-msgid "Beim Bearbeiten der Studiengruppe traten folgende Fehler auf:"
-msgstr "The following errors occurred while editing the study group:"
-
-#: ../app/views/course/studygroup/members.php:5
-msgid "Gruppenadministrator/-innen"
-msgstr "Group administrators"
-
-#: ../app/views/course/studygroup/members.php:15
-msgid "Moderator/-innen"
-msgstr "Moderator"
-
-#: ../app/views/course/studygroup/members.php:36
-msgid "Offene Mitgliedsanträge"
-msgstr "Open membership applications"
-
-#: ../app/views/course/studygroup/members.php:78
-msgid "Wollen Sie die Mitgliedschaft wirklich ablehnen?"
-msgstr "Do you want to decline the membership?"
-
-#: ../app/views/course/studygroup/members.php:79
-msgid "Mitgliedschaft ablehnen"
-msgstr "Decline membership"
-
-#: ../app/views/course/studygroup/members.php:88
-msgid "Personen eintragen"
-msgstr "Add users"
-
-#: ../app/views/course/studygroup/members.php:89
-msgid "Wollen Sie die markierten Personen wirklich eintragen?"
-msgstr ""
-
-#: ../app/views/course/studygroup/members.php:91
-msgid "Mitgliedschaften ablehnen"
-msgstr ""
-
-#: ../app/views/course/studygroup/members.php:92
-msgid "Wollen Sie die Mitgliedschaften wirklich ablehnen?"
-msgstr ""
-
-#: ../app/views/course/studygroup/members.php:104
-msgid "Verschickte Einladungen"
-msgstr "Send invitations"
-
-#: ../app/views/course/studygroup/members.php:142
-msgid "Wollen Sie die Einladung wirklich löschen?"
-msgstr "Do you want to delete the invitation?"
-
-#: ../app/views/course/studygroup/members.php:143
-msgid "Einladung löschen"
-msgstr "Delete invitation"
-
-#: ../app/views/course/studygroup/members.php:152
-msgid "Einladungen löschen"
-msgstr ""
-
-#: ../app/views/course/studygroup/members.php:153
-msgid "Wollen Sie die markierten Einladungen wirklich löschen?"
-msgstr ""
-
-#: ../app/views/course/studygroup/_choose_founders.php:6
-msgid "GruppengründerIn hinzufügen:"
-msgstr "Add founder to the group:"
-
-#: ../app/views/course/studygroup/_choose_founders.php:15
-msgid "NutzerIn hinzufügen"
-msgstr "Add user"
-
-#: ../app/views/course/studygroup/_choose_founders.php:16
-msgid "neue Suche starten"
-msgstr "start new search"
-
-#: ../app/views/course/studygroup/_choose_founders.php:18
-#, php-format
-msgid "Es werden nur die ersten %s Treffer angezeigt!"
-msgstr "The first %s results will be displayed, only!"
-
-#: ../app/views/course/studygroup/_choose_founders.php:23
-msgid "Geben Sie zur Suche den Vor-, Nach- oder Benutzernamen ein."
-msgstr "To search, enter first name, last name or username."
-
-#: ../app/views/course/studygroup/_choose_founders.php:28
-msgid "Gruppengründer:"
-msgstr "Founder of the group:"
-
-#: ../app/views/course/studygroup/_choose_founders.php:36
-msgid "NutzerIn entfernen"
-msgstr "Remove user"
-
-#: ../app/views/course/studygroup/_members_list.php:71
-#: ../app/views/course/studygroup/_members_options.php:9
-msgid "Hochstufen"
-msgstr "Promote"
-
-#: ../app/views/course/studygroup/_members_list.php:72
-msgid "Wollen Sie die markierten Personen wirklich hochstufen?"
-msgstr ""
-
-#: ../app/views/course/studygroup/_members_list.php:76
-msgid "Herunterstufen"
-msgstr ""
-
-#: ../app/views/course/studygroup/_members_list.php:77
-msgid "Wollen Sie die markierten Personen wirklich herunterstufen?"
-msgstr ""
-
-#: ../app/views/course/studygroup/_members_list.php:81
-#: ../app/views/course/members/tutor_list.php:176
-#: ../app/views/course/members/accepted_list.php:166
-#: ../app/views/course/members/awaiting_list.php:152
-#: ../app/views/course/members/autor_list.php:211
-#: ../app/views/course/members/user_list.php:173
-#: ../app/views/course/statusgroups/_askcancel_members.php:12
-#: ../app/views/course/grouping/_perm_level.php:124
-msgid "Austragen"
-msgstr "Sign out"
-
-#: ../app/views/course/studygroup/_members_list.php:82
-msgid ""
-"Wollen Sie die markierten Personen wirklich auf der Studiengruppe entfernen?"
-msgstr ""
-
-#: ../app/views/course/studygroup/_members_options.php:2
-msgid "Wollen Sie die Person wirklich runterstufen?"
-msgstr ""
-
-#: ../app/views/course/studygroup/_members_options.php:3
-msgid "Runterstufen"
-msgstr "Downgrade"
-
-#: ../app/views/course/studygroup/_members_options.php:8
-msgid "Wollen Sie die Person wirklich hochstufen?"
-msgstr ""
-
-#: ../app/views/course/studygroup/_members_options.php:14
-msgid "Wollen Sie die Person wirklich rauswerfen?"
-msgstr ""
-
-#: ../app/views/course/studygroup/_members_options.php:15
-msgid "Rauswerfen"
-msgstr "Expulse"
-
-#: ../app/views/course/studygroup/edit.php:32
-#: ../app/views/course/wizard/steps/basicdata/index_studygroup.php:39
-#: ../app/views/tour/admin_overview.php:41
-msgid "Zugang"
-msgstr "Access"
-
-#: ../app/views/course/studygroup/edit.php:35
-msgid "Offen für alle"
-msgstr "Open to everyone"
-
-#: ../app/views/course/studygroup/edit.php:38
-msgid "Auf Anfrage"
-msgstr "Upon request"
-
-#: ../app/views/course/studygroup/edit.php:42
-msgid "Unsichtbar"
-msgstr "Invisible"
-
-#: ../app/views/course/studygroup/globalmodules.php:14
-msgid "Keine Veranstaltungsart für Studiengruppen gefunden"
-msgstr "No course type for study groups available"
-
-#: ../app/views/course/studygroup/globalmodules.php:16
-#, php-format
-msgid ""
-"Die Standardkonfiguration für Studiengruppen in der Datei <b>%s</b> fehlt "
-"oder ist unvollständig."
-msgstr ""
-"The default configuration for study groups in file <b>%s</b> is missing or "
-"incomplete."
-
-#: ../app/views/course/studygroup/globalmodules.php:23
-msgid "Die Studiengruppen sind derzeit <b>nicht</b> aktiviert."
-msgstr "At present, study groups are <b>not</b>activated."
-
-#: ../app/views/course/studygroup/globalmodules.php:25
-msgid ""
-"Zum Aktivieren füllen Sie bitte das Formular aus und klicken Sie auf "
-"\"Speichern\"."
-msgstr "For activation, please fill out this form and click on \"Save\"."
-
-#: ../app/views/course/studygroup/globalmodules.php:29
-msgid "Die Studiengruppen sind aktiviert."
-msgstr "Study groups activated."
-
-#: ../app/views/course/studygroup/globalmodules.php:35
-msgid ""
-"Sie können die Studiengruppen nicht deaktivieren, solange noch welche in "
-"Stud.IP vorhanden sind!"
-msgstr ""
-"As long as in Stud.IP there exists at least one study group, you cannot "
-"deactivate study groups!"
-
-#: ../app/views/course/studygroup/globalmodules.php:45
-msgid "Alle Studiengruppen werden folgender Einrichtung zugeordnet:"
-msgstr "All study groups will be allocated to the following institutes:"
-
-#: ../app/views/course/studygroup/globalmodules.php:49
-msgid "-- Bitte auswählen --"
-msgstr "-- Please select --"
-
-#: ../app/views/course/studygroup/globalmodules.php:72
-msgid ""
-"Geben Sie hier Nutzungsbedingungen für die Studiengruppen ein. Diese müssen "
-"akzeptiert werden, bevor eine Studiengruppe angelegt werden kann."
-msgstr ""
-"Please enter the terms of use for study groups. These have to be accepted "
-"before a study group can be created."
-
-#: ../app/views/course/topics/copy.php:3
-msgid "Themen auswählen"
-msgstr "Select topics"
-
-#: ../app/views/course/topics/index.php:21
-#: ../app/views/course/topics/edit.php:76
-msgid "Thema behandelt eine Hausarbeit oder ein Referat"
-msgstr "The topic deals with a homework or a presentation"
-
-#: ../app/views/course/topics/index.php:71
-msgid "Thema im Forum"
-msgstr "Topic in forum"
-
-#: ../app/views/course/topics/index.php:78
-msgid "Keine Materialien zu dem Thema vorhanden"
-msgstr "No materials for this topic"
-
-#: ../app/views/course/topics/index.php:98
-msgid "Alle Termine ausfallen lassen"
-msgstr "Cancel all dates"
-
-#: ../app/views/course/topics/index.php:104
-msgid "nach oben verschieben"
-msgstr "move up"
-
-#: ../app/views/course/topics/index.php:111
-msgid "nach unten verschieben"
-msgstr "move down"
-
-#: ../app/views/course/topics/index.php:123
-msgid "Keine Themen vorhanden."
-msgstr "No topics available."
-
-#: ../app/views/course/topics/edit.php:10
-msgid "Thema bearbeiten"
-msgstr "Edit topic"
-
-#: ../app/views/course/topics/edit.php:32
-msgid "Dateiordner vorhanden "
-msgstr "Document folder available"
-
-#: ../app/views/course/topics/edit.php:35
-#: ../app/views/course/statusgroups/create_groups.php:104
-#: ../app/views/course/statusgroups/edit.php:22
-msgid "Dateiordner anlegen"
-msgstr "Create document folder"
-
-#: ../app/views/course/topics/edit.php:44
-msgid "Forenthema vorhanden "
-msgstr "Forum topic available"
-
-#: ../app/views/course/topics/edit.php:47
-msgid "Forenthema anlegen"
-msgstr "Create forum topic"
-
-#: ../app/views/course/topics/edit.php:72
-msgid "Hausarbeit/Referat"
-msgstr "Homework/Presentation"
-
-#: ../app/views/course/scm/index.php:10 ../app/views/course/scm/edit.php:47
-#, php-format
-msgid "Zuletzt geändert von %s am %s"
-msgstr "Last change by %s on %s"
-
-#: ../app/views/course/scm/index.php:12
-#, php-format
-msgid "Zuletzt geändert am %s"
-msgstr "Last change on %s"
-
-#: ../app/views/course/scm/index.php:21
-msgid "Diese Seite an die erste Position setzen"
-msgstr "Move up this page to first position"
-
-#: ../app/views/course/scm/index.php:25
-msgid "Diese Seite löschen"
-msgstr "Delete this page"
-
-#: ../app/views/course/scm/index.php:33
-msgid "In diesem Bereich wurden noch keine Inhalte erstellt."
-msgstr "No content available in this area."
-
-#: ../app/views/course/scm/edit.php:2
-msgid ""
-"Hier können Sie eine Seite mit Zusatzinformationen zu Ihrer Veranstaltung "
-"gestalten. Sie können Links normal eingeben, diese werden anschließend "
-"automatisch als Hyperlinks dargestellt."
-msgstr ""
-"Here, you can set up a page with additional information about your course. "
-"Links entered in the regular fashion will automatically be displayed as "
-"hyperlinks."
-
-#: ../app/views/course/scm/edit.php:13
-msgid "Informationsseite"
-msgstr "Information page"
-
-#: ../app/views/course/scm/edit.php:20 ../app/views/course/scm/edit.php:21
-msgid "Titel der Informationsseite"
-msgstr "Title of information page"
-
-#: ../app/views/course/scm/edit.php:27
-msgid "oder wählen Sie hier einen Namen aus:"
-msgstr "or select a name here:"
-
-#: ../app/views/course/scm/edit.php:29
-msgid "Vorlagen"
-msgstr "Templates"
-
-#: ../app/views/course/block_appointments/index.php:2
-msgid "Neuen Blocktermin anlegen"
-msgstr "Create new block date"
-
-#: ../app/views/course/block_appointments/index.php:12
-#, php-format
-msgid ""
-"Sie legen %s%u%s Termine an. Bitte kontrollieren Sie Ihre Eingaben oder "
-"bestätigen Sie, dass die Termine angelegt werden sollen."
-msgstr ""
-"You are about to create %s%u%s dates. Please check your input or confirm "
-"that the dates shall be created."
-
-#: ../app/views/course/block_appointments/index.php:20
-#, php-format
-msgid "Ja, ich möchte wirklich %u Termine anlegen."
-msgstr "Yes, I really want to create %u dates."
-
-#: ../app/views/course/block_appointments/index.php:52
-msgid "Die Veranstaltung findet an folgenden Tagen statt"
-msgstr "The course takes place on the following days"
-
-#: ../app/views/course/block_appointments/index.php:83
-msgid "Art der Termine"
-msgstr "Type of dates"
-
-#: ../app/views/course/management/lock.php:2
-#, php-format
-msgid "Die eingestellte Sperrebene \"%s\" dürfen Sie nicht ändern."
-msgstr "No permission to change the constraint \"%s\"."
-
-#: ../app/views/course/management/lock.php:13
-msgid "Sperrebene auswählen"
-msgstr "Choose constraint"
-
-#: ../app/views/course/wizard/steps/basicdata/index.php:90
-#: ../app/views/course/wizard/steps/basicdata/index.php:115
-#: ../app/views/course/wizard/steps/basicdata/index.php:141
-#: ../app/views/course/wizard/steps/basicdata/index.php:170
-msgid "bereits zugeordnet:"
-msgstr "already assigned:"
-
-#: ../app/views/course/wizard/steps/basicdata/index_studygroup.php:44
-msgid "offen für alle"
-msgstr "open to everyone"
-
-#: ../app/views/course/wizard/steps/basicdata/index_studygroup.php:48
-msgid "auf Anfrage"
-msgstr "upon request"
-
-#: ../app/views/course/wizard/steps/basicdata/index_studygroup.php:64
-msgid ""
-"Ich habe die eingetragenen Personen darüber informiert, dass in Ihrem Namen "
-"eine Studiengruppe angelegt wird und versichere, dass Sie mit folgenden "
-"Nutzungsbedingungen einverstandenen sind:"
-msgstr ""
-"I have informed the entered persons that a studygroup will be created in "
-"your name and I assure that you agree to the following terms of use:"
-
-#: ../app/views/course/wizard/steps/basicdata/index_studygroup.php:71
-msgid "Einverstanden"
-msgstr "I agree"
-
-#: ../app/views/course/wizard/steps/studyareas/index.php:7
-#: ../app/views/course/wizard/steps/lvgroups/index.php:7
-#: ../app/views/course/lvgselector/index.php:8
-msgid "Bereits zugewiesen"
-msgstr "Already assigned"
-
-#: ../app/views/course/wizard/steps/studyareas/index.php:32
-msgid "Alle Studienbereiche"
-msgstr "All fields of study"
-
-#: ../app/views/course/wizard/steps/studyareas/index.php:46
-msgid "Alle Suchergebnisse zuweisen"
-msgstr "Assign all search results"
-
-#: ../app/views/course/wizard/steps/lvgroups/_node.php:4
-#: ../app/views/course/wizard/steps/lvgroups/_node.php:24
-msgid "Keine Module verfügbar"
-msgstr "No module available"
-
-#: ../app/views/course/wizard/steps/lvgroups/index.php:30
-#: ../app/views/course/lvgselector/index.php:34
-msgid "Lehrveranstaltungsgruppen Suche"
-msgstr "Course group search"
-
-#: ../app/views/course/wizard/steps/lvgroups/index.php:48
-#: ../app/views/course/lvgselector/index.php:52
-msgid "Alle Lehrveranstaltungsgruppen"
-msgstr "All course groups"
-
-#: ../app/views/course/wizard/summary.php:3
-msgid "Anlegen der Veranstaltung"
-msgstr "Create course"
-
-#: ../app/views/course/wizard/summary.php:7
-#: ../app/views/course/wizard/summary.php:11
-msgid ""
-"Sie haben alle benötigten Daten angegeben und können nun die Veranstaltung "
-"anlegen."
-msgstr "You have entered all required data. The course can be created."
-
-#: ../app/views/course/wizard/summary.php:13
-msgid ""
-"Der nächste Schritt führt Sie  gleich in den Verwaltungsbereich der neu "
-"angelegten Veranstaltung, wo Sie weitere Daten hinzufügen können."
-msgstr ""
-"The next step will lead you to the management area of the new course where "
-"you can add further data."
-
-#: ../app/views/course/wizard/summary.php:23
-#, php-format
-msgid "Alle Grunddaten der Ursprungsveranstaltung (%s) kopieren"
-msgstr "Copy basic information from (%s)"
-
-#: ../app/views/course/wizard/summary.php:50
-msgid "Veranstaltung anlegen"
-msgstr "Create course"
-
-#: ../app/views/course/wizard/step.php:25
-msgid "Zurück zu meiner Veranstaltungsübersicht"
-msgstr "Back to course overview"
-
-#: ../app/views/course/gradebook/students/index.php:3
-msgid "Gesamt"
-msgstr "Total"
-
-#: ../app/views/course/gradebook/students/index.php:25
-msgid "Tool"
-msgstr "Tool"
-
-#: ../app/views/course/gradebook/students/index.php:26
-msgid "Gewichtung"
-msgstr "Weighting"
-
-#: ../app/views/course/gradebook/lecturers/edit_custom_definition.php:5
-#: ../app/views/course/gradebook/lecturers/new_custom_definition.php:5
-msgid "Name der Leistung"
-msgstr "Achievement name"
-
-#: ../app/views/course/gradebook/lecturers/weights.php:2
-#: ../app/views/course/gradebook/lecturers/index.php:69
-msgid "Es wurden noch keine Leistungen definiert."
-msgstr "No achievements have been defined yet."
-
-#: ../app/views/course/gradebook/lecturers/custom_definitions.php:49
-#: ../app/views/course/gradebook/lecturers/edit_custom_definitions.php:49
-msgid "Es sind keine manuellen Leistungen definiert."
-msgstr "There are no manual achievements defined yet."
-
-#: ../app/views/course/gradebook/lecturers/custom_definitions.php:73
-#: ../app/views/course/gradebook/lecturers/index.php:73
-msgid "Es gibt noch keine Teilnehmer."
-msgstr "There are no participants yet."
-
-#: ../app/views/course/gradebook/lecturers/index.php:25
-msgid "Gesamtsumme"
-msgstr "Total"
-
-#: ../app/views/course/gradebook/lecturers/edit_custom_definitions.php:28
-msgid "Ändern"
-msgstr "Change"
-
-#: ../app/views/course/gradebook/lecturers/edit_custom_definitions.php:39
-msgid "Wollen Sie die Leistungsdefinition wirklich löschen?"
-msgstr "Do you really want to delete the achievement definition?"
-
-#: ../app/views/course/gradebook/lecturers/edit_custom_definitions.php:59
-msgid "Weitere Leistung definieren"
-msgstr "Define more achievements"
-
-#: ../app/views/course/gradebook/lecturers/edit_custom_definitions.php:59
-msgid "Leistung definieren"
-msgstr "Define achievement"
-
-#: ../app/views/course/archive/archive.php:4
-msgid "Veranstaltung erfolgreich archiviert!"
-msgid_plural "Veranstaltungen erfolgreich archiviert!"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/course/archive/archive.php:18
-msgid "Die folgenden Veranstaltungen wurden erfolgreich archiviert"
-msgstr "The following courses have been archived successfully"
-
-#: ../app/views/course/archive/archive.php:33
-msgid "Fehler beim Archivieren von Veranstaltungen!"
-msgstr "Error while archiving courses!"
-
-#: ../app/views/course/archive/archive.php:42
-msgid "Zurück zur Veranstaltungsverwaltung"
-msgstr "Back to course management"
-
-#: ../app/views/course/archive/confirm.php:4
-msgid ""
-"Sie sind im Begriff, die folgende Veranstaltung zu löschen. Dieser Schritt "
-"kann nicht rückgängig gemacht werden!"
-msgid_plural ""
-"Sie sind im Begriff, die folgenden Veranstaltungen zu löschen. Dieser "
-"Schritt kann nicht rückgängig gemacht werden!"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/course/archive/confirm.php:48
-#: ../app/views/course/details/index.php:313
-msgid "Veranstaltungsort"
-msgstr "Course location"
-
-#: ../app/views/course/enrolment/prelim.php:2
-msgid ""
-"Um endgültig in die Veranstaltung aufgenommen zu werden, müssen Sie noch "
-"weitere Voraussetzungen erfüllen."
-msgstr ""
-"To be finally enroled in the course, you must fulfil further pre-requisites."
-
-#: ../app/views/course/enrolment/prelim.php:5
-msgid "Lesen Sie bitte folgenden Hinweistext:"
-msgstr "Please read the following reference text:"
-
-#: ../app/views/course/enrolment/prelim.php:14
-msgid "Bemerkungen zu Teilnahmevoraussetzungen:"
-msgstr "Remarks on pre-requisites:"
-
-#: ../app/views/course/enrolment/_priocourses.php:27
-msgid "Ich möchte folgende Anzahl an Veranstaltungen belegen:"
-msgstr "I apply for the following number of courses:"
-
-#: ../app/views/course/enrolment/_priocourses.php:39
-msgid ""
-"Ziehen Sie die in Frage kommenden Veranstaltungen auf die rechte Seite und "
-"ordnen Sie sie dort in der Reihenfolge der von Ihnen gewünschten Priorität "
-"an. Sie können mehr Veranstaltungen nach rechts ziehen als Sie tatsächlich "
-"belegen wollen."
-msgstr ""
-"Drag and drop your choice to the right side and sort them by priority (most "
-"desired at the top). You can drag more courses than you really want to "
-"participate in."
-
-#: ../app/views/course/enrolment/_priocourses.php:45
-msgid ""
-"Sortieren Sie die in Frage kommenden Veranstaltungen auf die rechte Seite "
-"und ordnen Sie sie dort in der Reihenfolge der von Ihnen gewünschten "
-"Priorität an. Sie können mehr Veranstaltungen nach rechts zuweisen als Sie "
-"tatsächlich belegen wollen."
-msgstr ""
-"Drag and drop your choice to the right side and sort them by priority (most "
-"desired at the top). You can drag more courses than you really want to "
-"participate in."
-
-#: ../app/views/course/enrolment/_priocourses.php:54
-msgid "Verfügbare Veranstaltungen"
-msgstr "Available courses"
-
-#: ../app/views/course/enrolment/_priocourses.php:77
-#: ../app/views/questionnaire/assign_step2.php:2
-msgid "Ausgewählte Veranstaltungen"
-msgstr "Selected courses"
-
-#: ../app/views/course/enrolment/_priocourses.php:82
-msgid "Die gewünschten Veranstaltungen links auswählen"
-msgstr "Choose courses on the left side"
-
-#: ../app/views/course/enrolment/_priocourses.php:85
-msgid "Gewünschte Veranstaltungen hierhin ziehen"
-msgstr "Drop selected courses here"
-
-#: ../app/views/course/enrolment/apply.php:32
-#, php-format
-msgid "max. Teilnehmendenanzahl: %s / Anzahl der Anmeldungen: %s"
-msgstr "max. number of participants: %s / Amount of enrolments: %s"
-
-#: ../app/views/course/enrolment/apply.php:37
-msgid "Zur Platzverteilung anmelden"
-msgstr "Apply for course"
-
-#: ../app/views/course/enrolment/apply.php:39
-msgid "Von der Platzverteilung abmelden"
-msgstr "Sign off from the seat allocation"
-
-#: ../app/views/course/members/select_course.php:8
-msgid "Zielveranstaltung"
-msgstr "Target course"
-
-#: ../app/views/course/members/select_course.php:15
-msgid ""
-"Sollen die gewählten Personen in die Zielveranstaltung verschoben oder "
-"kopiert werden?"
-msgstr "Move/copy selected persons to course?"
-
-#: ../app/views/course/members/add_comment.php:7
-#: ../app/views/course/members/add_comment.php:8
-#: ../app/views/course/members/tutor_list.php:102
-#: ../app/views/course/members/accepted_list.php:99
-#: ../app/views/course/members/dozent_list.php:64
-#: ../app/views/course/members/autor_list.php:113
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_edit.php:16
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_table.php:26
-msgid "Bemerkung"
-msgstr "Comment"
-
-#: ../app/views/course/members/add_dozent.php:30
-#: ../app/views/course/members/add_member.php:31
-#: ../app/views/course/members/add_member.php:88
-#: ../app/views/course/members/add_tutor.php:27
-#: ../app/views/course/members/import_autorlist.php:43
-#, php-format
-msgid "als %s eintragen"
-msgstr "enter with status %s"
-
-#: ../app/views/course/members/additional_input.php:25
-#: ../app/views/course/members/additional_input.php:28
-msgid "Keine einstellbaren Zusatzdaten vorhanden"
-msgstr "No additional information"
-
-#: ../app/views/course/members/add_member.php:9
-#, php-format
-msgid "%s in die Veranstaltung hinzufügen"
-msgstr "enrol %s in this course"
-
-#: ../app/views/course/members/add_member.php:15
-#: ../app/views/course/members/add_member.php:76
-#: ../app/views/course/members/import_autorlist.php:36
-#, php-format
-msgid "<strong>%s</strong> in die Veranstaltung eintragen"
-msgstr "enrol <strong>%s</strong> in the course"
-
-#: ../app/views/course/members/add_member.php:46
-#: ../app/views/course/members/import_autorlist.php:10
-msgid "Teilnehmendenliste übernehmen"
-msgstr "Apply participants list"
-
-#: ../app/views/course/members/add_member.php:52
-#: ../app/views/course/members/import_autorlist.php:14
-msgid "Eingabeformat"
-msgstr "Input format"
-
-#: ../app/views/course/members/add_member.php:54
-#, php-format
-msgid ""
-"In das Textfeld <strong>Teilnehmendenliste übernehmen</strong> können Sie "
-"eine Liste mit Namen von %s eingeben,\n"
-"                    die in die Veranstaltung aufgenommen werden sollen. "
-"Wählen Sie in der Auswahlbox das gewünschte Format, in dem Sie die Namen "
-"eingeben möchten.<br />\n"
-"                    <strong>Eingabeformat</strong><br/>\n"
-"                    <strong>Nachname, Vorname &crarr;</strong><br />Geben "
-"Sie dazu in jede Zeile den Nachnamen und (optional) den Vornamen getrennt "
-"durch ein Komma oder ein Tabulatorzeichen ein.<br />\n"
-"                    <strong>Nutzername &crarr;</strong><br />Geben Sie dazu "
-"in jede Zeile den Stud.IP Nutzernamen ein."
-msgstr ""
-"In the text area <strong>Apply participants list</strong> you can put a list "
-"with names from %s\n"
-"                    which shall be enroled into the course. Use the select "
-"box to select the desired format in which you want to put the names.<br />\n"
-"                    <strong>Input format</strong><br/>\n"
-"                    <strong>Last name, first name &crarr;</strong><br /"
-">Enter the last name and (at your option) the first name in each row "
-"separated by comma or a tab.<br />\n"
-"                    <strong>User name &crarr;</strong><br />Enter the Stud."
-"IP user name in each row."
-
-#: ../app/views/course/members/tutor_list.php:22
-#: ../app/views/course/members/accepted_list.php:21
-#: ../app/views/course/members/dozent_list.php:17
-#: ../app/views/course/members/autor_list.php:23
-#: ../app/views/course/members/user_list.php:35
-#, php-format
-msgid "Nachricht mit Mailweiterleitung an alle %s versenden"
-msgstr "Send message with mail forwarding to all %s"
-
-#: ../app/views/course/members/tutor_list.php:48
-#: ../app/views/course/members/accepted_list.php:44
-#: ../app/views/course/members/autor_list.php:53
-#: ../app/views/course/members/user_list.php:48
-#: ../app/views/contact/index.php:24
-#, php-format
-msgid "Alle %s auswählen"
-msgstr "Select all %s"
-
-#: ../app/views/course/members/tutor_list.php:85
-#: ../app/views/course/members/accepted_list.php:79
-#: ../app/views/course/members/autor_list.php:90
-#: ../app/views/course/members/user_list.php:85
-#, php-format
-msgid "%s auswählen"
-msgstr "Select %s"
-
-#: ../app/views/course/members/tutor_list.php:124
-#: ../app/views/course/members/accepted_list.php:118
-#: ../app/views/course/members/dozent_list.php:74
-#: ../app/views/course/members/autor_list.php:136
-msgid "Bemerkung hinzufügen"
-msgstr "Add comment"
-
-#: ../app/views/course/members/tutor_list.php:137
-#: ../app/views/course/members/tutor_list.php:148
-#: ../app/views/course/members/accepted_list.php:130
-#: ../app/views/course/members/dozent_list.php:87
-#: ../app/views/course/members/dozent_list.php:98
-#: ../app/views/course/members/awaiting_list.php:110
-#: ../app/views/course/members/autor_list.php:149
-#: ../app/views/course/members/autor_list.php:160
-#: ../app/views/course/members/user_list.php:122
-#: ../app/views/course/members/user_list.php:138
-msgid "Nachricht mit Mailweiterleitung senden"
-msgstr "Send message with mail forwarding"
-
-#: ../app/views/course/members/tutor_list.php:141
-#: ../app/views/course/members/awaiting_list.php:116
-#: ../app/views/course/members/autor_list.php:153
-#: ../app/views/course/members/user_list.php:128
-#, php-format
-msgid "Nachricht mit Weiterleitung an %s senden"
-msgstr "Send message with forwarding to %s"
-
-#: ../app/views/course/members/tutor_list.php:156
-#: ../app/views/course/members/accepted_list.php:144
-#: ../app/views/course/members/dozent_list.php:106
-#: ../app/views/course/members/awaiting_list.php:127
-#: ../app/views/course/members/autor_list.php:168
-#: ../app/views/course/members/user_list.php:147
-#: ../app/views/course/grouping/_perm_level.php:87
-msgid "Aus Veranstaltung austragen"
-msgstr "Sign out of course"
-
-#: ../app/views/course/members/tutor_list.php:160
-#: ../app/views/course/members/accepted_list.php:149
-#: ../app/views/course/members/dozent_list.php:110
-#: ../app/views/course/members/awaiting_list.php:131
-#: ../app/views/course/members/autor_list.php:172
-#: ../app/views/course/members/user_list.php:151
-#: ../app/views/course/grouping/_perm_level.php:91
-#, php-format
-msgid "%s austragen"
-msgstr "sign out %s"
-
-#: ../app/views/course/members/tutor_list.php:173
-#: ../app/views/course/members/accepted_list.php:163
-#: ../app/views/course/members/awaiting_list.php:144
-#: ../app/views/course/members/autor_list.php:193
-#: ../app/views/course/members/user_list.php:164
-#: ../app/views/contact/index.php:109
-msgid "Aktion ausführen"
-msgstr "Execute action"
-
-#: ../app/views/course/members/tutor_list.php:175
-#: ../app/views/course/members/autor_list.php:201
-#, php-format
-msgid "Zu %s herunterstufen"
-msgstr "Demote to %s"
-
-#: ../app/views/course/members/tutor_list.php:177
-#: ../app/views/course/members/accepted_list.php:167
-#: ../app/views/course/members/awaiting_list.php:153
-#: ../app/views/course/members/autor_list.php:217
-#: ../app/views/course/members/user_list.php:177
-#: ../app/views/admin/user/_results.php:229
-msgid "Nachricht senden"
-msgstr "Send message"
-
-#: ../app/views/course/members/tutor_list.php:178
-#: ../app/views/course/members/accepted_list.php:168
-#: ../app/views/course/members/awaiting_list.php:154
-#: ../app/views/course/members/user_list.php:178
-msgid "In Seminar verschieben/kopieren"
-msgstr "Move/Copy to course"
-
-#: ../app/views/course/members/_studycourse.php:18
-msgid "Weitere Studiengänge"
-msgstr "More courses of study"
-
-#: ../app/views/course/members/additional.php:5
-msgid "Zusatzangaben bearbeiten"
-msgstr "Edit additional information"
-
-#: ../app/views/course/members/additional.php:33
-msgid "Keine Zusatzangaben oder Teilnehmende vorhanden."
-msgstr "No additional information or participants."
-
-#: ../app/views/course/members/import_autorlist.php:16
-#, php-format
-msgid ""
-"In das Textfeld <strong>Teilnehmendenliste übernehmen</strong> können Sie "
-"eine Liste mit Namen von %s eingeben,\n"
-"                die in die Veranstaltung aufgenommen werden sollen. Wählen "
-"Sie in der Auswahlbox das gewünschte Format, in dem Sie die Namen eingeben "
-"möchten.<br />\n"
-"                <strong>Eingabeformat</strong><br/>\n"
-"                <strong>Nachname, Vorname &crarr;</strong><br />Geben Sie "
-"dazu in jede Zeile den Nachnamen und (optional) den Vornamen getrennt durch "
-"ein Komma oder ein Tabulatorzeichen ein.<br />\n"
-"                <strong>Nutzername &crarr;</strong><br />Geben Sie dazu in "
-"jede Zeile den Stud.IP Nutzernamen ein.<br />\n"
-"                <strong>Email &crarr;</strong><br />Geben Sie dazu in jede "
-"Zeile die Email Adresse ein."
-msgstr ""
-
-#: ../app/views/course/members/import_autorlist.php:26
-msgid "Email"
-msgstr "E-mail"
-
-#: ../app/views/course/members/accepted_list.php:22
-msgid "vorläufig akzeptierten Nutzer/-innen"
-msgstr "preliminary accepted users"
-
-#: ../app/views/course/members/accepted_list.php:28
-msgid "Vorläufig akzeptierte Teilnehmende"
-msgstr "Preliminary enroled participants"
-
-#: ../app/views/course/members/accepted_list.php:44
-msgid "vorläufig akzeptierten NutzerInnen"
-msgstr "preliminary accepted user"
-
-#: ../app/views/course/members/accepted_list.php:79
-msgid "Vorläufig akzeptierte/n NutzerIn"
-msgstr "Preliminary accepted user"
-
-#: ../app/views/course/members/accepted_list.php:164
-#: ../app/views/course/members/awaiting_list.php:145
-#: ../app/views/course/members/autor_list.php:194
-msgid "Aktion wählen"
-msgstr "Choose action"
-
-#: ../app/views/course/members/accepted_list.php:165
-msgid "Akzeptieren"
-msgstr "Accept"
-
-#: ../app/views/course/members/index.php:13
-msgid "Teilnahmebeschränkte Veranstaltung"
-msgstr "Course with admission quota"
-
-#: ../app/views/course/members/index.php:14
-msgid "max. Teilnehmendenanzahl"
-msgstr "max. number of participants"
-
-#: ../app/views/course/members/index.php:15
-msgid "davon belegt"
-msgstr "thereof taken"
-
-#: ../app/views/course/members/awaiting_list.php:16
-msgid "Nachricht mit Mailweiterleitung an alle Wartenden versenden"
-msgstr "Send message with mail forwarding to all waitlisted"
-
-#: ../app/views/course/members/awaiting_list.php:35
-msgid "NutzerInnen auswählen"
-msgstr "Select users"
-
-#: ../app/views/course/members/awaiting_list.php:77
-msgid "NutzerIn auswählen"
-msgstr "Select user"
-
-#: ../app/views/course/members/awaiting_list.php:147
-#: ../app/views/course/members/awaiting_list.php:150
-#: ../app/views/course/members/autor_list.php:197
-#: ../app/views/course/members/user_list.php:167
-#, php-format
-msgid "Zu %s hochstufen"
-msgstr "Promote to %s"
-
-#: ../app/views/course/members/autor_list.php:184
-#, php-format
-msgid "%u unsichtbare %s"
-msgstr "%u invisible %s"
-
-#: ../app/views/course/members/autor_list.php:205
-#: ../app/views/course/members/user_list.php:170
-msgid "An den Anfang der Warteliste verschieben"
-msgstr "Move to top position of waiting list"
-
-#: ../app/views/course/members/autor_list.php:208
-#: ../app/views/course/members/user_list.php:171
-msgid "Ans Ende der Warteliste verschieben"
-msgstr "Move to lowest position of waiting list"
-
-#: ../app/views/course/members/autor_list.php:214
-#: ../app/views/course/members/user_list.php:175
-msgid "In andere Veranstaltung verschieben/kopieren"
-msgstr "Copy/move to other course"
-
-#: ../app/views/course/members/csv_manual_assignment.php:1
-msgid "Manuelle Zuordnung"
-msgstr "Manual allocation"
-
-#: ../app/views/course/members/csv_manual_assignment.php:11
-#, php-format
-msgid ""
-"Folgende %s konnten <b>nicht eindeutig</b> zugewiesen werden. Bitte wählen "
-"Sie aus der jeweiligen Trefferliste:"
-msgstr ""
-"The following %s could not have been <b>uniquely</b> identified. Please "
-"select from the respective hit list:"
-
-#: ../app/views/course/members/csv_manual_assignment.php:22
-#: ../app/views/course/room_requests/request_start.php:47
-#: ../app/views/userfilter/field/configure.php:26
-msgid "bitte auswählen"
-msgstr "please select"
-
-#: ../app/views/course/plus/index.php:23
-#: ../app/views/admin/sem_classes/details.php:207
-msgid "Inhaltselemente"
-msgstr "Content elements"
-
-#: ../app/views/course/plus/index.php:147
-#: ../app/views/course/plus/index.php:148
-msgid "Inhalte löschen"
-msgstr "Delete contents"
-
-#: ../app/views/course/plus/index.php:266
-#: ../app/views/profile_modules/index.php:79
-msgid "Weitere Informationen:"
-msgstr "Further information:"
-
-#: ../app/views/course/plus/index.php:289
-#: ../app/views/profile_modules/index.php:100
-msgid "An- / Ausschalten"
-msgstr "Enable / disable"
-
-#: ../app/views/course/room_requests/_request_edit_header.php:3
-msgid ""
-"Geben Sie bitte den gewünschten Raum an. Ihre Raumanfrage wird von der "
-"zuständigen Raumvergabe bearbeitet."
-msgstr ""
-"Please enter the selected room. Your room request will be processed by the "
-"responsible room administration."
-
-#: ../app/views/course/room_requests/_request_edit_header.php:4
-msgid ""
-"<strong>Achtung:</strong> Geben Sie bitte immer die notwendige "
-"Sitzplatzanzahl mit an!"
-msgstr ""
-"<strong>Attention:</strong> Please always enter the required amount of seats!"
-
-#: ../app/views/course/room_requests/_request_edit_header.php:8
-msgid ""
-"Geben Sie den gewünschten Raum und/oder Raumeigenschaften an. Ihre "
-"Raumanfrage wird von der zuständigen Raumvergabe bearbeitet."
-msgstr ""
-"Enter the requested room or the requested room properties. Your room request "
-"will be processed by the responsible room administration."
-
-#: ../app/views/course/room_requests/_request_edit_header.php:9
-msgid ""
-"<strong>Achtung:</strong> Um später einen passenden Raum für Ihre "
-"Veranstaltung zu bekommen, geben Sie bitte immer die gewünschten "
-"Eigenschaften mit an!"
-msgstr ""
-"<strong>Attention:</strong> To get a matching room for your course, please "
-"always enter the requested properties!"
-
-#: ../app/views/course/room_requests/request_summary.php:12
-msgid "Ausgewählter Raum"
-msgstr "Selected room"
-
-#: ../app/views/course/room_requests/request_summary.php:34
-msgid "Es wurde kein konkreter Raum ausgewählt!"
-msgstr "No specific room has been selected!"
-
-#: ../app/views/course/room_requests/request_summary.php:37
-msgid "Eigenschaften neu wählen"
-msgstr "Reselect properties"
-
-#: ../app/views/course/room_requests/request_summary.php:54
-msgid "Erwartete Anzahl an Teilnehmenden"
-msgstr "Expected amount of participants"
-
-#: ../app/views/course/room_requests/request_summary.php:72
-#: ../app/views/course/room_requests/request_select_properties.php:44
-msgid ""
-"Benachrichtigung bei Ablehnung der Raumanfrage auch an alle Lehrenden der "
-"Veranstaltung senden"
-msgstr ""
-"Also notify all lecturers of the course on cancellation of the room request"
-
-#: ../app/views/course/room_requests/request_summary.php:79
-#: ../app/views/course/room_requests/request_select_properties.php:50
-msgid "Nachricht an die Raumvergabe"
-msgstr "Message to the room administration"
-
-#: ../app/views/course/room_requests/request_summary.php:81
-#: ../app/views/course/room_requests/request_select_properties.php:52
-msgid "Weitere Wünsche oder Bemerkungen zur angefragten Raumbelegung"
-msgstr "Additional requests or comments for the requested room booking"
-
-#: ../app/views/course/room_requests/request_summary.php:91
-msgid "Speichern und zurück zur Übersicht"
-msgstr "Save and back to overview"
-
-#: ../app/views/course/room_requests/new.php:10
-msgid "Art der Raumanfrage:"
-msgstr "Type of room request:"
-
-#: ../app/views/course/room_requests/new.php:24
-msgid ""
-"In dieser Veranstaltung können keine weiteren Raumanfragen gestellt werden."
-msgstr "No further room requests can be made in this course."
-
-#: ../app/views/course/room_requests/index.php:8
-msgid "Vorhandene Raumanfragen"
-msgstr "Existing room requests"
-
-#: ../app/views/course/room_requests/index.php:19
-msgid "Anfragender"
-msgstr "Requester"
-
-#: ../app/views/course/room_requests/index.php:57
-#: ../app/views/course/room_requests/index.php:62
-msgid "Diese Anfrage bearbeiten"
-msgstr "Resolve request"
-
-#: ../app/views/course/room_requests/index.php:97
-#: ../app/views/course/room_requests/index.php:102
-msgid "Diese Anfrage selbst auflösen"
-msgstr "Resolve request yourself"
-
-#: ../app/views/course/room_requests/index.php:110
-#: ../app/views/course/room_requests/index.php:115
-msgid "Diese Anfrage löschen"
-msgstr ""
-
-#: ../app/views/course/room_requests/index.php:133
-msgid "Zu dieser Veranstaltung sind noch keine Raumanfragen vorhanden."
-msgstr "Now room requests exist for this course yet."
-
-#: ../app/views/course/room_requests/_request_form_footer.php:7
-msgid "Startet die Suche von Räumen anhand der gewählten Eigenschaften."
-msgstr "Starts the search for rooms by the selected properties."
-
-#: ../app/views/course/room_requests/_request_form_footer.php:18
-msgid "Eigenschaften wählen"
-msgstr "Select properties"
-
-#: ../app/views/course/room_requests/request_start.php:17
-msgid "Raum suchen"
-msgstr "Find room"
-
-#: ../app/views/course/room_requests/request_start.php:30
-#: ../app/views/course/room_requests/request_start.php:58
-msgid "alle Angaben zurücksetzen"
-msgstr "reset all entries"
-
-#: ../app/views/course/room_requests/request_start.php:42
-msgid "Wünschbare Eigenschaften"
-msgstr "Requestable properties"
-
-#: ../app/views/course/room_requests/request_start.php:67
-#: ../app/views/course/room_requests/request_start.php:72
-msgid "Raumtyp auswählen"
-msgstr "Select type of room"
-
-#: ../app/views/course/room_requests/request_select_room.php:29
-msgid "Passende Räume"
-msgstr "Matching rooms"
-
-#: ../app/views/course/room_requests/request_select_room.php:64
-msgid "Es wurden keine passenden Räume gefunden!"
-msgstr "No matching rooms found!"
-
-#: ../app/views/course/details/index.php:29
-#: ../app/views/admin/ilias_interface/edit_content.php:70
-msgid "Veranstaltungsname"
-msgstr "Course name"
-
-#: ../app/views/course/details/index.php:56
-msgid "Aktuelle Anzahl der Teilnehmenden"
-msgstr "Current number of participants"
-
-#: ../app/views/course/details/index.php:65
-msgid "maximale Teilnehmendenanzahl"
-msgstr "maximum number of participants"
-
-#: ../app/views/course/details/index.php:67
-msgid "erwartete Teilnehmendenanzahl"
-msgstr "expected number of participants"
-
-#: ../app/views/course/details/index.php:77
-msgid "Wartelisteneinträge"
-msgstr "Entries on waiting list"
-
-#: ../app/views/course/details/index.php:110
-#, php-format
-msgid "%s in der Kategorie %s"
-msgstr "%s in category %s"
-
-#: ../app/views/course/details/index.php:115
-msgid "Hauptveranstaltung"
-msgstr "Main course"
-
-#: ../app/views/course/details/index.php:117
-msgid "Diese Veranstaltung gehört zu einer Hauptveranstaltung"
-msgstr "This course belongs to a main course"
-
-#: ../app/views/course/details/index.php:126
-msgid "Ebenfalls zu dieser Hauptveranstaltung gehören:"
-msgstr "Also belonging to this main course:"
-
-#: ../app/views/course/details/index.php:145
-msgid "Dies ist eine Hauptveranstaltung mit folgenden Unterveranstaltungen:"
-msgstr "This is a main course with the following sub-courses:"
-
-#: ../app/views/course/details/index.php:183
-msgid "Art/Form"
-msgstr "Type/Form"
-
-#: ../app/views/course/details/index.php:313
-#: ../app/views/calendar/schedule/_entry_course.php:47
-msgid "Veranstaltungszeiten"
-msgstr "Course dates"
-
-#: ../app/views/course/details/index.php:326
-msgid "Studienmodule"
-msgstr "Study modules"
-
-#: ../app/views/course/details/index.php:390
-#: ../app/views/course/details/index.php:406
-msgid "Modulzuordnungen"
-msgstr "Module assignments"
-
-#: ../app/views/course/details/index.php:425
-msgid "Kommentar/Beschreibung"
-msgstr "Comment/Description"
-
-#: ../app/views/course/details/index.php:456
-msgid ""
-"Die Auswahl der Teilnehmenden wird nach der Eintragung manuell vorgenommen."
-msgstr "After enrolment, participants will manually be selected."
-
-#: ../app/views/course/details/index.php:461
-msgid ""
-"Nutzer/-innen, die sich für diese Veranstaltung eintragen möchten,\n"
-"                    erhalten nähere Hinweise und können sich dann noch gegen "
-"eine Teilnahme entscheiden."
-msgstr ""
-"Potential participants are given additional information before enroling to "
-"the course."
-
-#: ../app/views/course/details/index.php:478
-msgid "Zugelassenene Nutzerdomänen:"
-msgstr "Admissible user domains:"
-
-#: ../app/views/course/lvgselector/entry_trails.php:9
-msgid "Keine Module in den Semestern der Veranstaltung verfügbar."
-msgstr "No modules are available in the semesters of the course."
-
-#: ../app/views/course/lvgselector/form.php:13
-#: ../app/views/course/lvgselector/locked_form.php:10
-msgid "Bestehende Zuordnungen:"
-msgstr "Existing allocations:"
-
-#: ../app/views/course/lvgselector/form.php:16
-#: ../app/views/course/lvgselector/form.php:18
-#: ../app/views/course/lvgselector/locked_form.php:12
-#: ../app/views/course/lvgselector/locked_form.php:14
-msgid "Bisher wurde noch keine Zuordnung vorgenommen"
-msgstr "No allocation has been made yet"
-
-#: ../app/views/course/lvgselector/form.php:22
-msgid ""
-"Sie können diesen Studienbereich nicht löschen, da eine Veranstaltung immer "
-"mindestens einem Studienbereich zugeordnet sein muss."
-msgstr ""
-"You cannot delete this field of study because a course must always be "
-"allocated to at least one field of study."
-
-#: ../app/views/course/lvgselector/form.php:34
-msgid "Suche:"
-msgstr "Search:"
-
-#: ../app/views/course/lvgselector/form.php:48
-#, php-format
-msgid "Der Suchbegriff '%s' lieferte kein Ergebnis."
-msgstr "No result matching the search string '%s'."
-
-#: ../app/views/course/lvgselector/tree.php:16
-msgid "Alle Unterebenen einblenden"
-msgstr "Display all sub-levels"
-
-#: ../app/views/course/lvgselector/locked_form.php:6
-msgid "Sie dürfen die Modulzuordnung dieser Veranstaltung nicht verändern."
-msgstr "You are not allowed to change the module assignment of this course."
-
-#: ../app/views/course/lvgselector/locked_form.php:7
-msgid ""
-"Diese Sperrung ist von einer Administratorin oder einem Administrator "
-"vorgenommen worden."
-msgstr "This lock has been set by an administrator."
-
-#: ../app/views/course/lvgselector/entry.php:12
-#: ../app/views/course/lvgselector/entry.php:13
-msgid "Diese LV-Gruppe zuordnen"
-msgstr "Assign this course group"
-
-#: ../app/views/course/lvgselector/selected_entry.php:6
-msgid "Zuordnung entfernen"
-msgstr "Remove assignment"
-
-#: ../app/views/course/lvgselector/selected_entry.php:15
-msgid "Alle Zuordnungen anzeigen"
-msgstr "Show all assignments"
-
-#: ../app/views/course/statusgroups/_move_members.php:4
-#, php-format
-msgid "In welche Gruppe soll die gewählte Person verschoben werden?"
-msgid_plural ""
-"In welche Gruppe sollen die %u gewählten Personen verschoben werden?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/course/statusgroups/_member.php:5
-msgid "Mitglieder auswählen"
-msgstr "Select members"
-
-#: ../app/views/course/statusgroups/_member.php:44
-#: ../app/views/course/statusgroups/_group.php:73
-#: ../app/views/course/grouping/members.php:27
-#: ../app/views/course/grouping/members.php:28
-#: ../app/views/course/grouping/_perm_level.php:12
-#: ../app/views/course/grouping/_perm_level.php:13
-#: ../app/views/course/grouping/_perm_level.php:70
-#: ../app/views/course/grouping/_perm_level.php:71
-#: ../app/views/course/grouping/_perm_level.php:118
-msgid "Nachricht schicken"
-msgstr "Send message"
-
-#: ../app/views/course/statusgroups/_member.php:46
-#, php-format
-msgid "Nachricht an %s schicken"
-msgstr "Send message to %s"
-
-#: ../app/views/course/statusgroups/_member.php:54
-msgid "In eine andere Gruppe verschieben"
-msgstr "Move into another group"
-
-#: ../app/views/course/statusgroups/_member.php:57
-#, php-format
-msgid "%s in eine andere Gruppe verschieben"
-msgstr "Move %s into another group"
-
-#: ../app/views/course/statusgroups/_member.php:70
-#, php-format
-msgid "%s aus Gruppe %s entfernen"
-msgstr "Remove %s from group %s"
-
-#: ../app/views/course/statusgroups/_member.php:76
-#, php-format
-msgid "Soll %s wirklich aus der Gruppe %s entfernt werden?"
-msgstr "Do you really want to remove %s from group %s?"
-
-#: ../app/views/course/statusgroups/_edit_groups_size.php:5
-#: ../app/views/course/statusgroups/create_groups.php:97
-#: ../app/views/course/statusgroups/edit.php:15
-msgid "Gruppengröße"
-msgstr "Group size"
-
-#: ../app/views/course/statusgroups/_edit_groups_size.php:7
-#: ../app/views/course/statusgroups/_edit_groups_selfassign.php:5
-#: ../app/views/course/statusgroups/_edit_groups_selfassign.php:11
-#: ../app/views/course/statusgroups/_edit_groups_selfassign.php:18
-#: ../app/views/course/statusgroups/_edit_groups_selfassign.php:25
-msgid "verschiedene Werte"
-msgstr "different values"
-
-#: ../app/views/course/statusgroups/groupinfo.php:2
-#: ../app/views/course/statusgroups/_group.php:24
-#, php-format
-msgid "Informationen zu %s"
-msgstr "Information about %s"
-
-#: ../app/views/course/statusgroups/groupinfo.php:7
-#, php-format
-msgid "Diese Gruppe ist auf **%u** Mitglieder beschränkt."
-msgstr "This group is limited to **%u** members."
-
-#: ../app/views/course/statusgroups/groupinfo.php:8
-msgid "Die Größe dieser Gruppe ist **nicht beschränkt**."
-msgstr "The size of this group is **unlimited**."
-
-#: ../app/views/course/statusgroups/groupinfo.php:14
-msgid ""
-"Die Teilnehmenden dieser Veranstaltung können sich selbst in beliebig viele "
-"der Gruppen eintragen, bei denen kein Exklusiveintrag aktiviert ist."
-msgstr ""
-"The participants of this course can enrol themselves into any group where "
-"exclusive enrolment isn't activated."
-
-#: ../app/views/course/statusgroups/groupinfo.php:20
-msgid ""
-"Die Teilnehmenden dieser Veranstaltung können sich in genau einer der "
-"Gruppen eintragen, bei denen der Exklusiveintrag aktiviert ist."
-msgstr ""
-"The participants of this course can enrol themselves in exactly one of those "
-"groups where exclusive enrolment is activated."
-
-#: ../app/views/course/statusgroups/groupinfo.php:27
-#, php-format
-msgid "Der Eintrag ist möglich **von %s bis %s**."
-msgstr "Enrolment is possible **from %s until %s**."
-
-#: ../app/views/course/statusgroups/groupinfo.php:33
-#, php-format
-msgid "Der Eintrag ist möglich **ab %s**."
-msgstr "Enrolment is possible **from %s**."
-
-#: ../app/views/course/statusgroups/groupinfo.php:38
-#, php-format
-msgid "Der Eintrag ist möglich **bis %s**."
-msgstr "Enrolment is possible **until %s**."
-
-#: ../app/views/course/statusgroups/groupinfo.php:46
-#, php-format
-msgid "Zu dieser Gruppe gehört ein [Dateiordner]%s ."
-msgstr "[Folder]%s belongs to this group ."
-
-#: ../app/views/course/statusgroups/groupinfo.php:55
-#, php-format
-msgid "Zu dieser Gruppe gehört ein [Blubberthread]%s ."
-msgstr "[Blubber thread]%s belongs to this group ."
-
-#: ../app/views/course/statusgroups/groupinfo.php:64
-msgid "Zugeordnete Termine:"
-msgstr "Assigned dates:"
-
-#: ../app/views/course/statusgroups/groupinfo.php:77
-msgid "Zugeordnete Themen:"
-msgstr "Assigned topics:"
-
-#: ../app/views/course/statusgroups/groupinfo.php:88
-#, php-format
-msgid "Zugeordnete %s:"
-msgstr "Assigned %s:"
-
-#: ../app/views/course/statusgroups/_edit_groups_selfassign.php:4
-#: ../app/views/course/statusgroups/edit.php:38
-msgid "Selbsteintrag erlaubt"
-msgstr "Self-entry allowed"
-
-#: ../app/views/course/statusgroups/_edit_groups_selfassign.php:10
-#: ../app/views/course/statusgroups/edit.php:43
-msgid "Exklusiver Selbsteintrag (in nur eine Gruppe)"
-msgstr "Exclusive self-entry (only in one group)"
-
-#: ../app/views/course/statusgroups/_edit_groups_selfassign.php:15
-#: ../app/views/course/statusgroups/create_groups.php:121
-#: ../app/views/course/statusgroups/edit.php:47
-msgid "Selbsteintrag erlaubt ab"
-msgstr "Self-entry allowed from"
-
-#: ../app/views/course/statusgroups/_edit_groups_selfassign.php:22
-#: ../app/views/course/statusgroups/create_groups.php:128
-#: ../app/views/course/statusgroups/edit.php:53
-msgid "Selbsteintrag erlaubt bis"
-msgstr "Self-entry allowed until"
-
-#: ../app/views/course/statusgroups/create_groups.php:7
-msgid "Wie sollen Gruppen angelegt werden?"
-msgstr "How shall groups be created?"
-
-#: ../app/views/course/statusgroups/create_groups.php:13
-msgid "Erzeuge beliebig viele Gruppen mit Namenspräfix"
-msgstr "Create an arbitrary amount of groups with name prefix"
-
-#: ../app/views/course/statusgroups/create_groups.php:18
-msgid "Lege Gruppen zu bestehenden Veranstaltungsdaten an"
-msgstr "Create groups for existing course data"
-
-#: ../app/views/course/statusgroups/create_groups.php:25
-msgid "Lege folgende Gruppen an"
-msgstr "Create the following groups"
-
-#: ../app/views/course/statusgroups/create_groups.php:30
-msgid "Anzahl anzulegender Gruppen"
-msgstr "Number of groups to be created"
-
-#: ../app/views/course/statusgroups/create_groups.php:38
-msgid "Numerische Nummerierung"
-msgstr "Numerical numbering"
-
-#: ../app/views/course/statusgroups/create_groups.php:42
-msgid "Alphabetische Nummerierung"
-msgstr "Alphabetic numbering"
-
-#: ../app/views/course/statusgroups/create_groups.php:47
-msgid "Beginne Nummerierung bei"
-msgstr "Start numbering at"
-
-#: ../app/views/course/statusgroups/create_groups.php:54
-msgid "Namenspräfix"
-msgstr "Name prefix"
-
-#: ../app/views/course/statusgroups/create_groups.php:63
-msgid "Lege eine Gruppe pro Thema vom Typ \"Hausarbeit/Referat\" an"
-msgstr "Create one group of type \"Homework/Presentation\" for each topic"
-
-#: ../app/views/course/statusgroups/create_groups.php:71
-msgid "Lege eine Gruppe pro Thema an"
-msgstr "Add one group per topic"
-
-#: ../app/views/course/statusgroups/create_groups.php:79
-msgid "Lege eine Gruppe pro regelmäßiger Zeit/Einzeltermin an"
-msgstr "Create one group per periodic date/single date"
-
-#: ../app/views/course/statusgroups/create_groups.php:86
-msgid "Lege eine Gruppe pro Lehrendem an"
-msgstr "Creates one group per lecturer"
-
-#: ../app/views/course/statusgroups/create_groups.php:93
-msgid "Voreinstellungen für alle anzulegenden Gruppen"
-msgstr "Default settings for all groups"
-
-#: ../app/views/course/statusgroups/create_groups.php:110
-#: ../app/views/admin/statusgroups/editGroup.php:46
-msgid "Selbsteintrag"
-msgstr "Self entry"
-
-#: ../app/views/course/statusgroups/create_groups.php:116
-msgid "Selbsteintrag in nur eine Gruppe"
-msgstr "Self-entry in one group"
-
-#: ../app/views/course/statusgroups/_group.php:8
-msgid "Gruppe auswählen"
-msgstr "Select group"
-
-#: ../app/views/course/statusgroups/_group.php:36
-#: ../app/views/course/statusgroups/_group.php:76
-#, php-format
-msgid "Nachricht an alle Mitglieder der Gruppe %s schicken"
-msgstr "Send a message to all members of group %s"
-
-#: ../app/views/course/statusgroups/_group.php:46
-#, php-format
-msgid "Mitglied von Gruppe %s werden"
-msgstr "Become a member of group %s"
-
-#: ../app/views/course/statusgroups/_group.php:51
-#, php-format
-msgid "Der Eintrag in diese Gruppe ist möglich ab %s."
-msgstr "Entering this group is possible from %s."
-
-#: ../app/views/course/statusgroups/_group.php:56
-#, php-format
-msgid "Der Eintrag in diese Gruppe war möglich bis %s."
-msgstr "Entering this group was possible until %s."
-
-#: ../app/views/course/statusgroups/_group.php:59
-#: ../app/views/course/statusgroups/_group.php:61
-#, php-format
-msgid "Aus Gruppe %s austragen"
-msgstr "Sign out of group %s"
-
-#: ../app/views/course/statusgroups/_group.php:85
-#, php-format
-msgid "Personen zu Gruppe %s hinzufügen"
-msgstr "Add persons to group \"%s\""
-
-#: ../app/views/course/statusgroups/_group.php:94
-msgid "Veranstaltungsteilnehmende"
-msgstr "Participants"
-
-#: ../app/views/course/statusgroups/_group.php:96
-msgid "Teilnehmende ohne Gruppenzuordnung"
-msgstr "Participants without group assignment"
-
-#: ../app/views/course/statusgroups/_group.php:105
-#, php-format
-msgid "Gruppe %s bearbeiten"
-msgstr "Edit group %s"
-
-#: ../app/views/course/statusgroups/_group.php:116
-#, php-format
-msgid "Gruppe %s löschen"
-msgstr "Delete group %s"
-
-#: ../app/views/course/statusgroups/_group.php:120
-msgid "Soll die Gruppe wirklich gelöscht werden?"
-msgstr "Do you really want to delete the group?"
-
-#: ../app/views/course/statusgroups/_group.php:129
-msgid "Nachricht an alle nicht zugeordneten Personen schicken"
-msgstr "Send a message to all persons not assigned to a group"
-
-#: ../app/views/course/statusgroups/_askdelete_groups.php:4
-msgid "Soll die folgende Gruppe wirklich gelöscht werden?"
-msgid_plural "Sollen die folgenden Gruppen wirklich gelöscht werden?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/course/statusgroups/getgroup.php:27
-#: ../app/views/course/statusgroups/getgroup.php:83
-#: ../app/views/course/statusgroups/getgroup.php:87
-#, php-format
-msgid "Alle Mitglieder dieser Gruppe auswählen"
-msgstr "Select all members of this group"
-
-#: ../app/views/course/statusgroups/getgroup.php:94
-msgid "In andere Gruppe verschieben"
-msgstr "Move into another group"
-
-#: ../app/views/course/statusgroups/getgroup.php:95
-msgid "In andere Gruppe kopieren"
-msgstr ""
-
-#: ../app/views/course/statusgroups/getgroup.php:97
-msgid "Aus dieser Gruppe entfernen"
-msgstr "Remove from this group"
-
-#: ../app/views/course/statusgroups/getgroup.php:113
-#, php-format
-msgid "+ %u unsichtbare Personen"
-msgstr "+ %u invisible persons"
-
-#: ../app/views/course/statusgroups/getgroup.php:123
-#, php-format
-msgid "Diese Gruppe hat %d unsichtbares Mitglied."
-msgid_plural "Diese Gruppe hat %d unsichtbare Mitglieder."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/course/statusgroups/getgroup.php:132
-msgid "Diese Gruppe hat keine Mitglieder."
-msgstr "This group has no members."
-
-#: ../app/views/course/statusgroups/index.php:4
-msgid "Teilnehmende nach Gruppen"
-msgstr "Participants, sorted by group"
-
-#: ../app/views/course/statusgroups/index.php:23
-#: ../app/views/course/statusgroups/index.php:27
-#, php-format
-msgid "Alle Gruppen auswählen"
-msgstr "Select all groups"
-
-#: ../app/views/course/statusgroups/joinables.php:4
-msgid "Welcher Gruppe möchten Sie beitreten?"
-msgstr "Which group do you want to join?"
-
-#: ../app/views/course/statusgroups/joinables.php:14
-msgid "Beitreten"
-msgstr "Join"
-
-#: ../app/views/course/statusgroups/_copy_members.php:4
-#, php-format
-msgid "In welche Gruppe soll die gewählte Person kopiert werden?"
-msgid_plural ""
-"In welche Gruppe sollen die %u gewählten Personen kopiert werden?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/course/statusgroups/_askcancel_members.php:3
-#, php-format
-msgid "Soll %u Person wirklich aus %s ausgetragen werden?"
-msgid_plural "Sollen %u Personen wirklich aus %s ausgetragen werden?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/course/statusgroups/edit.php:27
-msgid "Zu dieser Gruppe gehört ein Dateiordner."
-msgstr "A folder belongs to this group."
-
-#: ../app/views/course/statusgroups/edit.php:33
-msgid "Blubber in der Gruppe erlauben"
-msgstr "Allow Blubber in the group"
-
-#: ../app/views/course/statusgroups/edit.php:60
-msgid "Zuordnung von Terminen"
-msgstr "Date assignment"
-
-#: ../app/views/course/statusgroups/edit.php:66
-msgid "Regelmäßige Zeiten"
-msgstr "Regular times"
-
-#: ../app/views/course/statusgroups/edit.php:104
-msgid "Diese Veranstaltung hat keine Termine."
-msgstr "This course has no dates."
-
-#: ../app/views/course/statusgroups/_askdelete_members.php:4
-#, php-format
-msgid "Soll %u Person wirklich aus %s entfernt werden?"
-msgid_plural "Sollen %u Personen wirklich aus %s entfernt werden?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/course/grouping/create_children.php:4
-msgid "Anlegen von mehreren Unterveranstaltungen"
-msgstr "Create several sub-courses"
-
-#: ../app/views/course/grouping/create_children.php:9
-msgid "Anzahl anzulegender Veranstaltungen"
-msgstr "Amount of courses to be created"
-
-#: ../app/views/course/grouping/create_children.php:16
-msgid "Nummerierung/Kennzeichnung anhängen an"
-msgstr "Append marker to"
-
-#: ../app/views/course/grouping/create_children.php:30
-msgid "Nummerierung/Kennzeichnung durch"
-msgstr "Marking by"
-
-#: ../app/views/course/grouping/create_children.php:34
-msgid "Zahlen (1, 2, 3, ...)"
-msgstr "Numbers (1, 2, 3, ...)"
-
-#: ../app/views/course/grouping/create_children.php:38
-msgid "Buchstaben (A, B, C, ...)"
-msgstr "Letters (A, B, C, ...)"
-
-#: ../app/views/course/grouping/create_children.php:45
-msgid "Weiter zum Anlegeassistenten"
-msgstr "Continue to creation assistant"
-
-#: ../app/views/course/grouping/members.php:49
-msgid "In keiner Unterveranstaltung"
-msgstr "In no sub-course"
-
-#: ../app/views/course/grouping/members.php:62
-msgid "Alle Veranstaltungen auswählen"
-msgstr "Select all courses"
-
-#: ../app/views/course/grouping/members.php:71
-msgid "Vertretung/en eintragen"
-msgstr "Enter substitute(s)"
-
-#: ../app/views/course/grouping/children.php:4
-msgid "Bereits zugeordnet"
-msgstr "Already assigned"
-
-#: ../app/views/course/grouping/children.php:15
-msgid "Wollen Sie die Zuordnung dieser Unterveranstaltung wirklich entfernen?"
-msgstr "Do you really want to remove the assignment of this sub-course?"
-
-#: ../app/views/course/grouping/children.php:23
-msgid "Diese Veranstaltung hat keine Unterveranstaltungen."
-msgstr "This course does not have sub-courses."
-
-#: ../app/views/course/grouping/children.php:30
-msgid "Unterveranstaltung hinzufügen"
-msgstr "Add sub-course"
-
-#: ../app/views/course/grouping/children.php:37
-msgid "Unterveranstaltung zuordnen"
-msgstr "Assign sub-course"
-
-#: ../app/views/course/grouping/move_members_target.php:5
-msgid "Wohin sollen die gewählten Personen verschoben werden?"
-msgstr "Where shall the selected persons be moved?"
-
-#: ../app/views/course/grouping/parent.php:4
-#: ../app/views/course/grouping/parent.php:28
-msgid "Veranstaltung zuordnen"
-msgstr "Assign course"
-
-#: ../app/views/course/grouping/parent.php:8
-#, php-format
-msgid "Diese Veranstaltung gehört zur Hauptveranstaltung %s%s%s."
-msgstr "This course belongs to the main course %s%s%s."
-
-#: ../app/views/course/grouping/parent.php:31
-msgid "Diese Veranstaltung ist noch keiner Hauptveranstaltung zugeordnet."
-msgstr "This course is not yet assigned to a main course."
-
-#: ../app/views/course/grouping/_perm_level.php:81
-#: ../app/views/course/grouping/_perm_level.php:82
-#: ../app/views/course/grouping/_perm_level.php:121
-msgid "In andere Unterveranstaltung verschieben"
-msgstr "Move to other sub-course"
-
-#: ../app/views/course/lti/iframe.php:13 ../app/views/course/lti/index.php:62
-msgid "Anwendung starten"
-msgstr "Start application"
-
-#: ../app/views/course/lti/config.php:10
-msgid "Titel des Reiters"
-msgstr "Tab title"
-
-#: ../app/views/course/lti/add_link.php:3 ../app/views/course/lti/edit.php:21
-msgid "Auswahl des externen Tools"
-msgstr "External tool selection"
-
-#: ../app/views/course/lti/add_link.php:12
-msgid "Tool auswählen"
-msgstr "Select tools"
-
-#: ../app/views/course/lti/index.php:2
-msgid "Es wurden noch keine Inhalte angelegt."
-msgstr "No contents have yet been added."
-
-#: ../app/views/course/lti/index.php:34
-msgid "Abschnitt bearbeiten"
-msgstr "Edit section"
-
-#: ../app/views/course/lti/index.php:39
-msgid "Abschnitt löschen"
-msgstr "Delete section"
-
-#: ../app/views/course/lti/index.php:40
-#, php-format
-msgid "Wollen Sie wirklich den Abschnitt \"%s\" löschen?"
-msgstr "Do you really want to delete the section \"%s\"?"
-
-#: ../app/views/course/lti/edit.php:30
-msgid "Zugangsdaten selbst eingeben..."
-msgstr "Manually enter credentials..."
-
-#: ../app/views/course/lti/edit.php:36
-msgid "URL der Anwendung (optional)"
-msgstr "Application URL (optional)"
-
-#: ../app/views/course/lti/edit.php:37
-msgid "Sie können direkt auf eine URL in der Anwendung verlinken."
-msgstr "You can link directly to an URL in the application."
-
-#: ../app/views/course/lti/edit.php:44 ../app/views/admin/lti/index.php:18
-#: ../app/views/admin/lti/edit.php:17
-msgid "URL der Anwendung"
-msgstr "Application URL"
-
-#: ../app/views/course/lti/edit.php:45
-msgid ""
-"Die Betreiber dieses Tools müssen Ihnen eine URL und Zugangsdaten (Consumer-"
-"Key und Consumer-Secret) mitteilen."
-msgstr ""
-"The operators of this tool must provide you with an URL and credentials "
-"(consumer key and consumer secret)."
-
-#: ../app/views/course/lti/edit.php:50
-msgid "Consumer-Key des LTI-Tools"
-msgstr "LTI tool consumer key"
-
-#: ../app/views/course/lti/edit.php:55
-msgid "Consumer-Secret des LTI-Tools"
-msgstr "LTI tool consumer secret"
-
-#: ../app/views/course/lti/edit.php:60
-msgid "OAuth Signatur Methode des LTI-Tools"
-msgstr ""
-
-#: ../app/views/course/lti/edit.php:69 ../app/views/admin/lti/edit.php:56
-msgid "Nutzerdaten an LTI-Tool senden"
-msgstr "Send user data to LTI tool"
-
-#: ../app/views/course/lti/edit.php:70 ../app/views/admin/lti/edit.php:57
-msgid ""
-"Nutzerdaten dürfen nur an das externe Tool gesendet werden, wenn es keine "
-"Datenschutzbedenken gibt. Mit Setzen des Hakens bestätigen Sie, dass die "
-"Übermittlung der Daten zulässig ist."
-msgstr ""
-"User data can only be sent to the external tool if no privacy concerns "
-"exist. By setting the checkbox you confirm that data transfer is permitted."
-
-#: ../app/views/course/lti/edit.php:76
-msgid "Anzeige im IFRAME auf der Seite"
-msgstr "Display in an IFRAME on the page"
-
-#: ../app/views/course/lti/edit.php:77
-msgid ""
-"Normalerweise wird das externe Tool in einem neuen Fenster angezeigt. "
-"Aktivieren Sie diese Option, wenn die Anzeige stattdessen in einem IFRAME "
-"erfolgen soll."
-msgstr ""
-"Usually, the external tool will be displayed in a new window. Activate this "
-"option, if it shall be displayed in an IFRAME instead."
-
-#: ../app/views/course/lti/edit.php:81 ../app/views/admin/lti/edit.php:61
-msgid "Zusätzliche LTI-Parameter"
-msgstr "Additional LTI parameters"
-
-#: ../app/views/course/lti/edit.php:82 ../app/views/admin/lti/edit.php:62
-msgid "Ein Wert pro Zeile, Beispiel: Review:Chapter=1.2.56"
-msgstr "One value per line, example: Review:Chapter=1.2.56"
-
-#: ../app/views/course/feedback/_new_edit_feedback_form.php:3
-msgid "Grundeigenschaften"
-msgstr "Basic properties"
-
-#: ../app/views/course/feedback/_new_edit_feedback_form.php:6
-#: ../app/views/course/feedback/index.php:26
-msgid "Fragestellung"
-msgstr "Question"
-
-#: ../app/views/course/feedback/_new_edit_feedback_form.php:13
-#: ../app/views/file/new_edit_folder_form.php:11
-#: ../app/views/file/edit_license.php:11 ../app/views/file/edit.php:19
-#: ../app/views/file/edit_urlfile.php:40
-msgid "Optionale Beschreibung"
-msgstr "Optional description"
-
-#: ../app/views/course/feedback/_new_edit_feedback_form.php:17
-msgid "Feedback Ergebnisse nach Antwort sichtbar"
-msgstr "Feedback results visible after answer"
-
-#: ../app/views/course/feedback/_new_edit_feedback_form.php:23
-msgid "Abgegebenes Feedback kann einen Kommentar beinhalten"
-msgstr "Submitted feedback may include a comment"
-
-#: ../app/views/course/feedback/_new_edit_feedback_form.php:29
-msgid "Nur Kommentare (keine numerische Bewertung)"
-msgstr "Comment only (no numerical rating)"
-
-#: ../app/views/course/feedback/_new_edit_feedback_form.php:34
-msgid "Bewertungsmodus"
-msgstr "Rating mode"
-
-#: ../app/views/course/feedback/_new_edit_feedback_form.php:39
-msgid "Sternbewertung von 1 bis 5"
-msgstr "Star rating from 1 to 5"
-
-#: ../app/views/course/feedback/_new_edit_feedback_form.php:44
-msgid "Sternbewertung von 1 bis 10"
-msgstr "Star rating from 1 to 10"
-
-#: ../app/views/course/feedback/_feedback.php:12
-msgid "Mein Feedback"
-msgstr "My feedback"
-
-#: ../app/views/course/feedback/_feedback.php:28
-msgid "Andere Einträge"
-msgstr "Other entries"
-
-#: ../app/views/course/feedback/_feedback.php:30
-#: ../app/views/course/feedback/index.php:32
-#: ../app/views/admin/datafields/index.php:36
-msgid "Einträge"
-msgstr "Entries"
-
-#: ../app/views/course/feedback/_feedback.php:44
-msgid "Feedback geben"
-msgstr "Give feedback"
-
-#: ../app/views/course/feedback/entry_edit_form.php:4
-msgid "Feedback bearbeiten"
-msgstr "Edit feedback"
-
-#: ../app/views/course/feedback/config.php:4
-msgid "Wer darf neue Feedback-Elemente anlegen?"
-msgstr "Who may create new feedback elements?"
-
-#: ../app/views/course/feedback/config.php:10
-#: ../app/views/course/feedback/config.php:23
-msgid "Tutoren"
-msgstr "Tutors"
-
-#: ../app/views/course/feedback/config.php:12
-#: ../app/views/course/feedback/config.php:26
-msgid "Dozierende"
-msgstr "Lecturers"
-
-#: ../app/views/course/feedback/config.php:17
-msgid "Wer darf Feedback-Elemente und Einträge verwalten?"
-msgstr "Who may manage feedback elements and entries?"
-
-#: ../app/views/course/feedback/_results.php:5
-msgid "Bisher wurde kein Feedback gegeben."
-msgstr "No feedback has been given yet."
-
-#: ../app/views/course/feedback/_results.php:8
-#, php-format
-msgid "Insgesamt wurde %s mal Feedback gegeben."
-msgstr "Overall, feedback was given %s times."
-
-#: ../app/views/course/feedback/_results.php:52
-msgid "Durchschnitt: "
-msgstr "Average:"
-
-#: ../app/views/course/feedback/_entry.php:20
-msgid "Feedback löschen?"
-msgstr "Delete feedback?"
-
-#: ../app/views/course/feedback/_entry.php:43
-msgid "Bearbeitet:"
-msgstr "Edited:"
-
-#: ../app/views/course/feedback/index.php:2
-msgid "Es wurden noch Feedback-Elemente angelegt."
-msgstr "Feedback elements have been created."
-
-#: ../app/views/course/feedback/index.php:7
-msgid "Feedback-Elemente"
-msgstr "Feedback elements"
-
-#: ../app/views/course/feedback/index.php:23
-msgid "Kontext"
-msgstr "Context"
-
-#: ../app/views/course/feedback/index.php:29
-#: ../app/views/admin/ilias_interface/soap_methods.php:4
-msgid "Ergebnis"
-msgstr "Result"
-
-#: ../app/views/course/feedback/index.php:62
-msgid ""
-"Das Feedback-Element wurde von Ihnen erstellt, daher können Sie kein "
-"Feedback abgeben"
-msgstr ""
-"The feedback element has been created by you, therefore you cannot give "
-"feedback"
-
-#: ../app/views/course/feedback/index.php:64
-#: ../app/views/course/feedback/_feedback_stream.php:15
-msgid "Bereits Feedback gegeben"
-msgstr "Already gave feedback"
-
-#: ../app/views/course/feedback/index.php:99
-msgid "Feedback-Element bearbeiten"
-msgstr "Edit feedback element"
-
-#: ../app/views/course/feedback/index.php:105
-msgid "Feedback-Element löschen"
-msgstr "Delete feedback element"
-
-#: ../app/views/course/feedback/index.php:107
-#: ../app/views/course/feedback/_feedback_stream.php:27
-msgid "Feedback-Element und dazugehörige Einträge löschen?"
-msgstr "Delete feedback element and associated entries?"
-
-#: ../app/views/course/feedback/_feedback_stream.php:13
-msgid ""
-"Das Feedback-Element wurde von Ihnen erstellt, daher können Sie kein "
-"Feedback geben"
-msgstr ""
-"The feedback element has been created by you, therefore you cannot give "
-"feedback"
-
-#: ../app/views/course/study_areas/show.php:7
-msgid "Die Veranstaltung muss <b>mindestens einen</b> Studienbereich haben."
-msgstr ""
-
-#: ../app/views/course/study_areas/show.php:9
-msgid "Die Veranstaltung darf <b>keine</b> Studienbereiche haben."
-msgstr ""
-
-#: ../app/views/course/dates/create_folders.php:10
-msgid "Auswahl der Termine"
-msgstr "Date selection"
-
-#: ../app/views/course/dates/create_folders.php:25
-#, php-format
-msgid "%u Ordner vorhanden"
-msgstr "%u folder available"
-
-#: ../app/views/course/dates/create_folders.php:34
-msgid "Schreibberechtigung für Studierende"
-msgstr "Write permission for students"
-
-#: ../app/views/course/dates/create_folders.php:45
-#: ../app/views/file/new_folder.php:11
-msgid "Trotzdem erstellen"
-msgstr "Create anyway"
-
-#: ../app/views/course/dates/create_folders.php:47
-msgid "Ordner erstellen"
-msgstr "Create a new folder"
-
-#: ../app/views/course/dates/_topic_li.php:8
-msgid "Thema entfernen"
-msgstr "Remove topic"
-
-#: ../app/views/course/dates/_date_row.php:7
-msgid "Der nächste Termin"
-msgstr "Next date"
-
-#: ../app/views/course/dates/_date_row.php:66
-msgid "Termin ausfallen lassen"
-msgstr "Cancel date"
-
-#: ../app/views/course/dates/_date_row.php:68
-msgid "Wollen Sie diesen Termin wirklich ausfallen lassen?"
-msgstr "Do you really want to cancel this date?"
-
-#: ../app/views/course/dates/index.php:18
-msgid "Keine Termine vorhanden"
-msgstr "No dates available"
-
-#: ../app/views/course/dates/new_topic.php:4
-msgid "Thema anlegen / verknüpfen"
-msgstr "Create / link topic"
-
-#: ../app/views/course/dates/new_topic.php:28
-msgid "Vorhandenes Thema verknüpfen"
-msgstr "Link to topic"
-
-#: ../app/views/course/dates/singledate.php:7
-msgid "Datum des Termins"
-msgstr "Date"
-
-#: ../app/views/course/dates/singledate.php:50
-msgid "Termin Speichern"
-msgstr "Save date"
-
-#: ../app/views/course/dates/details-edit.php:23
-msgid "Keine Themen zugeordnet"
-msgstr "No topics assigned"
-
-#: ../app/views/course/dates/details-edit.php:31
-msgid "Thema suchen oder neu anlegen"
-msgstr "Search or create new topic"
-
-#: ../app/views/global_search/settings.php:5
-msgid ""
-"Wieviele Ergebnisse pro Kategorie sollen in der Schnellsuche angezeigt "
-"werden?"
-msgstr "How many results per category shall be displayed in the quick search?"
-
-#: ../app/views/global_search/settings.php:14
-msgid ""
-"Auf welche Art sollen die Suchergebnisse aus der Datenbank gelesen werden?"
-msgstr "How shall the search results be read from the database?"
-
-#: ../app/views/global_search/settings.php:18
-msgid "Asynchron, via mysqli"
-msgstr "Asynchronous, via mysqli"
-
-#: ../app/views/global_search/settings.php:22
-msgid "Synchron, via PDO"
-msgstr "Synchronous, via PDO"
-
-#: ../app/views/global_search/settings.php:31
-msgid "In welcher Reihenfolge sollen Suchergebnisse erscheinen?"
-msgstr "In which order shall the search results be displayed?"
-
-#: ../app/views/global_search/settings.php:43
-#: ../app/views/event_log/admin.php:10
-msgid "Aktiv?"
-msgstr "Active?"
-
-#: ../app/views/global_search/settings.php:44
-msgid "Volltext?"
-msgstr "Full text?"
-
-#: ../app/views/global_search/settings.php:57
-#, php-format
-msgid "%s sind inaktiv, da die Ressourcenverwaltung derzeit deaktiviert ist."
-msgstr "%s are inactive since the resource management is deactivated."
-
-#: ../app/views/smileys/picker.php:7 ../app/views/smileys/index.php:26
-#: ../app/views/admin/smileys/index.php:28
-msgid "Favoriten"
-msgstr "Favourites"
-
-#: ../app/views/smileys/index.php:33 ../app/views/smileys/index.php:76
-#: ../app/views/admin/semester/index.php:23
-#: ../app/views/admin/semester/edit.php:19
-#: ../app/views/admin/smileys/index.php:25
-#: ../app/views/admin/smileys/edit.php:31
-msgid "Kürzel"
-msgstr "Abbreviation"
-
-#: ../app/views/smileys/index.php:55
-msgid "Keine Favoriten vorhanden."
-msgstr "No favourites available."
-
-#: ../app/views/smileys/index.php:56 ../app/views/admin/smileys/index.php:37
-msgid "Keine Smileys vorhanden."
-msgstr "No smiley available."
-
-#: ../app/views/smileys/index.php:79
-msgid "Favorit"
-msgstr "Favourite"
-
-#: ../app/views/smileys/index.php:100
-msgid "Als Favorit entfernen"
-msgstr "Remove from favourites"
-
-#: ../app/views/smileys/index.php:102
-msgid "Als Favorit markieren"
-msgstr "Mark as favourite"
-
-#: ../app/views/localizations/show.php:5
-#, php-format
-msgid "Wirklich %s Nachrichten löschen?"
-msgstr "Delete message %s?"
-
-#: ../app/views/localizations/show.php:7
-msgid ""
-", ['id' => $this->user]))\n"
-"                        . ' Nachrichten endgültig gelöscht."
-msgstr ""
-
-#: ../app/views/localizations/show.php:10
-msgid ""
-", ['id' => $this->user]))\n"
-"                        . ' Nachrichten endgütlig gelöscht."
-msgstr ""
-
-#: ../app/views/localizations/show.php:15
-msgid "Fehler bei der Übertragung"
-msgstr "An error occurred during the transmission"
-
-#: ../app/views/localizations/show.php:16
-msgid "Gefundene Nutzer"
-msgstr "Users found"
-
-#: ../app/views/localizations/show.php:17
-msgid "Wollen Sie diesen Filter wirklich entfernen?"
-msgstr "Are you sure to delete this filter?"
-
-#: ../app/views/localizations/show.php:20
-msgid "Zitat einfügen"
-msgstr "Insert quote"
-
-#: ../app/views/localizations/show.php:21
-msgid "Zitat teilen"
-msgstr "Share quote"
-
-#: ../app/views/localizations/show.php:22
-msgid "Zitat löschen"
-msgstr "Delete quote"
-
-#: ../app/views/localizations/show.php:26
-msgid "Wenn Sie die Seite verlassen, gehen ihre Änderungen verloren!"
-msgstr "If you leave the page your changes will be lost!"
-
-#: ../app/views/localizations/show.php:27
-msgid "Sind sie sicher, dass Sie diese Kategorie entfernen möchten? "
-msgstr "Are you sure to delete this category?"
-
-#: ../app/views/localizations/show.php:28
-msgid "Alle Bereiche werden dann nach \"Allgemein\" verschoben!"
-msgstr "All areas will be moved to the category \"general\"!"
-
-#: ../app/views/localizations/show.php:29
-msgid "Sind sie sicher, dass Sie diesen Bereich löschen möchten? "
-msgstr "Are you sure to delete this area?"
-
-#: ../app/views/localizations/show.php:30
-msgid "Es werden auch alle Beiträge in diesem Bereich gelöscht!"
-msgstr "All postings in this area will be deleted as well!"
-
-#: ../app/views/localizations/show.php:31
-msgid "Sind sie sicher, dass Sie ihren bisherigen Beitrag verwerfen wollen?"
-msgstr "Do really want to discard your posting?"
-
-#: ../app/views/localizations/show.php:33
-msgid ""
-"Die Senderin/der Sender dieser Nachricht möchte Sie auf den folgenden "
-"Beitrag aufmerksam machen. "
-msgstr ""
-"The sender of this message wants to call your attention to the following "
-"posting."
-
-#: ../app/views/localizations/show.php:34
-msgid "Link zum Beitrag: "
-msgstr "Link to posting:"
-
-#: ../app/views/localizations/show.php:35
-msgid "Beitrag verschieben"
-msgstr "Move post"
-
-#: ../app/views/evaluation/display.php:19
-msgid ""
-"Keine Evaluationen vorhanden. Um neue Umfragen zu erstellen, klicken Sie "
-"rechts auf das Bearbeiten-Zeichen."
-msgstr ""
-"No evaluations available. To create a new evaluation, click the edit icon on "
-"the right."
-
-#: ../app/views/evaluation/_buttons.php:3
-msgid "Abstimmen"
-msgstr "Vote"
-
-#: ../app/views/evaluation/_buttons.php:7
-msgid "Ergebnisse ausblenden"
-msgstr "Hide results"
-
-#: ../app/views/evaluation/_buttons.php:9
-msgid "Nicht sortieren"
-msgstr "Don't sort"
-
-#: ../app/views/evaluation/_buttons.php:13
-#: ../app/views/questionnaire/evaluate.php:37
-msgid "Antwort ändern"
-msgstr "Change reply"
-
-#: ../app/views/evaluation/_buttons.php:17
-msgid "Namen ausblenden"
-msgstr "Hide names"
-
-#: ../app/views/evaluation/_buttons.php:19
-msgid "Namen zeigen"
-msgstr "Display names"
-
-#: ../app/views/evaluation/_evaluation.php:34
-msgid "Evaluation auswerten"
-msgstr "Analyse evaluation"
-
-#: ../app/views/seminar/details/show_module_pathes.php:5
-msgid "Modulzuordnung:"
-msgstr "Module assignment:"
-
-#: ../app/views/seminar/details/show_module_pathes.php:23
-msgid "Keine Modulzuordnungen verfügbar"
-msgstr "No module assignments available"
-
-#: ../app/views/settings/messaging.php:5 ../app/views/settings/calendar.php:14
-#: ../app/views/admin/cronjobs/schedules/display.php:60
-#: ../app/views/admin/user/index.php:51
-msgid "nie"
-msgstr "never"
-
-#: ../app/views/settings/messaging.php:7
-msgid "wenn vom Absender gewünscht"
-msgstr "if requested by sender"
-
-#: ../app/views/settings/messaging.php:11
-msgid "HTML"
-msgstr "HTML"
-
-#: ../app/views/settings/messaging.php:21
-msgid "Einstellungen des Nachrichtensystems"
-msgstr "Messaging settings"
-
-#: ../app/views/settings/messaging.php:27
-msgid "Gesendete Nachrichten im Postausgang speichern"
-msgstr "Save sent messages in outbox"
-
-#: ../app/views/settings/messaging.php:34
-msgid "Gesendete Nachrichten auch als E-Mail verschicken"
-msgstr "Send messages as e-mail, too"
-
-#: ../app/views/settings/messaging.php:42
-msgid "Adressaten für die Empfänger sichtbar machen"
-msgstr ""
-
-#: ../app/views/settings/messaging.php:49
-msgid "Beim Logout alle Nachrichten als gelesen speichern"
-msgstr "Save all messages as read upon logout"
-
-#: ../app/views/settings/messaging.php:54
-msgid "Kopie empfangener Nachrichten an eigene E-Mail-Adresse schicken"
-msgstr "Send a copy of all received messages to your e-mail address"
-
-#: ../app/views/settings/messaging.php:65
-msgid "E-Mail in folgendem Format versenden"
-msgstr "Send e-mail in the following format"
-
-#: ../app/views/settings/messaging.php:78 ../app/views/messages/overview.php:34
-msgid "Empfänger"
-msgstr "Recipient"
-
-#: ../app/views/settings/messaging.php:90
-msgid "Kopie im persönlichen Posteingang speichern."
-msgstr "Save copy of messages in your inbox."
-
-#: ../app/views/settings/messaging.php:94
-msgid "Weiterleitung empfangener Nachrichten"
-msgstr "Forwarding of received messages"
-
-#: ../app/views/settings/messaging.php:101
-#: ../app/views/settings/messaging.php:102
-#: ../app/views/file/add_from_library.php:41
-msgid "Signatur"
-msgstr "Signature"
-
-#: ../app/views/settings/messaging.php:106
-msgid "Buddies/ Wer ist online?"
-msgstr "Buddies / who is online?"
-
-#: ../app/views/settings/messaging.php:120
-msgid "Einstellungen zurücksetzen"
-msgstr "Reset settings"
-
-#: ../app/views/settings/account/logout.php:2
-msgid "Daten geändert!"
-msgstr "Data changed!"
-
-#: ../app/views/settings/account/logout.php:5
-#, php-format
-msgid ""
-"Um eine korrekte Authentifizierung mit Ihren neuen Daten sicherzustellen, "
-"wurden Sie automatisch ausgeloggt.<br>Wenn Sie Ihre E-Mail-Adresse geändert "
-"haben, müssen Sie das Ihnen an diese Adresse zugesandte Passwort verwenden!"
-"<br><br>Ihr aktueller Benutzername ist: %s"
-msgstr ""
-"You have automatically been logged out in order to ensure correct "
-"authentication of your new data.<br>If you have changed your e-mail address, "
-"then you must use the password which has been sent to the new address!"
-"<br><br>Your current username is: %s"
-
-#: ../app/views/settings/account/index.php:11
-#, php-format
-msgid ""
-"Einige Ihrer persönlichen Daten werden nicht in Stud.IP verwaltet und können "
-"daher hier nicht geändert werden."
-msgstr ""
-
-#: ../app/views/settings/account/index.php:37
-msgid ""
-"Der Benutzername ist unzulässig. Er muss mindestens 4 Zeichen lang sein und "
-"darf keine Sonderzeichen oder Leerzeichen enthalten."
-msgstr ""
-"The user name is invalid. It must have at least 4 characters and must not "
-"contain special characters or blanks."
-
-#: ../app/views/settings/account/index.php:63
-msgid "Bitte geben Sie Ihren tatsächlichen Nachnamen an."
-msgstr "Please enter your real last name."
-
-#: ../app/views/settings/account/index.php:70
-msgid "Titel auswählen"
-msgstr "Select title"
-
-#: ../app/views/settings/account/index.php:81
-msgid "Titel eingeben"
-msgstr "Enter title"
-
-#: ../app/views/settings/account/index.php:88
-msgid "Titel nachgest."
-msgstr "Second title."
-
-#: ../app/views/settings/account/index.php:90
-msgid "Titel nachgestellt auswählen"
-msgstr "Select postpositive title"
-
-#: ../app/views/settings/account/index.php:101
-msgid "Titel nachgest. eingeben"
-msgstr "Enter postpositioned title"
-
-#: ../app/views/settings/account/index.php:122
-#: ../app/views/start/edit_mail_address.php:15
-msgid "E-Mail Wiederholung"
-msgstr "Re-type e-mail address"
-
-#: ../app/views/settings/account/index.php:133
-msgid ""
-"Falls Sie Ihre E-Mail-Adresse ändern, muss diese Änderung durch die Eingabe "
-"Ihres Passworts bestätigt werden:"
-msgstr ""
-"If you change your e-mail address, you'll have to confirm this change by "
-"entering your password:"
-
-#: ../app/views/settings/categories.php:4
-msgid "Es existieren zur Zeit keine eigenen Kategorien."
-msgstr "At present no category exists."
-
-#: ../app/views/settings/categories.php:38
-msgid "Inhalt der Kategorie:"
-msgstr "Category content:"
-
-#: ../app/views/settings/categories.php:45
-msgid "Kategorie nach oben verschieben"
-msgstr "Move up category"
-
-#: ../app/views/settings/categories.php:53
-msgid "Kategorie nach unten verschieben"
-msgstr "Move down category"
-
-#: ../app/views/settings/categories.php:60
-msgid "Kategorie löschen"
-msgstr "Delete category"
-
-#: ../app/views/settings/categories.php:71
-#, php-format
-msgid ""
-"Es existiert zusätzlich eine Kategorie, die Sie nicht einsehen und "
-"bearbeiten können."
-msgid_plural ""
-"Es existiereren zusätzlich %s Kategorien, die Sie nicht einsehen und "
-"bearbeiten können."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/settings/privacy.php:12
-msgid "Globale Einstellungen"
-msgstr "Global settings"
-
-#: ../app/views/settings/privacy.php:16
-msgid "Globale Sichtbarkeit"
-msgstr "Global visibility"
-
-#: ../app/views/settings/privacy.php:17
-msgid ""
-"Sie können wählen, ob Sie für andere NutzerInnen sichtbar sein und alle "
-"Kommunikationsfunktionen von Stud.IP nutzen können wollen, oder ob Sie "
-"unsichtbar sein möchten und dann nur eingeschränkte Kommunikationsfunktionen "
-"nutzen können."
-msgstr ""
-"You may choose whether or not you are visible to other users and whether or "
-"not you want to benefit from all the communication features of Stud.IP. If "
-"you choose to be invisible, then only limited communication features can be "
-"used."
-
-#: ../app/views/settings/privacy.php:30
-#, php-format
-msgid "sichtbar für alle Nutzer"
-msgstr "visible to all users"
-
-#: ../app/views/settings/privacy.php:31
-msgid "sichtbar für eigene Nutzerdomäne"
-msgstr "visible to your own user domain"
-
-#: ../app/views/settings/privacy.php:41
-msgid "Ihre Kennung wurde von einem Administrator unsichtbar geschaltet."
-msgstr "An administrator has made your ID invisible."
-
-#: ../app/views/settings/privacy.php:43
-msgid "Sie haben Lehrendenrechte und sind daher immer global sichtbar."
-msgstr "You have lecturer permissions and therefore you are always vibible."
-
-#: ../app/views/settings/privacy.php:45
-msgid "Sie sind immer global sichtbar."
-msgstr "You always are globally visible."
-
-#: ../app/views/settings/privacy.php:60
-msgid "Erweiterte Einstellungen"
-msgstr "Extended settings"
-
-#: ../app/views/settings/privacy.php:62
-msgid ""
-"Stellen Sie hier ein, in welchen Bereichen des Systems Sie erscheinen wollen."
-msgstr "Here you may specify the system areas where you want to be visible."
-
-#: ../app/views/settings/privacy.php:64
-msgid ""
-"Wenn Sie hier Ihre E-Mail-Adresse verstecken, wird stattdessen die E-Mail-"
-"Adresse Ihrer (Standard-)Einrichtung angezeigt."
-msgstr ""
-"If you hide your e-mail address the standard e-mail address of your "
-"(standard) institution will be shown."
-
-#: ../app/views/settings/privacy.php:72
-msgid "sichtbar in \"Wer ist online\""
-msgstr "visible in \"Who is online?\""
-
-#: ../app/views/settings/privacy.php:79
-msgid "auffindbar über die Personensuche"
-msgstr "searchable via user search"
-
-#: ../app/views/settings/privacy.php:86
-msgid "eigene E-Mail Adresse sichtbar"
-msgstr "own e-mail address visible"
-
-#: ../app/views/settings/privacy.php:106
-msgid "Eigenes Profil"
-msgstr "Own profile"
-
-#: ../app/views/settings/privacy.php:112
-msgid "Profil-Element"
-msgstr "Profile element"
-
-#: ../app/views/settings/privacy.php:113 ../app/views/settings/privacy.php:135
-msgid "sichtbar für"
-msgstr "visible to"
-
-#: ../app/views/settings/privacy.php:158
-msgid "Neue Elemente"
-msgstr "New elements"
-
-#: ../app/views/settings/privacy.php:170
-msgid "Jetzt alle Sichtbarkeiten auf"
-msgstr "Set visibility to"
-
-#: ../app/views/settings/studies/studiengang.php:3
-msgid "Ich studiere folgende Fächer und Abschlüsse:"
-msgstr "I study the following subjects and in degree programmes:"
-
-#: ../app/views/settings/studies/studiengang.php:24
-#: ../app/views/settings/studies/institute.php:19
-#: ../app/views/settings/userdomains.php:18
-msgid "austragen"
-msgstr "sign out"
-
-#: ../app/views/settings/studies/studiengang.php:35
-msgid "Sie haben sich noch keinem Studiengang zugeordnet."
-msgstr "You have not selected any course of study."
-
-#: ../app/views/settings/studies/studiengang.php:37
-msgid "Tragen Sie bitte hier die Angaben aus Ihrem Studierendenausweis ein!"
-msgstr "Please enter the details as shown on your student ID!"
-
-#: ../app/views/settings/studies/studiengang.php:56
-#: ../app/views/admin/user/edit.php:412
-msgid "-- Bitte Version auswählen --"
-msgstr "-- Select version --"
-
-#: ../app/views/settings/studies/studiengang.php:65
-#: ../app/views/admin/user/edit.php:421
-msgid "Keine Version in der gewählten Fach-Abschluss-Kombination verfügbar."
-msgstr ""
-"No version available for the selected combination of field of study and "
-"final degree."
-
-#: ../app/views/settings/studies/studiengang.php:85
-#: ../app/views/settings/studies/studiengang.php:92
-msgid "austragen:"
-msgstr "sign out:"
-
-#: ../app/views/settings/studies/studiengang.php:91
-msgid "Fachsemester:"
-msgstr "Semester:"
-
-#: ../app/views/settings/studies/studiengang.php:119
-msgid "Fach / Abschluss hinzufügen"
-msgstr "Add field of study / final degree"
-
-#: ../app/views/settings/studies/studiengang.php:124
-msgid ""
-"Wählen Sie die Fächer, Abschlüsse und Fachsemester in der folgenden Liste "
-"aus:"
-msgstr ""
-"Select out of the following list your subjects, degree programmes and "
-"semester of study:"
-
-#: ../app/views/settings/studies/studiengang.php:129
-#: ../app/views/settings/studies/studiengang.php:130
-#: ../app/views/admin/user/edit.php:339 ../app/views/admin/user/edit.php:340
-msgid "-- Bitte Fach auswählen --"
-msgstr "-- select subject, please --"
-
-#: ../app/views/settings/studies/studiengang.php:139
-#: ../app/views/settings/studies/studiengang.php:140
-#: ../app/views/admin/user/edit.php:346 ../app/views/admin/user/edit.php:347
-msgid "-- Bitte Abschluss auswählen --"
-msgstr "-- please select a degree --"
-
-#: ../app/views/settings/studies/studiengang.php:148
-#: ../app/views/admin/user/edit.php:353
-msgid "Bitte Fachsemester wählen"
-msgstr "Please select semester of study"
-
-#: ../app/views/settings/studies/studiengang.php:161
-msgid ""
-"Die Informationen zu Ihrem Studiengang werden vom System verwaltet, und "
-"können daher von Ihnen nicht geändert werden."
-msgstr ""
-"Information about your course of study are managed by the system and "
-"therefore cannot be changed by you."
-
-#: ../app/views/settings/studies/institute.php:3
-msgid "Meine Einrichtungen:"
-msgstr "My institutions:"
-
-#: ../app/views/settings/studies/institute.php:27
-msgid "Sie haben sich noch keinen Einrichtungen zugeordnet."
-msgstr "You have not allocated yourself to any institute."
-
-#: ../app/views/settings/studies/institute.php:29
-msgid ""
-"Wenn Sie auf Ihrem Profil Ihre Einrichtungen auflisten wollen, können Sie "
-"diese Einrichtungen hier eintragen."
-msgstr "Select institutions and add them to your profile."
-
-#: ../app/views/settings/studies/institute.php:73
-msgid ""
-"Um sich einer Einrichtung zuzuordnen, wählen Sie die entsprechende "
-"Einrichtung aus der folgenden Liste aus:"
-msgstr "To associate yourself to an institution, choose it from the list:"
-
-#: ../app/views/settings/studies/institute.php:102
-msgid ""
-"Die Informationen zu Ihrer Einrichtung werden vom System verwaltet, und "
-"können daher von Ihnen nicht geändert werden."
-msgstr ""
-"Information about your institute are managed by the system and therefore "
-"cannot be changed by you."
-
-#: ../app/views/settings/notification.php:27
-msgid "Benachrichtigung für unten aufgeführte Veranstaltungen:"
-msgstr "Notification for the following courses:"
-
-#: ../app/views/settings/notification.php:50
-msgid "Gruppierung schließen"
-msgstr "Close grouping"
-
-#: ../app/views/settings/notification.php:55
-msgid "Gruppierung öffnen"
-msgstr "Open grouping"
-
-#: ../app/views/settings/deputies.php:16
-msgid "darf mein Profil bearbeiten"
-msgstr "may edit my profile"
-
-#: ../app/views/settings/deputies.php:50
-msgid "Wollen Sie die Standardvertretung wirklich löschen?"
-msgstr ""
-
-#: ../app/views/settings/deputies.php:67
-msgid ""
-"Sie haben noch niemanden als Ihre Standardvertretung eingetragen. Benutzen "
-"Sie die Aktion in der Sidebar, um dies zu tun."
-msgstr ""
-"You haven't added a person as your default substitute yet. You may use the "
-"action in the sidebar to do so."
-
-#: ../app/views/settings/statusgruppen/assign.php:5
-msgid "Person einer Gruppe zuordnen"
-msgstr "Allocate user to a group"
-
-#: ../app/views/settings/statusgruppen/assign.php:8
-msgid "Einrichtung und Funktion auswählen"
-msgstr "Select institution and function"
-
-#: ../app/views/settings/statusgruppen/modify_institute.php:72
-msgid ""
-"Angaben, die im Adressbuch und auf den externen Seiten als Standard benutzt "
-"werden."
-msgstr ""
-"Data to be used as default in the address book and on the external pages."
-
-#: ../app/views/settings/statusgruppen/modify_institute.php:78
-msgid "Einrichtung nicht auf der Profilseite"
-msgstr "The institute is not on the profile page"
-
-#: ../app/views/settings/statusgruppen/modify_institute.php:79
-msgid ""
-"Die Angaben zu dieser Einrichtung werden nicht auf Ihrer Profilseite und in "
-"Adressbüchern ausgegeben."
-msgstr ""
-"Data of this institute will be displayed neither on your profile page nor in "
-"any address book."
-
-#: ../app/views/settings/statusgruppen/modify.php:19
-msgid "Daten für diese Funktion"
-msgstr "Data for this function"
-
-#: ../app/views/settings/statusgruppen/modify.php:22
-msgid "Standarddaten"
-msgstr "Default details"
-
-#: ../app/views/settings/statusgruppen/modify.php:35
-msgid "Diese Daten von den Standarddaten übernehmen"
-msgstr "Copy these details from the default details"
-
-#: ../app/views/settings/statusgruppen/modify.php:45
-msgid "Diese Daten NICHT von den Standarddaten übernehmen"
-msgstr "Do NOT copy these details from the default details"
-
-#: ../app/views/settings/statusgruppen/modify.php:62
-msgid "Standarddaten übernehmen:"
-msgstr "Copy default details:"
-
-#: ../app/views/settings/statusgruppen/index.php:2
-msgid "Sie sind keinem Institut / keiner Einrichtung zugeordnet!"
-msgstr "You are not assigned to an institute!"
-
-#: ../app/views/settings/statusgruppen/index.php:8
-msgid "Zuordnungen zu Einrichtungen"
-msgstr "Assignments to institutes"
-
-#: ../app/views/settings/statusgruppen/index.php:37
-#: ../app/views/settings/statusgruppen/index.php:41
-msgid "Zur Einrichtung"
-msgstr "To the institution"
-
-#: ../app/views/settings/statusgruppen/index.php:85
-msgid "Zur Funktion"
-msgstr "To the function"
-
-#: ../app/views/settings/userdomains.php:8
-msgid "Ich bin folgenden Nutzerdomänen zugeordnet:"
-msgstr "I am member of the following user domains:"
-
-#: ../app/views/settings/userdomains.php:15 ../app/views/admin/user/new.php:194
-#: ../app/views/admin/user/index.php:86
-msgid "Nutzerdomäne"
-msgstr "User domain"
-
-#: ../app/views/settings/userdomains.php:27
-msgid "Sie sind noch keiner Nutzerdomäne zugeordnet."
-msgstr "You are not allocated to any user domain."
-
-#: ../app/views/settings/userdomains.php:64
-#: ../app/views/settings/userdomains.php:91
-msgid "Nutzerdomäne hinzufügen"
-msgstr "Add user domain"
-
-#: ../app/views/settings/userdomains.php:70
-#: ../app/views/settings/userdomains.php:96
-msgid "Wählen Sie eine Nutzerdomäne aus der folgenden Liste aus:"
-msgstr "Select user domain out of the following list:"
-
-#: ../app/views/settings/userdomains.php:74
-#: ../app/views/settings/userdomains.php:100
-#: ../app/views/admin/user/new.php:197 ../app/views/admin/user/edit.php:520
-msgid "-- Bitte Nutzerdomäne auswählen --"
-msgstr "-- select user domain, please --"
-
-#: ../app/views/settings/userdomains.php:116
-msgid ""
-"Die Informationen zu Ihren Nutzerdomänen werden vom System verwaltet und "
-"können daher von Ihnen nicht geändert werden."
-msgstr ""
-"The information about your user domains are managed by the system and "
-"therefore cannot be changed by you."
-
-#: ../app/views/settings/calendar.php:11
-msgid "12 Monate nach Ablauf"
-msgstr "12 months after expiration"
-
-#: ../app/views/settings/calendar.php:12
-msgid "6 Monate nach Ablauf"
-msgstr "6 months after expiration"
-
-#: ../app/views/settings/calendar.php:13
-msgid "3 Monate nach Ablauf"
-msgstr "3 months after expiration"
-
-#: ../app/views/settings/calendar.php:17
-msgid "10 Minuten"
-msgstr "10 minutes"
-
-#: ../app/views/settings/calendar.php:18
-msgid "15 Minuten"
-msgstr "15 minutes"
-
-#: ../app/views/settings/calendar.php:19 ../app/views/settings/calendar.php:24
-msgid "30 Minuten"
-msgstr "30 minutes"
-
-#: ../app/views/settings/calendar.php:20 ../app/views/settings/calendar.php:25
-msgid "1 Stunde"
-msgstr "1 hour"
-
-#: ../app/views/settings/calendar.php:21 ../app/views/settings/calendar.php:26
-msgid "2 Stunden"
-msgstr "2 hours"
-
-#: ../app/views/settings/calendar.php:36
-msgid "Einstellungen des Terminkalenders"
-msgstr "Calendar settings"
-
-#: ../app/views/settings/calendar.php:40
-msgid "Startansicht"
-msgstr "Default view"
-
-#: ../app/views/settings/calendar.php:54
-msgid "7 Tage-Woche"
-msgstr "7 day week"
-
-#: ../app/views/settings/calendar.php:57
-msgid "5 Tage-Woche"
-msgstr "5 day week"
-
-#: ../app/views/settings/calendar.php:65
-msgid "Einzelterminkalender"
-msgstr "Single date calendar"
-
-#: ../app/views/settings/calendar.php:69
-msgid "Zeitraum der Tages- und Wochenansicht"
-msgstr "Time span of daily and weekly view"
-
-#: ../app/views/settings/calendar.php:73
-msgid "Startzeit der Tages- und Wochenansicht"
-msgstr "Starting time of day view and week view"
-
-#: ../app/views/settings/calendar.php:85
-msgid "Endzeit der Tages- und Wochenansicht"
-msgstr "Finale time of day view and week view: "
-
-#: ../app/views/settings/calendar.php:98 ../app/views/settings/calendar.php:128
-msgid "Zeitintervall der Tagesansicht"
-msgstr "Time interval of daily view"
-
-#: ../app/views/settings/calendar.php:109
-#: ../app/views/settings/calendar.php:139
-msgid "Zeitintervall der Wochenansicht"
-msgstr "Time interval of weekly view"
-
-#: ../app/views/settings/calendar.php:124
-msgid "Gruppenterminkalender"
-msgstr "Group date calendar"
-
-#: ../app/views/settings/password.php:11
-msgid "Aktuelles Passwort"
-msgstr "Current password"
-
-#: ../app/views/settings/password.php:15 ../app/views/admin/user/edit.php:207
-#: ../app/views/new_password/set.php:9 ../app/views/new_password/set.php:10
-msgid "Neues Passwort"
-msgstr "New password"
-
-#: ../app/views/settings/password.php:21 ../app/views/admin/install/root.php:20
-msgid "Passwort bestätigen"
-msgstr "Confirm password"
-
-#: ../app/views/settings/details.php:13
-msgid "Telefon Festnetz (privat)"
-msgstr "Phone (private)"
-
-#: ../app/views/settings/details.php:19
-msgid "Mobiltelefon (privat)"
-msgstr "Mobile (private)"
-
-#: ../app/views/settings/details.php:90 ../app/views/admin/user/edit.php:584
-msgid "Systemfeld (für die Person selbst nicht sichtbar)"
-msgstr "System field (invisible for the user)"
-
-#: ../app/views/settings/details.php:99
-msgid ""
-"(Das Feld ist für die Bearbeitung gesperrt und kann nur durch einen "
-"Administrator verändert werden.)"
-msgstr ""
-"(This field is locked for editing and can only be changed by an "
-"administrator.)"
-
-#: ../app/views/settings/general.php:6
-msgid "Mein Terminkalender"
-msgstr "My calendar"
-
-#: ../app/views/settings/general.php:7
-msgid "Mein Adressbuch"
-msgstr "My address book"
-
-#: ../app/views/settings/general.php:8
-msgid "Mein globaler Blubberstream"
-msgstr "My global Blubber stream"
-
-#: ../app/views/settings/general.php:17
-msgid "Allgemeine Einstellungen"
-msgstr "General settings"
-
-#: ../app/views/settings/general.php:33
-msgid "Persönliche Startseite"
-msgstr "Personal start page"
-
-#: ../app/views/settings/general.php:34
-msgid ""
-"Sie können hier einstellen, welche Seite standardmäßig nach dem Einloggen "
-"angezeigt wird. Wenn Sie zum Beispiel regelmäßig die Seite &raquo;Meine "
-"Veranstaltungen&laquo; nach dem Login aufrufen, so können Sie dies hier "
-"direkt einstellen."
-msgstr "Choose which page is shown after login."
-
-#: ../app/views/settings/general.php:52
-msgid "Skiplinks einblenden"
-msgstr "Display skiplinks"
-
-#: ../app/views/settings/general.php:53
-msgid ""
-"Mit dieser Einstellung wird nach dem ersten Drücken der Tab-Taste eine Liste "
-"mit Skiplinks eingeblendet, mit deren Hilfe Sie mit der Tastatur schneller "
-"zu den Hauptinhaltsbereichen der Seite navigieren können. Zusätzlich wird "
-"der aktive Bereich einer Seite hervorgehoben."
-msgstr ""
-"With this setting a list of skiplinks will be displayed once the Tab-key is "
-"pressed for the first time.These skiplinks accelerate use of the keyboard "
-"while navigating to the main content areas of the page. In addition, the "
-"active area of a page will be highlighted."
-
-#: ../app/views/settings/general.php:63
-msgid "Tastenkombinationen für Hauptfunktionen"
-msgstr "Key combinations for main functions"
-
-#: ../app/views/settings/general.php:64
-msgid ""
-"Mit dieser Einstellung können Sie für die meisten in der Kopfzeile "
-"erreichbaren Hauptfunktionen eine Bedienung über Tastenkombinationen "
-"aktivieren. <br>Die Tastenkombination wird im Tooltip des jeweiligen Icons "
-"angezeigt."
-msgstr ""
-"This setting activates keyboard shortcuts for most of the main functions "
-"accessible from the header.<br>The keyboard shortcut is displayed in each "
-"icon's tooltip."
-
-#: ../app/views/settings/general.php:67
-msgid ""
-"Diese kann für jeden Browser und jedes Betriebssystem unterschiedlich sein "
-"(siehe <a href=\"http://en.wikipedia.org/wiki/Accesskey\" target=\"_blank\" "
-"rel=\"noopener noreferrer\">Wikipedia</a>)."
-msgstr ""
-"It can be different for each browser and operating system (see <a href="
-"\"http://en.wikipedia.org/wiki/Accesskey\" target=\"_blank\" rel=\"noopener "
-"noreferrer\">Wikipedia</a>)."
-
-#: ../app/views/settings/general.php:77
-msgid "Semesteranzeige auf &raquo;Meine Veranstaltungen&laquo;"
-msgstr "Semester view on &raquo;My courses&laquo;"
-
-#: ../app/views/settings/general.php:78
-msgid ""
-"Mit dieser Einstellung können Sie auf der Seite &raquo;Meine "
-"Veranstaltungen&laquo; die Einblendung des Start- und Endsemesters hinter "
-"jeder Veranstaltung aktivieren."
-msgstr ""
-"This setting determines if the starting and ending semesters of courses are "
-"displayed on the \"My Courses\" page."
-
-#: ../app/views/settings/general.php:88
-msgid "Autostart von Touren verhindern"
-msgstr "Disable auto start of tours"
-
-#: ../app/views/settings/general.php:89
-msgid ""
-"Mit dieser Einstellung können Sie verhindern, dass Touren zu einzelnen Stud."
-"IP-Seiten automatisch starten, wenn Sie die Seite aufrufen. Die Touren "
-"können weiterhin über die Hilfe gestartet werden."
-msgstr ""
-"With this setting, you can prevent that tours for single Stud.IP pages start "
-"automatically when you access the page. The tours can still be started using "
-"the help."
-
-#: ../app/views/settings/general.php:103
-msgid "Benachrichtigungen über Javascript"
-msgstr "Notifications via Javascript"
-
-#: ../app/views/settings/general.php:104
-msgid ""
-"Hiermit wird in der Kopfzeile dargestellt, wenn es Benachrichtigungen für "
-"Sie gibt. Die Benachrichtigungen werden auch angezeigt, wenn Sie nicht die "
-"Seite neuladen."
-msgstr "This displays notifications in the header without reloading the page."
-
-#: ../app/views/settings/general.php:113
-msgid "Audio-Feedback zu Benachrichtigungen"
-msgstr "Audio feedback for notifications"
-
-#: ../app/views/settings/general.php:114
-msgid ""
-"Wenn eine neue Benachrichtigung für Sie reinkommt, werden Sie mittels eines "
-"kleinen Plopps darüber in Kenntnis gesetzt - auch wenn Sie gerade einen "
-"anderen Browsertab anschauen. Der Plopp ist nur zu hören, wenn Sie die "
-"Benachrichtigungen über Javascript aktiviert haben."
-msgstr "Audiofeedback on new notifications. "
-
-#: ../app/views/settings/general.php:127
-msgid "Wiki-Kommentare einblenden"
-msgstr "Show wiki comments"
-
-#: ../app/views/settings/general.php:128
-msgid ""
-"Mit dieser Einstellung werden auf Wiki-Seiten die Kommentare eingeblendet "
-"und nicht mehr nur als Icon angezeigt."
-msgstr ""
-"With this setting, comments on wiki pages are shown and not only displayed "
-"as icon."
-
-#: ../app/views/settings/general.php:135
-msgid "WYSIWYG-Editor"
-msgstr "WYSIWYG editor"
-
-#: ../app/views/settings/general.php:140
-msgid "WYSIWYG-Editor aktivieren"
-msgstr "Activate WYSIWYG editor"
-
-#: ../app/views/multipersonsearch/no_js_form.php:34
-msgid "Gefundene Personen, die der Gruppe hinzugefügt werden können"
-msgstr "Accounts which can be added to the groups"
-
-#: ../app/views/multipersonsearch/no_js_form.php:36
-msgid "Keine neuen Suchergebnisse gefunden"
-msgstr "No search results"
-
-#: ../app/views/multipersonsearch/no_js_form.php:49
-msgid "In den Suchergebnissen markierte Bereiche der Gruppe hinzufügen"
-msgstr "Add marked objects to group"
-
-#: ../app/views/multipersonsearch/no_js_form.php:55
-msgid "Bei den bereits ausgewählten Personen die markierten Personen entfernen"
-msgstr "Cancel marked persons"
-
-#: ../app/views/multipersonsearch/no_js_form.php:66
-msgid "Niemand wurde ausgewählt."
-msgstr "Nobody has been selected."
-
-#: ../app/views/multipersonsearch/no_js_form.php:68
-msgid "Eine Person wurde ausgewählt"
-msgstr "One user was selected"
-
-#: ../app/views/multipersonsearch/no_js_form.php:70
-#, php-format
-msgid "%s Personen wurden ausgewählt."
-msgstr "%s users were selected."
-
-#: ../app/views/multipersonsearch/no_js_form.php:74
-msgid "Personen, die in die Gruppe eingetragen werden"
-msgstr "Persons to be added to the group"
-
-#: ../app/views/multipersonsearch/js_form.php:6
-msgid "Nach Personen suchen"
-msgstr "Search for persons"
-
-#: ../app/views/files_dashboard/search.php:64
-msgid "Weitere Ergebnisse suchen"
-msgstr "Search for more results"
-
-#: ../app/views/files_dashboard/search.php:88
-msgid "Leider keine Treffer."
-msgstr "No match, sorry."
-
-#: ../app/views/files_dashboard/_search_tr.php:19
-#: ../app/views/files_dashboard/_search_tr.php:33
-msgid "kein Titel"
-msgstr "no title"
-
-#: ../app/views/files_dashboard/_search_tr.php:66
-msgid "Nachrichtenanhang"
-msgstr "Message attachment"
-
-#: ../app/views/files_dashboard/_search_tr.php:69
-msgid "Öffentlicher Dateibereich"
-msgstr "Public file area"
-
-#: ../app/views/bb/index.php:4
-msgid "Der geheime Bilderbrowser"
-msgstr "The secret image browser"
-
-#: ../app/views/bb/index.php:10
-msgid ""
-"Unschön dass wir uns hier sehen... diese Seite ist das geheime Easteregg von "
-"Stud.IP. Wenn es jemand hierher geschafft hat, der nicht zum Team gehört, "
-"dann kündige ich."
-msgstr ""
-"Shame on me that we have to meet like this... this page is the secret Stud."
-"IP easter egg. If someone not belonging to the team has managed to find his "
-"or her way hereto, then I'll quit."
-
-#: ../app/views/contents/courseware/create_project.php:8
-#, fuzzy
-msgid "Titel des Projektes"
-msgstr "Tab title"
-
-#: ../app/views/contents/courseware/create_project.php:21
-#, fuzzy
-msgid "Art des Projektes"
-msgstr "Learning object type"
-
-#: ../app/views/contents/courseware/create_project.php:30
-#, fuzzy
-msgid "OER-Material"
-msgstr "Materials"
-
-#: ../app/views/contents/courseware/create_project.php:33
-msgid "ePortfolio"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:45
-msgid "Lizenztyp"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:48
-msgid "Open Educational Resources"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:51
-msgid "Creative Commons"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:61
-msgid "Geschätzter zeitlicher Aufwand"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:68
-#, fuzzy
-msgid "Farbe"
-msgstr "Colour selector"
-
-#: ../app/views/contents/courseware/create_project.php:72
-#, fuzzy
-msgid "Königliches Purpur"
-msgstr "Possible search criteria"
-
-#: ../app/views/contents/courseware/create_project.php:75
-msgid "Leguangrün"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:78
-msgid "Holzkohle"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:81
-msgid "Königin blau"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:84
-#, fuzzy
-msgid "Helles Seegrün"
-msgstr "Current semester"
-
-#: ../app/views/contents/courseware/create_project.php:87
-msgid "Maulbeere"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:90
-msgid "Kürbis"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:93
-#, fuzzy
-msgid "Apfelgrün"
-msgstr "created"
-
-#: ../app/views/contents/courseware/create_project.php:96
-msgid "Blau"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:99
-msgid "Grau"
-msgstr ""
-
-#: ../app/views/contents/courseware/create_project.php:108
-#, fuzzy
-msgid "Vorschaubild hochladen"
-msgstr "no image file uploaded yet"
-
-#: ../app/views/contents/courseware/create_project.php:115
-#, fuzzy
-msgid "Neues Projekt erstellen"
-msgstr "Add a new topic"
-
-#: ../app/views/contents/courseware/index.php:16
-#, fuzzy, php-format
-msgid "%d Seite"
-msgid_plural "%d Seiten"
-msgstr[0] "Page"
-msgstr[1] "Page"
-
-#: ../app/views/messages/overview.php:15
-msgid "Schlagwort"
-msgstr "Keyword"
-
-#: ../app/views/messages/overview.php:16
-msgid "Schlagwort wirklich löschen?"
-msgstr "Delete Keyword?"
-
-#: ../app/views/messages/overview.php:16
-msgid "Schlagwort von allen Nachrichten entfernen."
-msgstr "Delete label from all messages."
-
-#: ../app/views/messages/overview.php:34
-msgid "Absender"
-msgstr "Sender"
-
-#: ../app/views/messages/overview.php:79
-msgid "Keine Nachrichten"
-msgstr "No messages"
-
-#: ../app/views/messages/read.php:21 ../app/views/messages/print.php:14
-#: ../app/views/messages/write.php:10
-msgid "An"
-msgstr "To"
-
-#: ../app/views/messages/read.php:25
-msgid "Eine Person"
-msgstr "One user"
-
-#: ../app/views/messages/read.php:49 ../app/views/messages/_message_row.php:47
-msgid "Alle Nachrichten zu diesem Schlagwort"
-msgstr "All messages with this label"
-
-#: ../app/views/messages/read.php:52
-msgid "Schlagwort entfernen"
-msgstr "Remove label"
-
-#: ../app/views/messages/read.php:57
-msgid "Schlagwort hinzufügen"
-msgstr "Add label"
-
-#: ../app/views/messages/read.php:70 ../app/views/messages/write.php:72
-#: ../app/views/messages/write.php:104
-msgid "Anhänge"
-msgstr "Attachments"
-
-#: ../app/views/messages/read.php:93
-msgid "Weiterleiten"
-msgstr "Forward"
-
-#: ../app/views/messages/read.php:99
-msgid "Nachricht wirklich löschen?"
-msgstr "Do you really want to delete the message?"
-
-#: ../app/views/messages/write.php:8
-msgid "Neue Nachricht"
-msgstr "New Message"
-
-#: ../app/views/messages/write.php:34 ../app/views/messages/write.php:36
-msgid "Mehrere Adressaten hinzufügen"
-msgstr "Add more recipients"
-
-#: ../app/views/messages/write.php:147
-msgid "z.B. klausur termin statistik etc."
-msgstr "e.g. test date statistics etc."
-
-#: ../app/views/messages/write.php:155
-msgid "Immer per E-Mail weiterleiten"
-msgstr "Always forward as e-mail"
-
-#: ../app/views/messages/write.php:161
-msgid "Sollen die Adressaten für die Empfänger sichtbar sein?"
-msgstr "Shall the addressees be visible for the recipients?"
-
-#: ../app/views/messages/_message_row.php:7
-msgid "Mit Anhang"
-msgstr "Has attachment"
-
-#: ../app/views/messages/_message_row.php:8
-msgid "Beantwortet"
-msgstr "Answered"
-
-#: ../app/views/profile_modules/index.php:88
-msgid "...mehr"
-msgstr "...more"
-
-#: ../app/views/admin/role/assign_role_institutes.php:8
-msgid "Einrichtungszuordnung anpassen"
-msgstr "Modify institute assignment"
-
-#: ../app/views/admin/role/assign_role_institutes.php:12
-#, php-format
-msgid "Einrichtungszuordnung für %s in der Rolle %s"
-msgstr "Institute assignment for %s in the role %s"
-
-#: ../app/views/admin/role/assign_role_institutes.php:19
-#: ../app/views/admin/autoinsert/index.php:70
-msgid "Vorhandene Zuordnungen"
-msgstr "Existing allocations"
-
-#: ../app/views/admin/role/add_plugin.php:15
-msgid "Plugins auswählen"
-msgstr "Select plug-ins"
-
-#: ../app/views/admin/role/assign_role.php:10
-msgid "Rollen für Benutzer verwalten"
-msgstr "Manage user roles"
-
-#: ../app/views/admin/role/assign_role.php:16
-msgid "Name der Person"
-msgstr "Name of person"
-
-#: ../app/views/admin/role/assign_role.php:21
-msgid "Benutzer suchen"
-msgstr "Search user"
-
-#: ../app/views/admin/role/assign_role.php:37
-msgid "Benutzer auswählen"
-msgstr "Select user"
-
-#: ../app/views/admin/role/assign_role.php:51
-#, php-format
-msgid "Rollen für %s"
-msgstr "Roles for %s"
-
-#: ../app/views/admin/role/assign_role.php:54
-#: ../app/views/admin/role/assign_plugin_role.php:38
-msgid "Verfügbare Rollen"
-msgstr "Available roles"
-
-#: ../app/views/admin/role/assign_role.php:62
-#: ../app/views/admin/role/assign_role.php:78
-#: ../app/views/admin/role/index.php:35
-#: ../app/views/admin/role/assign_plugin_role.php:46
-#: ../app/views/admin/role/assign_plugin_role.php:62
-#: ../app/views/admin/role/show_role.php:21
-msgid "Systemrolle"
-msgstr "System role"
-
-#: ../app/views/admin/role/assign_role.php:68
-msgid "Markierte Rollen dem Benutzer zuweisen"
-msgstr "Assign marked roles to the user"
-
-#: ../app/views/admin/role/assign_role.php:71
-#: ../app/views/admin/role/assign_plugin_role.php:55
-msgid "Markierte Rollen entfernen"
-msgstr "Delete selected roles"
-
-#: ../app/views/admin/role/assign_role.php:88
-msgid "Einrichtungszuordnungen"
-msgstr "Assignment to institutions"
-
-#: ../app/views/admin/role/assign_role.php:99
-msgid "Rolle"
-msgstr "Role"
-
-#: ../app/views/admin/role/assign_role.php:116
-msgid "Einrichtungszuordnung bearbeiten"
-msgstr "Edit institute assignment"
-
-#: ../app/views/admin/role/assign_role.php:126
-msgid "Implizit zugewiesene Systemrollen"
-msgstr "Implicitly assigned system roles"
-
-#: ../app/views/admin/role/index.php:3
-msgid "Vorhandene Rollen"
-msgstr "Existing roles"
-
-#: ../app/views/admin/role/index.php:16
-msgid "Direkte Zuweisung"
-msgstr "Direct assignment"
-
-#: ../app/views/admin/role/index.php:17
-msgid "explizit"
-msgstr "explicit"
-
-#: ../app/views/admin/role/index.php:21
-msgid "Indirekte Zuweisung durch Berechtigungsstufe"
-msgstr "Indirect assignment by permission level"
-
-#: ../app/views/admin/role/index.php:22
-msgid "implizit"
-msgstr "implicit"
-
-#: ../app/views/admin/role/index.php:51
-msgid "Rolle löschen"
-msgstr "Delete role"
-
-#: ../app/views/admin/role/assign_plugin_role.php:10
-msgid "Rollenverwaltung für Plugins"
-msgstr "Plug-in role management"
-
-#: ../app/views/admin/role/assign_plugin_role.php:25
-msgid "Plugin auswählen"
-msgstr "Select plug-in"
-
-#: ../app/views/admin/role/assign_plugin_role.php:36
-msgid "Gegenwärtig zugewiesene Rollen"
-msgstr "Presently assigned roles "
-
-#: ../app/views/admin/role/assign_plugin_role.php:52
-msgid "Markierte Rollen dem Plugin zuweisen"
-msgstr "Assign marked roles to the plug-in"
-
-#: ../app/views/admin/role/show_role.php:14
-msgid "Rolle wählen"
-msgstr "Select role"
-
-#: ../app/views/admin/role/show_role.php:30
-msgid "Rolle auswählen"
-msgstr "Select role"
-
-#: ../app/views/admin/role/show_role.php:50
-#, php-format
-msgid "Liste der Personen mit der Rolle \"%s\""
-msgstr "List of persons having the role \"%s\""
-
-#: ../app/views/admin/role/show_role.php:77
-msgid "Es wurden keine Benutzer gefunden."
-msgstr "No user found."
-
-#: ../app/views/admin/role/show_role.php:103
-#: ../app/views/admin/role/show_role.php:195
-msgid "Rolle entziehen"
-msgstr "Withdraw role"
-
-#: ../app/views/admin/role/show_role.php:105
-msgid "Soll dieser Person wirklich die Rolle entzogen werden?"
-msgstr "Do you really want to withdraw the role from the person?"
-
-#: ../app/views/admin/role/show_role.php:116
-#, php-format
-msgid "+%u weitere, implizit zugewiesene Person(en)"
-msgstr "+%u more implicitly assigned person(s)"
-
-#: ../app/views/admin/role/show_role.php:126
-#: ../app/views/admin/role/show_role.php:207
-msgid "Alle markierten Einträge"
-msgstr "For all selected entries"
-
-#: ../app/views/admin/role/show_role.php:128
-msgid "Sollen den markierten Personen wirklich die Rolle entzogen werden?"
-msgstr "Do you really want to remove the role from the selected persons?"
-
-#: ../app/views/admin/role/show_role.php:143
-#, php-format
-msgid "Liste der Plugins mit der Rolle \"%s\""
-msgstr "List of plug-ins with role \"%s\""
-
-#: ../app/views/admin/role/show_role.php:148
-msgid "Plugins hinzufügen"
-msgstr "Add plug-ins"
-
-#: ../app/views/admin/role/show_role.php:176
-#: ../app/views/admin/plugin/search.php:2
-msgid "Es wurden keine Plugins gefunden."
-msgstr "No plug-ins have been found."
-
-#: ../app/views/admin/role/show_role.php:197
-msgid "Soll diesem Plugin wirklich die Rolle entzogen werden?"
-msgstr "Do you really want to withdraw the role from the plug-in?"
-
-#: ../app/views/admin/role/show_role.php:209
-msgid "Sollen den markierten Plugins wirklich die Rolle entzogen werden?"
-msgstr "Do you really want to withdraw the role from the selected plug-ins?"
-
-#: ../app/views/admin/overlapping/admin_info.php:4
-#: ../app/views/admin/overlapping/admin_info.php:16
-#: ../app/views/admin/overlapping/conflicts.php:76
-msgid "Zuständige Administratoren"
-msgstr "Responsible administrators"
-
-#: ../app/views/admin/overlapping/selection.php:18
-msgid "Vergleichs-Studiengangteile"
-msgstr "Comparison component"
-
-#: ../app/views/admin/overlapping/selection.php:41
-msgid "Veranstaltungstyp-Filter"
-msgstr "Filter by course type"
-
-#: ../app/views/admin/overlapping/selection.php:62
-msgid "ausgeblendete Veranstaltungen anzeigen"
-msgstr "show hidden courses"
-
-#: ../app/views/admin/overlapping/selection.php:66
-msgid "Vergleichen"
-msgstr "Compare"
-
-#: ../app/views/admin/overlapping/conflicts.php:68
-#: ../app/views/admin/overlapping/courses.php:22
-#, php-format
-msgid "(erw. TN %s)"
-msgstr "(exp. p. %s)"
-
-#: ../app/views/admin/overlapping/conflicts.php:78
-msgid "Veranstaltung nicht berücksichtigen"
-msgstr "Do not regard course"
-
-#: ../app/views/admin/overlapping/conflicts.php:78
-msgid "Veranstaltung berücksichtigen"
-msgstr "Regard course"
-
-#: ../app/views/admin/cache/stats.php:3
-msgid "Cache-Statistiken"
-msgstr ""
-
-#: ../app/views/admin/ilias_interface/edit_server.php:9
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:41
-#: ../app/views/admin/ilias_interface/add_ilias.php:5
-msgid "Art der Verknüpfung"
-msgstr "Link type"
-
-#: ../app/views/admin/ilias_interface/edit_server.php:11
-#: ../app/views/admin/ilias_interface/edit_server.php:21
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:43
-#: ../app/views/admin/ilias_interface/add_ilias.php:7
-msgid "Neue Verknüpfung"
-msgstr "New link"
-
-#: ../app/views/admin/ilias_interface/edit_server.php:13
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:45
-#: ../app/views/admin/ilias_interface/add_ilias.php:9
-#, php-format
-msgid "ILIAS-Installation (Index %s) aus vorheriger Verknüpfung"
-msgstr "ILIAS installtion (index %s) from former link"
-
-#: ../app/views/admin/ilias_interface/edit_server.php:19
-msgid "Kennung der Verknüpfung"
-msgstr "Link identification"
-
-#: ../app/views/admin/ilias_interface/edit_server.php:25
-#: ../app/views/admin/ilias_interface/add_ilias.php:15
-msgid "Name der Installation"
-msgstr "Installation name"
-
-#: ../app/views/admin/ilias_interface/edit_server.php:34
-msgid "ILIAS Version"
-msgstr "ILIAS version"
-
-#: ../app/views/admin/ilias_interface/edit_server.php:43
-msgid "Name des ILIAS-Mandanten"
-msgstr "ILIAS mandator name"
-
-#: ../app/views/admin/ilias_interface/edit_server.php:58
-msgid "LDAP-Einstellung"
-msgstr "LDAP settings"
-
-#: ../app/views/admin/ilias_interface/edit_server.php:71
-msgid "Admin-Account"
-msgstr "Admin account"
-
-#: ../app/views/admin/ilias_interface/edit_server.php:75
-msgid "Admin-Passwort"
-msgstr "Admin password"
-
-#: ../app/views/admin/ilias_interface/edit_permissions.php:4
-msgid "Rollen-Template zum Erstellen von Lernobjekten"
-msgstr "Role template for creating learning objects"
-
-#: ../app/views/admin/ilias_interface/edit_permissions.php:8
-msgid "Erforderliche Rechtestufe zum Erstellen von Lernobjekten"
-msgstr "Required permission level for creating learning objects"
-
-#: ../app/views/admin/ilias_interface/edit_permissions.php:10
-msgid "autor"
-msgstr "autor"
-
-#: ../app/views/admin/ilias_interface/edit_permissions.php:11
-msgid "tutor"
-msgstr "tutor"
-
-#: ../app/views/admin/ilias_interface/edit_permissions.php:12
-msgid "dozent"
-msgstr "dozent"
-
-#: ../app/views/admin/ilias_interface/edit_permissions.php:13
-msgid "admin"
-msgstr "admin"
-
-#: ../app/views/admin/ilias_interface/edit_permissions.php:14
-msgid "root"
-msgstr "root"
-
-#: ../app/views/admin/ilias_interface/edit_permissions.php:19
-msgid "Stud.IP-User können sich bestehende ILIAS-Accounts manuell zuordnen"
-msgstr "Stud.IP users can assign themselves to existing ILIAS accounts"
-
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:4
-msgid "Name des Moduls \"ILIAS-Schnittstelle\" in Veranstaltungen"
-msgstr "Name of the module \"ILIAS interface\" in courses"
-
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:9
-msgid ""
-"Lehrende können den Seitennamen der ILIAS-Schnittstelle in Veranstaltungen "
-"anpassen"
-msgstr "Lecturers can modify the page name of the ILIAS interface in courses"
-
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:13
-msgid ""
-"Namen von Lernobjekten und Kursen, die in ILIAS offline sind, sind in Stud."
-"IP sichtbar"
-msgstr ""
-"Names of learning objects and courses which are offline in ILIAS are visible "
-"in Stud.IP"
-
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:17
-msgid "Lehrende können Statusgruppen nach ILIAS übertragen"
-msgstr "Lecturers can transfer status groups to ILIAS"
-
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:21
-msgid "Lehrende können die Kursverknüpfung einer Veranstaltung ändern"
-msgstr "Lecturers can modify the course assignment of a course"
-
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:25
-msgid ""
-"Lehrende können einen eigenen ILIAS-Kurs verknüpfen, der noch nicht mit Stud."
-"IP verbunden ist"
-msgstr ""
-"Lecturers may link an own ILIAS course which is not connected with Stud.IP "
-"yet"
-
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:29
-msgid ""
-"Account-Seite im Tools-Bereich ist für alle Nutzenden (auch für Studierende "
-"ohne Berechtigung zum Anlegen von Lernobjekten) sichtbar"
-msgstr ""
-"The account page in the tools area is visible for all users (including "
-"students without permission to create learning objects)"
-
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:33
-msgid "Suche nach Lernobjekten verfügbar"
-msgstr "Learning object search available"
-
-#: ../app/views/admin/ilias_interface/edit_interface_settings.php:37
-msgid "SOAP-Cache"
-msgstr "SOAP cache"
-
-#: ../app/views/admin/ilias_interface/soap_methods.php:17
-msgid "SOAP-Methode"
-msgstr "SOAP method"
-
-#: ../app/views/admin/ilias_interface/index.php:5
-msgid "Angebundene ILIAS-Installationen"
-msgstr "Connected ILIAS installations"
-
-#: ../app/views/admin/ilias_interface/index.php:8
-msgid "Neue ILIAS-Installation hinzufügen"
-msgstr "Add new ILIAS installation"
-
-#: ../app/views/admin/ilias_interface/index.php:22
-msgid "Index"
-msgstr "Index"
-
-#: ../app/views/admin/ilias_interface/index.php:31
-msgid ""
-"Diese ILIAS-Installation ist aktiv. Klicken Sie hier, um sie zu deaktivieren."
-msgstr "This ILIAS installation is active. Click here to deactivate it."
-
-#: ../app/views/admin/ilias_interface/index.php:35
-msgid ""
-"Diese ILIAS-Installation ist inaktiv. Klicken Sie hier, um sie zu aktivieren."
-msgstr "This ILIAS installation is inactive. Click here to activate it."
-
-#: ../app/views/admin/ilias_interface/index.php:51
-msgid "Servereinstellungen bearbeiten"
-msgstr "Edit server settings"
-
-#: ../app/views/admin/ilias_interface/index.php:57
-msgid "Inhaltseinstellungen bearbeiten"
-msgstr "Edit content settings"
-
-#: ../app/views/admin/ilias_interface/index.php:63
-msgid "Berechtigungen bearbeiten"
-msgstr "Edit permissions"
-
-#: ../app/views/admin/ilias_interface/index.php:75
-#, php-format
-msgid "Soll die ILIAS-Installation \"%s\" wirklich entfernt werden?"
-msgstr "Do you really want to remove the ILIAS installation \"%s\"?"
-
-#: ../app/views/admin/ilias_interface/index.php:88
-msgid "Es ist keine ILIAS-Installation eingerichtet."
-msgstr "No ILIAS installation is configured."
-
-#: ../app/views/admin/ilias_interface/edit_content.php:5
-msgid "Wurzelkategorie für Stud.IP-Daten"
-msgstr "Root category for Stud.IP data"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:14
-msgid "Kategorie mit User-Daten"
-msgstr "User data category"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:15
-msgid "User_daten"
-msgstr "User_data"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:20
-msgid ""
-"Persönliche ILIAS-Kategorie erst erzeugen, wenn Lernobjekte angelegt werden"
-msgstr ""
-"Create the personal ILIAS category after learning objects have been created"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:24
-msgid "Persönliche ILIAS-Kategorie auf den Schreibtisch legen"
-msgstr "Put the personal ILIAS category on the desktop"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:28
-msgid ""
-"Beim Löschen von Stud.IP-Accounts ILIAS-Accounts ebenfalls löschen (alle "
-"zugehörigen Objekte werden gelöscht!)"
-msgstr ""
-
-#: ../app/views/admin/ilias_interface/edit_content.php:31
-msgid "Prefix für automatisch angelegte Usernamen"
-msgstr "Prefix for automatically created usernames"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:33
-msgid "Kein Präfix"
-msgstr "No prefix"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:39
-msgid ""
-"Datenfeld (Name) mit Matrikelnummer (wenn leer, wird keine Matrikelnummer "
-"übergeben)"
-msgstr ""
-
-#: ../app/views/admin/ilias_interface/edit_content.php:43
-msgid "Struktur für angelegte Kurse"
-msgstr "Structure for created courses"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:47
-msgid "Keine Semester-Kategorien"
-msgstr "No semester categories"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:51
-msgid "Semester als Kategorie oberhalb der Einrichtung"
-msgstr "Semester as category above the institute"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:55
-msgid "Semester als Kategorie innerhalb der Einrichtung"
-msgstr "Semester as category inside the institute"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:58
-msgid "Kurstitel"
-msgstr "Course title"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:62
-msgid "Stud.IP-Veranstaltung \"Veranstaltungsname\""
-msgstr "Stud.IP course \"Course name\""
-
-#: ../app/views/admin/ilias_interface/edit_content.php:66
-msgid "Stud.IP-Veranstaltung \"Veranstaltungsname\" (Semester)"
-msgstr "Stud.IP course \"Course name\" (semester)"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:74
-msgid "Veranstaltungsname (Semester)"
-msgstr "Course name (semester)"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:78
-msgid "Stud.IP-Veranstaltungsnummer im ILIAS-Kurstitel anzeigen"
-msgstr "Display Stud.IP course number in the title of the ILIAS course"
-
-#: ../app/views/admin/ilias_interface/edit_content.php:82
-msgid ""
-"Beim Löschen von Stud.IP-Veranstaltungen ILIAS-Kurse ebenfalls löschen (alle "
-"untergeordneten Objekte werden gelöscht!)"
-msgstr ""
-
-#: ../app/views/admin/courseplanning/viewcolumns.php:25
-msgid "Spalte löschen"
-msgstr "Delete column"
-
-#: ../app/views/admin/courseplanning/viewcolumns.php:28
-msgid "Wollen Sie die Spalte wirklich entfernen?"
-msgstr "Do you really want to delete the column?"
-
-#: ../app/views/admin/courseplanning/viewcolumns.php:39
-msgid "Zusätzliche Spalte"
-msgstr "Additional column"
-
-#: ../app/views/admin/courseplanning/nonconform.php:3
-msgid ""
-"Folgende regelmäßige Termine von Veranstaltungen passen nicht in das "
-"vorgegebene Zeitraster:"
-msgstr ""
-"The following periodic appointments of courses do not fit into the given "
-"time grid:"
-
-#: ../app/views/admin/courseplanning/rename_column.php:3
-msgid "Spaltenname"
-msgstr "Column name"
-
-#: ../app/views/admin/courseplanning/pick_color.php:8
-#, php-format
-msgid "Farbtyp für alle VA dieses Typs (%s) übernehmen"
-msgstr "Apply colour type for all courses of this type (%s)"
-
-#: ../app/views/admin/courseplanning/weekday.php:46
-#: ../app/views/admin/courseplanning/index.php:37
-msgid "Veranstaltungen ohne Termine"
-msgstr "Courses without dates"
-
-#: ../app/views/admin/api/permissions.php:6
-msgid "Route"
-msgstr "Route"
-
-#: ../app/views/admin/api/permissions.php:7
-msgid "Methoden"
-msgstr "Methods"
-
-#: ../app/views/admin/api/permissions.php:8
-msgid "Zugriff auf"
-msgstr "Access to"
-
-#: ../app/views/admin/api/config.php:10
-msgid "REST-API aktiviert"
-msgstr "REST API activated"
-
-#: ../app/views/admin/api/config.php:15
-msgid "Standard-Authentifizierung beim Login"
-msgstr "Use default authentication at the login"
-
-#: ../app/views/admin/api/index.php:11 ../app/views/admin/api/edit.php:90
-msgid "Kommerziell"
-msgstr "Commercial"
-
-#: ../app/views/admin/api/index.php:43
-#, php-format
-msgid "Schlüssel anzeigen für Applikation \"%s\""
-msgstr "Show key for app \"%s\""
-
-#: ../app/views/admin/api/index.php:46
-msgid "Applikation bearbeiten"
-msgstr "Edit app"
-
-#: ../app/views/admin/api/index.php:49
-msgid "Zugriffsberechtigungen verwalten"
-msgstr "Manage permissions"
-
-#: ../app/views/admin/api/index.php:54
-#, php-format
-msgid "Applikation \"%s\" entfernen"
-msgstr "Delete app \"%s\""
-
-#: ../app/views/admin/api/index.php:67
-msgid "Es wurde noch keine Applikation registriert."
-msgstr "No app registered."
-
-#: ../app/views/admin/api/index.php:68
-#, php-format
-msgid ""
-"Klicken Sie <a href=\"%s\">hier</a>, um eine Applikation zu registrieren."
-msgstr "Click <a href=\"%s\">here</a> to register an app."
-
-#: ../app/views/admin/api/edit.php:6
-#, php-format
-msgid "Registrierte Applikation \"%s\" bearbeiten"
-msgstr "Edit registered application \"%s\""
-
-#: ../app/views/admin/api/edit.php:26
-msgid "Aktiviert"
-msgstr "Activated"
-
-#: ../app/views/admin/api/edit.php:33
-msgid "Beispiel-Applikation"
-msgstr "Example application"
-
-#: ../app/views/admin/api/edit.php:39
-msgid "Kontaktperson"
-msgstr "Contact person"
-
-#: ../app/views/admin/api/edit.php:47
-msgid "Kontaktadresse"
-msgstr "Contact address"
-
-#: ../app/views/admin/api/edit.php:55
-msgid "Callback URL"
-msgstr "Callback URL"
-
-#: ../app/views/admin/api/edit.php:64
-msgid "Consumer Key"
-msgstr "Consumer key"
-
-#: ../app/views/admin/api/edit.php:70
-msgid "Consumer Secret"
-msgstr "Consumer secret"
-
-#: ../app/views/admin/api/edit.php:76
-msgid "Erstellt am %d.%m.%Y %H:%M:%S"
-msgstr "Created %d.%m.%Y %H:%M:%S"
-
-#: ../app/views/admin/api/edit.php:78
-msgid "Zuletzt geändert am %d.%m.%Y %H:%M:%S"
-msgstr "Last modified %d.%m.%Y %H:%M:%S"
-
-#: ../app/views/admin/api/edit.php:85
-msgid "Applikation-Details"
-msgstr "Details"
-
-#: ../app/views/admin/api/edit.php:120
-msgid "Notizen"
-msgstr "Notes"
-
-#: ../app/views/admin/configuration/table-row.php:17
-msgid "TRUE"
-msgstr "TRUE"
-
-#: ../app/views/admin/configuration/table-row.php:19
-msgid "FALSE"
-msgstr "FALSE"
-
-#: ../app/views/admin/configuration/table-row.php:26
-msgid "Konfigurationsparameter bearbeiten"
-msgstr "Edit configuration parameter values"
-
-#: ../app/views/admin/configuration/type-edit.php:7
-msgid "aktiviert"
-msgstr "activated"
-
-#: ../app/views/admin/configuration/edit_range_config.php:11
-#: ../app/views/admin/banner/info.php:13 ../app/views/admin/banner/edit.php:28
-#: ../app/views/tour/admin_details.php:33
-msgid "Beschreibung:"
-msgstr "Description:"
-
-#: ../app/views/admin/configuration/configuration.php:4
-msgid "Globale Systemkonfigurationen"
-msgstr ""
-
-#: ../app/views/admin/configuration/configuration.php:16
-msgid " Ohne Kategorie "
-msgstr " Without category "
-
-#: ../app/views/admin/configuration/edit_configuration.php:7
-msgid "Konfigurationsparameter editieren"
-msgstr "Edit configuration parameter values"
-
-#: ../app/views/admin/configuration/edit_configuration.php:28
-msgid "kein Eintrag vorhanden"
-msgstr "no entry available"
-
-#: ../app/views/admin/configuration/edit_configuration.php:53
-msgid "Bitte die neue Kategorie eingeben"
-msgstr "Please enter the new category"
-
-#: ../app/views/admin/course_wizard_steps/index.php:2
-msgid "Es gibt keine aktiven Schritte für den Anlegeassistenten!"
-msgstr "No active steps for course wizard!"
-
-#: ../app/views/admin/course_wizard_steps/index.php:8
-msgid "Vorhandene Schritte im Anlegeassistenten für Veranstaltungen"
-msgstr "Steps for course wizard"
-
-#: ../app/views/admin/course_wizard_steps/index.php:11
-#: ../app/views/tour/admin_details.php:160
-msgid "Neuen Schritt hinzufügen"
-msgstr "Add step"
-
-#: ../app/views/admin/course_wizard_steps/index.php:24
-#: ../app/views/admin/course_wizard_steps/edit.php:11
-msgid "PHP-Klasse"
-msgstr "PHP class"
-
-#: ../app/views/admin/course_wizard_steps/index.php:60
-#, php-format
-msgid "Soll der Eintrag \"%s\" wirklich gelöscht werden?"
-msgstr "Delete \"%s\"?"
-
-#: ../app/views/admin/course_wizard_steps/index.php:73
-msgid ""
-"Es sind keine Schritte für den Veranstaltungsanlegeassistenten registriert!"
-msgstr "No registered steps for course wizard!"
-
-#: ../app/views/admin/course_wizard_steps/edit.php:7
-msgid "Name des Schrittes"
-msgstr "Name of step"
-
-#: ../app/views/admin/course_wizard_steps/edit.php:30
-msgid "Nummer des Schritts im Assistenten"
-msgstr "Number of step in wizard"
-
-#: ../app/views/admin/course_wizard_steps/edit.php:35
-msgid "Schritt ist aktiv"
-msgstr "Step is active"
-
-#: ../app/views/admin/semester/lock.php:8
-msgid "Teilnehmende zu Lesern herabstufen"
-msgstr "Demote participants to readers"
-
-#: ../app/views/admin/semester/lock.php:22
-msgid "Zusätzliche optionale Sperrebene"
-msgstr "Additional optional lockrule"
-
-#: ../app/views/admin/semester/lock.php:25
-#: ../app/views/admin/courses/lock_preselect.php:1
-#: ../app/views/admin/courses/aux_preselect.php:1
-msgid "Für alle Veranstaltungen"
-msgstr "For all courses"
-
-#: ../app/views/admin/semester/index.php:25
-msgid "Veranstaltungszeitraum"
-msgstr "Course period"
-
-#: ../app/views/admin/semester/index.php:35
-#: ../app/views/admin/holidays/index.php:29
-msgid "In der gewählten Ansicht gibt es keine Einträge."
-msgstr "There are no entries in this view."
-
-#: ../app/views/admin/semester/index.php:37
-msgid "Es wurden noch keine Semester angelegt."
-msgstr "No semesters have been created yet."
-
-#: ../app/views/admin/semester/index.php:51
-#: ../app/views/admin/semester/index.php:117
-msgid ""
-"Das Semester kann nicht gelöscht werden, weil Veranstaltungen zugeordnet "
-"sind."
-msgstr "The semester cannot be deleted since courses are assigned to it."
-
-#: ../app/views/admin/semester/index.php:62
-msgid "keins"
-msgstr "none"
-
-#: ../app/views/admin/semester/index.php:76
-#, php-format
-msgid "(+%u implizit)"
-msgstr "(+%u implicit)"
-
-#: ../app/views/admin/semester/index.php:86
-msgid "Semesterangaben bearbeiten"
-msgstr "Edit semester details"
-
-#: ../app/views/admin/semester/index.php:94
-msgid "Semester sperren"
-msgstr "Lock semester"
-
-#: ../app/views/admin/semester/index.php:101
-#: ../app/views/admin/semester/index.php:103
-msgid "Semester entsperren"
-msgstr "Unlock semester"
-
-#: ../app/views/admin/semester/index.php:105
-msgid ""
-"Soll das Semester wirklich entsperrt werden? Anmelderegeln und Sperrebenen "
-"werden nicht verändert."
-msgstr ""
-"Do you really want to unlock the semester? Admission rules and lockrules "
-"will not be modified."
-
-#: ../app/views/admin/semester/index.php:114
-#: ../app/views/admin/semester/index.php:127
-#: ../app/views/admin/semester/index.php:129
-msgid "Semester löschen"
-msgstr "Delete semester"
-
-#: ../app/views/admin/semester/index.php:131
-msgid "Soll das Semester wirklich gelöscht werden?"
-msgstr "Do you really want to delete this semester?"
-
-#: ../app/views/admin/semester/index.php:148
-msgid "Markierte Einträge löschen"
-msgstr "Delete selected entries"
-
-#: ../app/views/admin/semester/index.php:149
-msgid "Sollen die Semester wirklich gelöscht werden?"
-msgstr "Do you really want to delete these semesters?"
-
-#: ../app/views/admin/semester/edit.php:10
-msgid "Name des Semesters"
-msgstr "Name of semester"
-
-#: ../app/views/admin/semester/edit.php:35
-msgid "Externe ID"
-msgstr "External ID"
-
-#: ../app/views/admin/semester/edit.php:50
-msgid ""
-"Das Startdatum kann nur bei Semestern geändert werden, in denen keine "
-"Veranstaltungen liegen!"
-msgstr ""
-"The starting date only of semesters without any courses can be changed!"
-
-#: ../app/views/admin/semester/edit.php:75
-msgid "Vorlesungszeitraum"
-msgstr "Teaching period"
-
-#: ../app/views/admin/install/session_error.php:2
-msgid ""
-"Ihre PHP-Konfiguration bezüglich Sessions ist fehlerhaft oder Sie haben den "
-"Installationsassistenten nicht korrekt gestartet."
-msgstr ""
-"Your PHP configuration regarding sessions is incorrect or you did not start "
-"the installation wizard correctly."
-
-#: ../app/views/admin/install/permissions.php:2
-msgid ""
-"In diesem Schritt wird geprüft, ob ausgewählte Datenverzeichnisse "
-"beschreibbar sind."
-msgstr ""
-"In this step, the system checks whether selected data directories can be "
-"written to."
-
-#: ../app/views/admin/install/permissions.php:4
-msgid ""
-"Sie können fortfahren, wenn sichergestellt ist, dass die notwendigen "
-"Verzeichnisse schreibbar sind!"
-msgstr ""
-"You can continue if it is assured that the necessary folders are writeable!"
-
-#: ../app/views/admin/install/permissions.php:8
-msgid ""
-"Sollte der Ordner \"config\" nicht schreibbar sein, wird die erzeugte "
-"Konfiguration am Ende der Installation angezeigt und muss von Hand in die "
-"entsprechenden Dateien kopiert werden."
-msgstr ""
-"If the \"config\" folder is not writable, the created configuration is "
-"displayed at the end of the installation and must be copied manually into "
-"the appropriate files."
-
-#: ../app/views/admin/install/permissions.php:13
-msgid "Schreibbare Dateien/Ordner"
-msgstr "Writable files/folders"
-
-#: ../app/views/admin/install/permissions.php:18
-#: ../app/views/admin/install/mysql_check.php:11
-#: ../app/views/admin/install/mysql_check.php:37
-#: ../app/views/admin/install/php_check.php:11
-#: ../app/views/admin/install/php_check.php:48
-#: ../app/views/admin/install/php_check.php:68
-msgid "Ok"
-msgstr "Ok"
-
-#: ../app/views/admin/install/permissions.php:20
-msgid "Fehler, nicht schreibbar"
-msgstr "Error, not writable"
-
-#: ../app/views/admin/install/permissions.php:22
-msgid "Nicht schreibbar (unproblematisch)"
-msgstr "Not writable (unproblematic)"
-
-#: ../app/views/admin/install/permissions.php:29
-msgid ""
-"Mindestens ein Verzeichnis kann nicht von der Anwendung beschrieben werden."
-msgstr "At least one directory cannot be written to."
-
-#: ../app/views/admin/install/permissions.php:31
-msgid ""
-"Ändern Sie die Berechtigungen für das Verzeichnis und klicken Sie auf "
-"„Erneut prüfen“."
-msgstr "Change the permissions for the folder and click \"Re-check\"."
-
-#: ../app/views/admin/install/layout.php:17
-msgid "Installationsassistent"
-msgstr "Installation wizard"
-
-#: ../app/views/admin/install/layout.php:48
-msgid "Erneut prüfen"
-msgstr "Re-check"
-
-#: ../app/views/admin/install/layout.php:65
-msgid "Stud.IP Entwicklungs- und Anwendungsforum"
-msgstr "Stud.IP Development and Application Forum"
-
-#: ../app/views/admin/install/mysql_check.php:2
-msgid ""
-"In diesem Schritt wird geprüft, ob die Konfiguration der Datenbank korrekt "
-"ist."
-msgstr "This step checks whether the configuration of the database is correct."
-
-#: ../app/views/admin/install/mysql_check.php:4
-#: ../app/views/admin/install/php_check.php:4
-msgid "Wenn alle Häkchen grün sind, können Sie fortfahren!"
-msgstr "If all check marks are green, you can continue!"
-
-#: ../app/views/admin/install/mysql_check.php:7
-msgid "Datenbank-Version"
-msgstr "Database version"
-
-#: ../app/views/admin/install/mysql_check.php:15
-#, php-format
-msgid "Fehler, mindestens MySQL/MariaDB %s benötigt"
-msgstr "Error, at least MySQL/MariaDB version %s required"
-
-#: ../app/views/admin/install/mysql_check.php:25
-#, php-format
-msgid "Stud.IP benötigt eine MySQL/MariaDB-Datenbank ab mindestens Version %s."
-msgstr "Stud.IP requires a MySQL/MariaDB database from at least version %s."
-
-#: ../app/views/admin/install/mysql_check.php:44
-#, php-format
-msgid "Fehler, Wert ist %s und darf nicht %s sein"
-msgstr "Error, value is %s and must not be %s"
-
-#: ../app/views/admin/install/mysql_check.php:50
-#: ../app/views/admin/install/php_check.php:74
-#, php-format
-msgid "Fehler, Wert ist %s und muss %s sein"
-msgstr "Error, value is %s and must be %s"
-
-#: ../app/views/admin/install/mysql_check.php:51
-#: ../app/views/admin/install/php_check.php:75
-msgid "(leer)"
-msgstr "(empty)"
-
-#: ../app/views/admin/install/mysql_check.php:62
-msgid ""
-"Bitte ändern Sie die Einstellungen in Ihrer Datenbankkonfiguration oder "
-"wenden Sie sich an Ihren Hoster."
-msgstr ""
-"Please change the settings in your database configuration or contact your "
-"host."
-
-#: ../app/views/admin/install/mysql_check.php:64
-msgid "Klicken Sie anschließend auf „Erneut prüfen“."
-msgstr "Then click on \"Re-check\"."
-
-#: ../app/views/admin/install/finish.php:1
-msgid "Stud.IP ist auf Ihrem Server nun vollständig installiert!"
-msgstr "Stud.IP is now completely installed on your server!"
-
-#: ../app/views/admin/install/finish.php:4
-msgid ""
-"Der Klick auf den Button „Zum neuen Stud.IP“ schließt diesen Assistenten und "
-"führt Sie zur Anmeldung in Ihrem neuen Stud.IP. Melden Sie sich mit  Ihren "
-"root-Zugangsdaten an."
-msgstr ""
-"Clicking on the button \"Go to Stud.IP\" closes this assistant and leads you "
-"to the login in your new Stud.IP. Please log in with your root credentials."
-
-#: ../app/views/admin/install/finish.php:9
-msgid ""
-"Dort werden Sie ggf. aufgefordert, zunächst weitere notwendige "
-"Migrationsschritte durchzuführen!"
-msgstr ""
-"There you may be asked to carry out further necessary migration steps first!"
-
-#: ../app/views/admin/install/finish.php:14
-#, php-format
-msgid ""
-"Haben Sie Fragen, Anregungen oder benötigen Unterstützung, helfen wir Ihnen "
-"gerne weiter! Sie finden uns auf %sdevelop.studip.de%s."
-msgstr ""
-"If you have questions, suggestions or need support, we will be happy to "
-"help! You can find us at %sdevelop.studip.de%s."
-
-#: ../app/views/admin/install/install.php:7
-#: ../app/views/admin/install/install-basic.php:5
-msgid ""
-"Datenbanktabellen wurden erzeugt und ausgewählte Beispieldaten eingetragen"
-msgstr ""
-"Database tables have been created and selected sample data was imported"
-
-#: ../app/views/admin/install/install.php:11
-msgid "Fehler beim Installieren"
-msgstr "Error during installation"
-
-#: ../app/views/admin/install/install.php:20
-#: ../app/views/admin/install/install-basic.php:11
-msgid "Das Konto für das Haupt-Administrator-Konto wurde eingerichtet"
-msgstr "The account for the root administrator account has been set up"
-
-#: ../app/views/admin/install/install.php:23
-msgid "Fehler beim Einrichten"
-msgstr "Error during account creation"
-
-#: ../app/views/admin/install/install.php:32
-#: ../app/views/admin/install/install-basic.php:18
-#, php-format
-msgid ""
-"Konfiguration wurde in die Datenbank und die Dateien %sconfig/config_local."
-"inc.php%s sowie %sconfig/config.inc.php%s geschrieben"
-msgstr ""
-"Configuration was written to the database and the files %sconfig/"
-"config_local.inc.php%s and %sconfig/config.inc.php%s"
-
-#: ../app/views/admin/install/install.php:42
-#: ../app/views/admin/install/install-basic.php:29
-msgid ""
-"Konnte nicht gespeichert werden. Bitte erzeugen Sie die beiden folgenden "
-"Dateien mit dem jeweiligen Inhalt:"
-msgstr ""
-"Could not be saved. Please create the following two files with the "
-"respective contents:"
-
-#: ../app/views/admin/install/mysql.php:2
-msgid ""
-"In diesem Schritt verbinden Sie Ihre Stud.IP-Installation mit Ihrer "
-"bestehenden Datenbank."
-msgstr ""
-"In this step you connect your Stud.IP installation with your existing "
-"database."
-
-#: ../app/views/admin/install/mysql.php:6
-msgid "Verbindungsdaten für die Datenbank"
-msgstr "Connection settings for the database"
-
-#: ../app/views/admin/install/mysql.php:8
-#: ../app/views/admin/install/index.php:30
-msgid "Datenbank-Host"
-msgstr "Database host"
-
-#: ../app/views/admin/install/mysql.php:13
-msgid "Datenbank-Nutzer"
-msgstr "Database user"
-
-#: ../app/views/admin/install/mysql.php:18
-#: ../app/views/admin/install/index.php:33
-msgid "Datenbank-Passwort"
-msgstr "Database password"
-
-#: ../app/views/admin/install/mysql.php:23
-msgid "Name der Datenbank"
-msgstr "Database name"
-
-#: ../app/views/admin/install/mysql.php:31
-msgid "Versuche Datenbank anzulegen, falls sie noch nicht existiert"
-msgstr "Try to create a database if it does not already exist"
-
-#: ../app/views/admin/install/mysql.php:35
-msgid "Verbindung prüfen"
-msgstr "Check connection"
-
-#: ../app/views/admin/install/index.php:1
-msgid "Willkommen beim Installationsassistenten für Stud.IP!"
-msgstr "Welcome to the installation wizard for Stud.IP!"
-
-#: ../app/views/admin/install/index.php:5
-#, php-format
-msgid ""
-"Dieser Assistent führt Sie in %u Schritten durch die Installation von Stud."
-"IP. Nach dem letzten Schritt haben Sie eine voll funktionsfähige Stud.IP-"
-"Installation mit Datenbank und von Ihnen ausgewählten Beispiel-Inhalten für "
-"den ersten Testbetrieb."
-msgstr ""
-"This wizard guides you in %u steps through the installation of Stud.IP. "
-"After the last step you will have a fully functional Stud.IP installation "
-"with database and sample content of your choice for the first test run."
-
-#: ../app/views/admin/install/index.php:12
-msgid "Die Installation dauert ca. 10 Minuten."
-msgstr "The installation takes about 10 minutes."
-
-#: ../app/views/admin/install/index.php:16
-msgid "Sie benötigen für die Installation"
-msgstr "For the installation you need"
-
-#: ../app/views/admin/install/index.php:18
-msgid "eine Datenbank (MySQL/MariaDB)"
-msgstr "a database (MySQL/MariaDB)"
-
-#: ../app/views/admin/install/index.php:20
-msgid ""
-"Zugriff auf den Server (als Server-Administrator oder über Ihren Hoster)"
-msgstr "Access to the server (as server administrator or via your hoster)"
-
-#: ../app/views/admin/install/index.php:27
-msgid "Bitte halten Sie folgende Informationen bereit:"
-msgstr "Please have the following information ready:"
-
-#: ../app/views/admin/install/index.php:31
-msgid "Datenbank-Name"
-msgstr "Database name"
-
-#: ../app/views/admin/install/index.php:32
-msgid "Datenbank-Nutzername"
-msgstr "Database username"
-
-#: ../app/views/admin/install/index.php:40
-#, php-format
-msgid ""
-"Eine ausführliche Installationsanleitung und weiterführende Hilfen finden "
-"Sie auf den %sHilfe-Seiten von Stud.IP%s und über die Fußleiste des "
-"Assistenten."
-msgstr ""
-"Detailed installation instructions and further help can be found on the "
-"%shelp pages of Stud.IP%s and via the footer of the wizard."
-
-#: ../app/views/admin/install/index.php:49
-msgid ""
-"Klicken Sie auf „Assistent starten“, wenn Sie mit der Installation beginnen "
-"wollen!"
-msgstr "Click on \"Start Wizard\" if you want to start the installation!"
-
-#: ../app/views/admin/install/prepare.php:2
-msgid ""
-"In diesem Schritt wählen Sie aus, welche Beispieldaten in Ihre Datenbank "
-"eingespielt werden und geben einige Grunddaten zur Installation an, die in "
-"der Datenbank gespeichert werden."
-msgstr ""
-"In this step, you select which sample data is imported into your database "
-"and specify some basic installation data to be stored in the database."
-
-#: ../app/views/admin/install/prepare.php:5
-msgid "Die Grunddaten können Sie nach der Installation weiterhin bearbeiten."
-msgstr "You can edit the basic data after the installation."
-
-#: ../app/views/admin/install/prepare.php:8
-msgid "SQL-Daten einspielen"
-msgstr "Import SQL data"
-
-#: ../app/views/admin/install/prepare.php:29
-msgid "Daten zum System"
-msgstr "System configuration"
-
-#: ../app/views/admin/install/prepare.php:32
-msgid "Name der Stud.IP-Installation"
-msgstr "Name of the Stud.IP installation"
-
-#: ../app/views/admin/install/prepare.php:40
-msgid "Id der Stud.IP-Installation"
-msgstr "Id of the Stud.IP installation"
-
-#: ../app/views/admin/install/prepare.php:44
-msgid "Eindeutiges, gängiges Kürzel Ihrer Einrichtung"
-msgstr "Unique, common abbreviation of your institution"
-
-#: ../app/views/admin/install/prepare.php:49
-msgid "E-Mail-Adresse für Kontakt"
-msgstr "E-mail address for contact and support"
-
-#: ../app/views/admin/install/prepare.php:57
-msgid "URL der Stud.IP-Installation"
-msgstr "URL to the Stud.IP installation"
-
-#: ../app/views/admin/install/prepare.php:66
-msgid "URL der betreibenden Einrichtung"
-msgstr "URL of the operating institution"
-
-#: ../app/views/admin/install/prepare.php:73
-msgid "Diese Stud.IP-Installation läuft im"
-msgstr "This Stud.IP installation runs in"
-
-#: ../app/views/admin/install/prepare.php:78
-msgid "Entwicklungsmodus"
-msgstr "Development mode"
-
-#: ../app/views/admin/install/prepare.php:86
-msgid "Produktivmodus"
-msgstr "Production mode"
-
-#: ../app/views/admin/install/php_check.php:2
-msgid ""
-"In diesem Schritt wird geprüft, ob die PHP-Konfiguration auf dem Server den "
-"Anforderungen von Stud.IP entspricht."
-msgstr ""
-"In this step it is checked whether the PHP configuration on the server meets "
-"the requirements of Stud.IP."
-
-#: ../app/views/admin/install/php_check.php:7
-msgid "PHP-Version"
-msgstr "PHP version"
-
-#: ../app/views/admin/install/php_check.php:15
-#, php-format
-msgid "Fehler, mindestens PHP %s benötigt"
-msgstr "Error, at least PHP version %s required"
-
-#: ../app/views/admin/install/php_check.php:25
-#, php-format
-msgid ""
-"Bevor Sie mit der Installation fortfahren können, müssen Sie die PHP-Version "
-"Ihres Servers auf mind. Version %s aktualisieren."
-msgstr ""
-"Before you can proceed with the installation, you must upgrade the PHP "
-"version of your server to at least version %s."
-
-#: ../app/views/admin/install/php_check.php:29
-msgid ""
-"Bei Problemen mit dem Aktualisieren Ihrer PHP-Version wenden Sie sich an "
-"Ihren Hoster."
-msgstr ""
-"If you have problems upgrading your PHP version, please contact your host."
-
-#: ../app/views/admin/install/php_check.php:34
-msgid "PHP-Module"
-msgstr "PHP modules"
-
-#: ../app/views/admin/install/php_check.php:39
-msgid "Nicht installiert"
-msgstr "Not installed"
-
-#: ../app/views/admin/install/php_check.php:43
-#, php-format
-msgid "Optional benötigt für \"%s\""
-msgstr "Optionally required for \"%s\""
-
-#: ../app/views/admin/install/php_check.php:55
-msgid ""
-"Mindestens ein PHP-Modul muss noch installiert werden, bevor Sie mit der "
-"Installation von Stud.IP fortfahren können."
-msgstr ""
-"At least one PHP module must be installed before you can proceed with the "
-"installation of Stud.IP."
-
-#: ../app/views/admin/install/php_check.php:57
-msgid ""
-"Bei Problemen mit der Installation von Modulen wenden Sie sich an Ihren "
-"Hoster."
-msgstr ""
-"In case of problems with the installation of modules, please contact your "
-"hoster."
-
-#: ../app/views/admin/install/php_check.php:62
-msgid "PHP-Einstellungen"
-msgstr "PHP settings"
-
-#: ../app/views/admin/install/php_check.php:86
-#, php-format
-msgid ""
-"Die rot markierten Einstellungen müssen in der Datei %s%s%s auf den "
-"angegebenen Wert gesetzt werden."
-msgstr ""
-"The settings marked in red must be set to the specified value in the file %s"
-"%s%s."
-
-#: ../app/views/admin/install/php_check.php:93
-msgid ""
-"Denken Sie daran, dass nach einer Änderung der Server neu gestartet werden "
-"muss!"
-msgstr "Remember that the server must be restarted after a change!"
-
-#: ../app/views/admin/install/php_check.php:95
-msgid ""
-"Wenn Sie dazu keine Berechtigung haben, wenden Sie sich an Ihren Hoster."
-msgstr "If you are not authorised to do so, contact your host."
-
-#: ../app/views/admin/install/root.php:2
-msgid ""
-"In diesem Schritt legen Sie die Benutzerdaten für ein Haupt-Administrator-"
-"Konto (root) in Stud.IP fest."
-msgstr ""
-"In this step, you specify the credentials for a main administrator account "
-"(root) in Stud.IP."
-
-#: ../app/views/admin/install/root.php:4
-msgid "Bitte merken Sie sich die Zugangsdaten!"
-msgstr "Please remember your credentials!"
-
-#: ../app/views/admin/install/root.php:7
-msgid "Konto für Root einrichten"
-msgstr "Set up account for root"
-
-#: ../app/views/admin/install/root.php:42
-msgid "Wenn Sie jetzt auf installieren klicken,"
-msgstr "If you click Install now,"
-
-#: ../app/views/admin/install/root.php:44
-msgid "werden die notwendigen Datenbanktabellen erzeugt"
-msgstr "the necessary database tables are created"
-
-#: ../app/views/admin/install/root.php:45
-msgid "werden die ausgewählten Beispieldaten eingetragen"
-msgstr "the selected sample data is imported"
-
-#: ../app/views/admin/install/root.php:46
-msgid "wird die Grundkonfiguration für das System in der Datenbank gespeichert"
-msgstr "the basic configuration for the system is written to the database"
-
-#: ../app/views/admin/install/root.php:47
-msgid "wird ein Root-Konto für Sie eingerichtet."
-msgstr "a root account will be set up for you."
-
-#: ../app/views/admin/cronjobs/schedules/periodic-schedule.php:21
-#: ../app/views/admin/cronjobs/schedules/edit.php:135
-msgid "Minute"
-msgstr "Minute"
-
-#: ../app/views/admin/cronjobs/schedules/periodic-schedule.php:25
-#: ../app/views/admin/cronjobs/schedules/edit.php:138
-#: ../app/views/calendar/single/edit.php:76
-msgid "Stunde"
-msgstr "Hour"
-
-#: ../app/views/admin/cronjobs/schedules/display.php:17
-#: ../app/views/admin/cronjobs/schedules/parameters.php:6
-msgid "Parameter"
-msgstr "Parameter(s)"
-
-#: ../app/views/admin/cronjobs/schedules/display.php:27
-#: ../app/views/admin/cronjobs/schedules/index.php:24
-#: ../app/views/admin/cronjobs/schedules/edit.php:61
-#: ../app/views/admin/cronjobs/logs/display.php:5
-#: ../app/views/admin/cronjobs/logs/index.php:41
-#: ../app/views/admin/cronjobs/tasks/index.php:22
-msgid "Aufgabe"
-msgstr "Task"
-
-#: ../app/views/admin/cronjobs/schedules/display.php:33
-#, php-format
-msgid "Einmalig am %s um %s"
-msgstr "Once at %s %s"
-
-#: ../app/views/admin/cronjobs/schedules/display.php:36
-#: ../app/views/admin/cronjobs/logs/index.php:83
-msgid "Ausgeführt"
-msgstr "Executed"
-
-#: ../app/views/admin/cronjobs/schedules/display.php:39
-#, php-format
-msgid "am %s um %s"
-msgstr "at %s %s"
-
-#: ../app/views/admin/cronjobs/schedules/display.php:46
-#: ../app/views/admin/cronjobs/schedules/index.php:117
-msgid "Regelmässig"
-msgstr "Regular"
-
-#: ../app/views/admin/cronjobs/schedules/display.php:50
-msgid "Ausführungen"
-msgstr "Executions"
-
-#: ../app/views/admin/cronjobs/schedules/display.php:54
-msgid "Nächste Ausführung"
-msgstr "Next execution"
-
-#: ../app/views/admin/cronjobs/schedules/display.php:59
-msgid "Letzte Ausführung"
-msgstr "Last execution"
-
-#: ../app/views/admin/cronjobs/schedules/display.php:62
-msgid "Letztes Ergebnis"
-msgstr "Last result"
-
-#: ../app/views/admin/cronjobs/schedules/display.php:71
-#: ../app/views/admin/cronjobs/schedules/index.php:133
-#: ../app/views/admin/cronjobs/tasks/index.php:61
-msgid "Log anzeigen"
-msgstr "Display log"
-
-#: ../app/views/admin/cronjobs/schedules/parameters.php:56
-msgid "Bitte wählen Sie einen Wert aus"
-msgstr "Please choose a value"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:6
-#: ../app/views/admin/cronjobs/logs/index.php:6
-#: ../app/views/admin/plugin/index.php:168
-msgid "Darstellung einschränken"
-msgstr "Filter entries"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:8
-#, php-format
-msgid "Passend: %u von %u Cronjobs"
-msgstr "Matched: %u of %u cronjobs"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:14
-#: ../app/views/admin/cronjobs/schedules/index.php:26
-#: ../app/views/admin/cronjobs/schedules/index.php:37
-msgid "Alle Cronjobs anzeigen"
-msgstr "Display all cronjobs"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:16
-msgid "Nur einmalige Cronjobs anzeigen"
-msgstr "Display only cronjobs of type \"once\""
-
-#: ../app/views/admin/cronjobs/schedules/index.php:19
-msgid "Nur regelmässige Cronjobs anzeigen"
-msgstr "Display only cronjobs of type \"regular\""
-
-#: ../app/views/admin/cronjobs/schedules/index.php:39
-msgid "Nur aktive Cronjobs anzeigen"
-msgstr "Display only active cronjobs"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:42
-msgid "Nur deaktivierte Cronjobs anzeigen"
-msgstr "Display only deactivated cronjobs"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:82
-#: ../app/views/admin/cronjobs/logs/display.php:2
-#: ../app/views/admin/cronjobs/logs/index.php:29
-#: ../app/views/admin/cronjobs/logs/index.php:85
-msgid "Cronjob"
-msgstr "Cronjob"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:85
-msgid "Ausführung"
-msgstr "Execution"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:92
-#: ../app/views/admin/cronjobs/logs/index.php:93
-#: ../app/views/admin/cronjobs/tasks/index.php:32
-msgid "Keine Einträge vorhanden"
-msgstr "No entries available"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:104
-msgid ""
-"Cronjob kann nicht aktiviert werden, da die zugehörige Aufgabe deaktiviert "
-"ist."
-msgstr ""
-"Cronjob cannot be activated since the associated task has been deactivated."
-
-#: ../app/views/admin/cronjobs/schedules/index.php:108
-msgid "Cronjob deaktivieren"
-msgstr "Deactivate cronjob"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:113
-msgid "Cronjob aktivieren"
-msgstr "Activate cronjob"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:117
-#: ../app/views/admin/cronjobs/schedules/edit.php:221
-msgid "Einmalig"
-msgstr "Once"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:127
-msgid "Cronjob anzeigen"
-msgstr "Display cronjob"
-
-#: ../app/views/admin/cronjobs/schedules/index.php:136
-msgid "Wollen Sie den ausgewählten Cronjob wirklich löschen?"
-msgstr "Do you really want to delete this schedule?"
-
-#: ../app/views/admin/cronjobs/schedules/edit.php:20
-msgid "Neuen Cronjob anlegen"
-msgstr "Create new cronjob"
-
-#: ../app/views/admin/cronjobs/schedules/edit.php:22
-#, php-format
-msgid "Cronjob \"%s\" bearbeiten"
-msgstr "Edit cronjob \"%s\""
-
-#: ../app/views/admin/cronjobs/schedules/edit.php:113
-msgid "Zeitplan"
-msgstr "Schedule"
-
-#: ../app/views/admin/cronjobs/schedules/edit.php:120
-msgid "Wiederholt"
-msgstr "Regular"
-
-#: ../app/views/admin/cronjobs/schedules/edit.php:155
-#: ../app/views/admin/cronjobs/schedules/edit.php:167
-#: ../app/views/admin/cronjobs/schedules/edit.php:179
-#: ../app/views/admin/cronjobs/schedules/edit.php:191
-msgid "beliebig"
-msgstr "any"
-
-#: ../app/views/admin/cronjobs/schedules/edit.php:203
-#: ../app/views/calendar/schedule/_semester_chooser.php:10
-msgid "*"
-msgstr "*"
-
-#: ../app/views/admin/cronjobs/logs/display.php:8
-msgid "Geplante Ausführung"
-msgstr "Scheduled execution"
-
-#: ../app/views/admin/cronjobs/logs/display.php:11
-msgid "Tatsächliche Ausführung"
-msgstr "Real execution"
-
-#: ../app/views/admin/cronjobs/logs/display.php:14
-msgid "Ausführungsdauer"
-msgstr "Duration"
-
-#: ../app/views/admin/cronjobs/logs/display.php:17
-msgid "Cronjob läuft noch oder wurde durch einen Fehler abgebrochen"
-msgstr "Cronjob is still running or was interrupted due to an error"
-
-#: ../app/views/admin/cronjobs/logs/display.php:19
-msgid "Sekunden"
-msgstr "Seconds"
-
-#: ../app/views/admin/cronjobs/logs/display.php:24
-msgid "Ausgabe"
-msgstr "Output"
-
-#: ../app/views/admin/cronjobs/logs/index.php:10
-#, php-format
-msgid "Passend: %u von %u Logeinträgen"
-msgstr "Matched: %u of %u log entries"
-
-#: ../app/views/admin/cronjobs/logs/index.php:18
-#: ../app/views/admin/cronjobs/logs/index.php:31
-msgid "Alle Logeinträge anzeigen"
-msgstr "Display all log entries"
-
-#: ../app/views/admin/cronjobs/logs/index.php:20
-msgid "Nur fehlerfreie Logeinträge anzeigen"
-msgstr "Show successful entries only"
-
-#: ../app/views/admin/cronjobs/logs/index.php:23
-msgid "Nur fehlerhafte Logeinträge anzeigen"
-msgstr "Show erroneous entries only"
-
-#: ../app/views/admin/cronjobs/logs/index.php:43
-msgid "Alle Aufgaben anzeigen"
-msgstr "Show all tasks"
-
-#: ../app/views/admin/cronjobs/logs/index.php:84
-msgid "Geplant"
-msgstr "Planned"
-
-#: ../app/views/admin/cronjobs/logs/index.php:86
-msgid "Ok?"
-msgstr "OK?"
-
-#: ../app/views/admin/cronjobs/logs/index.php:106
-msgid "Läuft noch"
-msgstr "Still running"
-
-#: ../app/views/admin/cronjobs/logs/index.php:115
-msgid "Logeintrag anzeigen"
-msgstr "Display log entry"
-
-#: ../app/views/admin/cronjobs/logs/index.php:118
-msgid "Logeintrag löschen"
-msgstr "Delete log entry"
-
-#: ../app/views/admin/cronjobs/tasks/execute.php:1
-#, php-format
-msgid "Cronjob-Aufgabe \"%s\" ausführen"
-msgstr "Execute cronjob task \"%s\""
-
-#: ../app/views/admin/cronjobs/tasks/execute.php:3
-msgid "- Keine Ausgabe -"
-msgstr "- No output -"
-
-#: ../app/views/admin/cronjobs/tasks/index.php:24
-msgid "Herkunft"
-msgstr "Origin"
-
-#: ../app/views/admin/cronjobs/tasks/index.php:42
-msgid "Kern"
-msgstr "Core system"
-
-#: ../app/views/admin/cronjobs/tasks/index.php:42
-msgid "Plugin"
-msgstr "Plugin"
-
-#: ../app/views/admin/cronjobs/tasks/index.php:46
-msgid "Aufgabe deaktivieren"
-msgstr "Deactivate task"
-
-#: ../app/views/admin/cronjobs/tasks/index.php:50
-msgid "Aufgabe aktivieren"
-msgstr "Activate task"
-
-#: ../app/views/admin/cronjobs/tasks/index.php:57
-msgid "Aufgabe ausführen"
-msgstr "Execute task"
-
-#: ../app/views/admin/cronjobs/tasks/index.php:64
-msgid "Wollen Sie die ausgewählte Aufgabe wirklich löschen?"
-msgstr "Do you really want to delete this task?"
-
-#: ../app/views/admin/additional/index.php:6
-msgid "Set"
-msgstr "Set"
-
-#: ../app/views/admin/additional/index.php:9
-msgid "Keine Zusatzdaten"
-msgstr "No additional information"
-
-#: ../app/views/admin/additional/index.php:20
-msgid "Eingaben erzwingen"
-msgstr "Force input"
-
-#: ../app/views/admin/additional/index.php:26
-msgid "Datensätze vorhanden"
-msgstr "Data records available"
-
-#: ../app/views/admin/additional/index.php:27
-msgid "Löschen?"
-msgstr "Delete?"
-
-#: ../app/views/admin/additional/index.php:37
-msgid "Keine Zusatzangaben vorhanden"
-msgstr "No additional information available "
-
-#: ../app/views/admin/smileys/upload.php:16
-msgid "existierende Datei überschreiben"
-msgstr "overwrite existing file"
-
-#: ../app/views/admin/smileys/upload.php:24 ../app/views/admin/banner/new.php:8
-#: ../app/views/admin/banner/edit.php:15
-msgid "Bilddatei auswählen"
-msgstr "Select image file"
-
-#: ../app/views/admin/smileys/index.php:22
-msgid "Smiley"
-msgstr "Smiley"
-
-#: ../app/views/admin/smileys/index.php:23
-msgid "Smileyname"
-msgstr "Smiley name"
-
-#: ../app/views/admin/smileys/index.php:60
-#, php-format
-msgid "Smiley \"%s\" bearbeiten"
-msgstr "Edit smiley \"%s\""
-
-#: ../app/views/admin/smileys/index.php:65
-#, php-format
-msgid "Smiley \"%s\" löschen"
-msgstr "Delete smiley \"%s\""
-
-#: ../app/views/admin/smileys/index.php:77
-#: ../app/views/admin/user/_results.php:225
-msgid "Alle Benutzer auswählen"
-msgstr "Select all users account"
-
-#: ../app/views/admin/smileys/index.php:80
-msgid "Markierte löschen"
-msgstr "Delete selected"
-
-#: ../app/views/admin/smileys/edit.php:15
-msgid "Smiley:"
-msgstr "Smiley:"
-
-#: ../app/views/admin/smileys/edit.php:26
-msgid "Erlaubte Zeichen:"
-msgstr "Allowed characters:"
-
-#: ../app/views/admin/smileys/edit.php:43
-#: ../app/views/my_ilias_accounts/_ilias_module.php:16
-#: ../app/views/file/_file_aside.php:23 ../app/views/file/_folder_aside.php:15
-msgid "Geändert"
-msgstr "Changed"
-
-#: ../app/views/admin/smileys/statistics.php:2
-msgid "Vorhanden"
-msgstr "Existing"
-
-#: ../app/views/admin/smileys/statistics.php:5
-msgid "Davon benutzt"
-msgstr "Used"
-
-#: ../app/views/admin/smileys/statistics.php:8
-msgid "Smiley-Vorkommen"
-msgstr "Smiley occurrences"
-
-#: ../app/views/admin/autoinsert/manual.php:56
-msgid "Filterkriterien"
-msgstr "Filter criteria"
-
-#: ../app/views/admin/autoinsert/manual.php:80
-msgid "Ausgewählte Filterkriterien"
-msgstr "Selected filter criteria"
-
-#: ../app/views/admin/autoinsert/manual.php:95
-msgid "Filter entfernen"
-msgstr "Remove filter"
-
-#: ../app/views/admin/autoinsert/index.php:8
-msgid ""
-"Wollen Sie die Zuordnung der Veranstaltung zum automatischen Eintragen "
-"wirklich löschen?"
-msgstr ""
-"Are you sure you want to remove the assignment of the course for automatic "
-"enrolment?"
-
-#: ../app/views/admin/autoinsert/index.php:39
-msgid "Automatisches Eintragen mit Nutzerstatus:"
-msgstr "Automatic enrolment with user status:"
-
-#: ../app/views/admin/autoinsert/index.php:97
-msgid "Veranstaltung entfernen"
-msgstr "Remove this course"
-
-#: ../app/views/admin/specification/index.php:31
-msgid "Regel bearbeiten"
-msgstr "Edit rule"
-
-#: ../app/views/admin/specification/index.php:33
-msgid "Regel löschen"
-msgstr "Delete rule"
-
-#: ../app/views/admin/specification/index.php:35
-#, php-format
-msgid "Wollen Sie die Regel \"%s\" wirklich löschen?"
-msgstr "Are you sure to delete rule \"%s\"?"
-
-#: ../app/views/admin/specification/index.php:44
-msgid "Es wurden noch keine Zusatzangaben definiert."
-msgstr "No additional information have been defined yet."
-
-#: ../app/views/admin/specification/index.php:55
-msgid "Neue Regel anlegen"
-msgstr "Create new rule"
-
-#: ../app/views/admin/specification/edit.php:18
-#, php-format
-msgid "Regel \"%s\" editieren"
-msgstr "Edit rule \"%s\""
-
-#: ../app/views/admin/specification/edit.php:20
-msgid "Eine neue Regel definieren"
-msgstr "Define new rule"
-
-#: ../app/views/admin/specification/edit.php:25
-msgid "Name der Regel:"
-msgstr "Rule name:"
-
-#: ../app/views/admin/specification/edit.php:39
-msgid "Zusatzinformationen"
-msgstr "Additional information"
-
-#: ../app/views/admin/specification/edit.php:54
-msgid "Veranstaltungsinformationen"
-msgstr "Course details"
-
-#: ../app/views/admin/specification/edit.php:65
-msgid "Personenbezogene Informationen"
-msgstr "Personal details"
-
-#: ../app/views/admin/specification/edit.php:77
-msgid "Neue Regel erstellen"
-msgstr "Create new rule"
-
-#: ../app/views/admin/specification/edit.php:87
-msgid "Datenfelder bearbeiten"
-msgstr "Edit data fields"
-
-#: ../app/views/admin/domain/index.php:2
-msgid "Es sind keine Nutzerdomänen vorhanden."
-msgstr "No user domain available."
-
-#: ../app/views/admin/domain/index.php:15
-msgid "Liste der Nutzerdomänen"
-msgstr "List of user domains"
-
-#: ../app/views/admin/domain/index.php:20
-#: ../app/views/admin/content_terms_of_use/index.php:6
-#: ../app/views/admin/content_terms_of_use/edit.php:8
-#: ../app/views/admin/sem_classes/overview.php:15
-msgid "ID"
-msgstr "ID"
-
-#: ../app/views/admin/domain/index.php:41
-msgid "Wollen Sie die Nutzerdomäne wirklich löschen?"
-msgstr "Do you really want to delete the user domain?"
-
-#: ../app/views/admin/domain/edit.php:9
-msgid "Nutzerdomäne bearbeiten"
-msgstr "Edit user domain"
-
-#: ../app/views/admin/domain/edit.php:14
-msgid "ID der Domäne"
-msgstr "Id of the domain"
-
-#: ../app/views/admin/domain/edit.php:20
-msgid "Name der Domäne"
-msgstr "Name of the domain"
-
-#: ../app/views/admin/domain/edit.php:26
-msgid "Sichtbarkeit innerhalb der Domäne"
-msgstr "Visibility within the domain"
-
-#: ../app/views/admin/domain/edit.php:32
-msgid ""
-"Nutzer bleiben innerhalb der Domäne und können keine Nutzer ausserhalb sehen"
-msgstr "Users remain within the domain and cannot see any users outside of it"
-
-#: ../app/views/admin/domain/edit.php:38
-msgid "Nutzer der Domäne können das System uneingeschränkt nutzen"
-msgstr "Users of the domain can use the system without restrictions"
-
-#: ../app/views/admin/webservice_access/test.php:6
-msgid "Testen der Zugriffsregeln"
-msgstr "Testing the access rules"
-
-#: ../app/views/admin/webservice_access/test.php:10
-msgid "API KEY"
-msgstr "API KEY"
-
-#: ../app/views/admin/webservice_access/test.php:15
-#: ../app/views/admin/webservice_access/index.php:13
-msgid "Methode"
-msgstr "Method"
-
-#: ../app/views/admin/webservice_access/test.php:20
-msgid "IP Adresse"
-msgstr "IP Address"
-
-#: ../app/views/admin/webservice_access/test.php:26
-msgid "Test starten"
-msgstr "Start test"
-
-#: ../app/views/admin/webservice_access/test.php:27
-msgid "Test abbrechen"
-msgstr "Cancel test"
-
-#: ../app/views/admin/webservice_access/test.php:35
-#: ../app/views/admin/webservice_access/index.php:4
-msgid "Liste der Zugriffsregeln"
-msgstr "List of access rules"
-
-#: ../app/views/admin/webservice_access/test.php:36
-#: ../app/views/admin/webservice_access/index.php:80
-msgid "Neue Zugriffsregel anlegen"
-msgstr "Create new access rule"
-
-#: ../app/views/admin/webservice_access/index.php:10
-msgid "API-Key"
-msgstr "API-key"
-
-#: ../app/views/admin/webservice_access/index.php:16
-msgid "IP Bereich"
-msgstr "IP area"
-
-#: ../app/views/admin/webservice_access/index.php:79
-msgid "Regeln testen"
-msgstr "Test rules"
-
-#: ../app/views/admin/content_terms_of_use/index.php:8
-msgid "Download-Bedingung"
-msgstr "Download condition"
-
-#: ../app/views/admin/content_terms_of_use/index.php:17
-msgid "Es sind keine Nutzungsbedingungen für Inhalte definiert!"
-msgstr "No content terms of use are defined!"
-
-#: ../app/views/admin/content_terms_of_use/index.php:19
-msgid "Neue Nutzungsbedingungen definieren"
-msgstr "Define new terms of use"
-
-#: ../app/views/admin/content_terms_of_use/delete.php:11
-#, php-format
-msgid "Soll der Eintrag mit der ID \"%s\" wirklich gelöscht werden?"
-msgstr "Do you really want to delete the entry with the ID \"%s\"?"
-
-#: ../app/views/admin/content_terms_of_use/delete.php:17
-#, php-format
-msgid ""
-"Bevor ein Eintrag gelöscht werden kann, müssen Dateien, welche auf ihn "
-"verweisen, einem anderen Eintrag zugewiesen werden! Es müssen %u Dateien "
-"bearbeitet werden!"
-msgstr ""
-"Before deleting an entry, files which refer to it must be assigned to "
-"another entry! %u files have to be edited!"
-
-#: ../app/views/admin/content_terms_of_use/delete.php:22
-msgid "Name des anderen Eintrags:"
-msgstr "Name of the other entry:"
-
-#: ../app/views/admin/content_terms_of_use/delete.php:32
-msgid "Der Eintrag wird von keiner Datei benutzt!"
-msgstr "The entry is not used by any file!"
-
-#: ../app/views/admin/content_terms_of_use/edit.php:19
-#: ../app/views/file/_file_aside.php:50
-msgid "Bedingung zum Herunterladen"
-msgstr "Download condition"
-
-#: ../app/views/admin/content_terms_of_use/edit.php:29
-msgid "Symbol-Name oder URL"
-msgstr "Icon name or URL"
-
-#: ../app/views/admin/content_terms_of_use/edit.php:44
-msgid "Standardlizenz bei neuen Dateien"
-msgstr "Default license for new files"
-
-#: ../app/views/admin/content_terms_of_use/edit.php:51
-msgid "Hinweise zur Nutzung"
-msgstr "Utilisation suggestions"
-
-#: ../app/views/admin/banner/new.php:29
-msgid "Verweis-Typ"
-msgstr "Link type"
-
-#: ../app/views/admin/banner/new.php:40
-msgid "Verweis-Ziel"
-msgstr "Link target"
-
-#: ../app/views/admin/banner/new.php:43
-msgid "URL eingeben"
-msgstr "Enter URL"
-
-#: ../app/views/admin/banner/new.php:62
-msgid "Kein Verweisziel"
-msgstr "No link target"
-
-#: ../app/views/admin/banner/new.php:66
-msgid "Anzeigen ab"
-msgstr "Display from"
-
-#: ../app/views/admin/banner/new.php:72
-msgid "Anzeigen bis"
-msgstr "Display until"
-
-#: ../app/views/admin/banner/info.php:8
-msgid "noch kein Bild hochgeladen"
-msgstr "no image file uploaded yet"
-
-#: ../app/views/admin/banner/info.php:21 ../app/views/admin/banner/edit.php:35
-#: ../app/views/lvgruppen/lvgruppen/details.php:9
-msgid "Alternativtext:"
-msgstr "Alternative text:"
-
-#: ../app/views/admin/banner/info.php:29 ../app/views/admin/banner/edit.php:43
-msgid "Verweis-Typ:"
-msgstr "Link type:"
-
-#: ../app/views/admin/banner/info.php:41 ../app/views/admin/banner/edit.php:56
-msgid "Verweis-Ziel:"
-msgstr "Link target:"
-
-#: ../app/views/admin/banner/info.php:49 ../app/views/admin/banner/edit.php:70
-msgid "Anzeigen ab:"
-msgstr "Display from:"
-
-#: ../app/views/admin/banner/info.php:58 ../app/views/admin/banner/edit.php:78
-msgid "Anzeigen bis:"
-msgstr "Display until:"
-
-#: ../app/views/admin/banner/info.php:67 ../app/views/admin/banner/edit.php:86
-msgid "Priorität:"
-msgstr "Priority:"
-
-#: ../app/views/admin/banner/index.php:3
-msgid "Wollen Sie das Banner wirklich löschen?"
-msgstr "Are you sure you want to delete this banner?"
-
-#: ../app/views/admin/banner/index.php:12
-msgid "Banner"
-msgstr "Banner"
-
-#: ../app/views/admin/banner/index.php:15
-msgid "Ziel"
-msgstr "Target"
-
-#: ../app/views/admin/banner/index.php:17
-msgid "Klicks"
-msgstr "Clicks"
-
-#: ../app/views/admin/banner/index.php:18
-msgid "Views"
-msgstr "Views"
-
-#: ../app/views/admin/banner/index.php:19
-msgid "Prio"
-msgstr "Priority"
-
-#: ../app/views/admin/banner/index.php:57 ../app/views/admin/banner/edit.php:24
-msgid "Banner bearbeiten"
-msgstr "Edit banner"
-
-#: ../app/views/admin/banner/index.php:60
-msgid "Klicks/Views zurücksetzen"
-msgstr "Reset clicks / views"
-
-#: ../app/views/admin/banner/index.php:63
-msgid "Banner löschen"
-msgstr "Delete banner"
-
-#: ../app/views/admin/banner/edit.php:11
-msgid "Noch kein Bild hochgeladen"
-msgstr "No picture uploaded yet"
-
-#: ../app/views/admin/courses/notice.php:4
-#, php-format
-msgid "Notiz für \"%s\""
-msgstr ""
-
-#: ../app/views/admin/courses/_course.php:22
-#: ../app/views/admin/courses/_course.php:23
-msgid "Bearbeitungsstatus ändern"
-msgstr "Change status"
-
-#: ../app/views/admin/courses/_course.php:26
-msgid "Bearbeitungsstatus kann nicht von Ihnen geändert werden."
-msgstr "The modification state cannot be changed by you."
-
-#: ../app/views/admin/courses/_course.php:66
-#, php-format
-msgid "%u Unterveranstaltung"
-msgid_plural "%u Unterveranstaltungen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/admin/courses/_course.php:114
-msgid "Teilnehmende auf der Warteliste"
-msgstr "Persons on waiting list"
-
-#: ../app/views/admin/courses/_course.php:149
-msgid "Datum der letzten Aktivität in dieser Veranstaltung"
-msgstr "Date of last activity in this course"
-
-#: ../app/views/admin/courses/aux_preselect.php:13
-#: ../app/views/admin/courses/aux-select.php:12
-msgid "Erzwungen"
-msgstr "Forced"
-
-#: ../app/views/admin/courses/export_csv.php:14
-msgid "Auswahl exportieren"
-msgstr ""
-
-#: ../app/views/admin/courses/sidebar.php:5
-msgid "Standardfelder"
-msgstr "Default fields"
-
-#: ../app/views/admin/courses/sidebar.php:41
-msgid "Lehrperson"
-msgstr "Lecturer"
-
-#: ../app/views/admin/courses/index.php:2
-#: ../app/views/my_institutes/index.php:15
-#, php-format
-msgid ""
-"Sie wurden noch keinen Einrichtungen zugeordnet. Bitte wenden Sie sich an "
-"einen der zuständigen %sAdministratoren%s."
-msgstr ""
-"You have not been assigned to an institute. Please contact an %sadministrator"
-"%s in charge."
-
-#: ../app/views/admin/courses/index.php:7
-#, php-format
-msgid ""
-"Es wurden %u Veranstaltungen gefunden. Grenzen Sie das Suchergebnis mit den "
-"Filtermöglichkeiten weiter ein, oder %slassen Sie sich alle Veranstaltungen "
-"anzeigen%s."
-msgstr ""
-"%u courses have been found. Use the filters to narrow the search results or "
-"%ssee all courses%s."
-
-#: ../app/views/admin/courses/courses.php:72
-#, php-format
-msgid "Veranstaltungen im %s"
-msgstr "Courses in %s"
-
-#: ../app/views/admin/courses/courses.php:114
-msgid "VA-Typ"
-msgstr "Course type"
-
-#: ../app/views/admin/courses/courses.php:134
-msgid "RA"
-msgstr "RR"
-
-#: ../app/views/admin/courses/courses.php:148
-msgid "TN"
-msgstr "Participants"
-
-#: ../app/views/admin/courses/courses.php:165
-msgid "Vorläufig"
-msgstr "Provisional"
-
-#: ../app/views/admin/courses/courses.php:175
-msgid "letzte Aktivität"
-msgstr "last activity"
-
-#: ../app/views/admin/user/_priority_list.php:5
-msgid ""
-"Übersicht Anmeldelisten von Veranstaltungen mit automatischer Platzvergabe"
-msgstr "List of courses with auto-assignment"
-
-#: ../app/views/admin/user/_course_files.php:4
-msgid "Dateiübersicht Veranstaltungen"
-msgstr "Overview on course files"
-
-#: ../app/views/admin/user/_course_files.php:56
-#: ../app/views/admin/user/_institute_files.php:41
-msgid "Dateien auflisten"
-msgstr "List files"
-
-#: ../app/views/admin/user/_course_files.php:60
-#: ../app/views/admin/user/_institute_files.php:45
-msgid "Dateien als ZIP herunterladen"
-msgstr "Download files as ZIP"
-
-#: ../app/views/admin/user/edit_institute.php:9
-msgid "Bearbeiten der Einrichtungsdaten"
-msgstr "Edit institute details"
-
-#: ../app/views/admin/user/edit_institute.php:44
-msgid "Auf der Profilseite und in Adressbüchern sichtbar"
-msgstr "Visible on the profile page and in address books"
-
-#: ../app/views/admin/user/new.php:12 ../app/views/admin/user/new.php:209
-msgid "Einen neuen Benutzer anlegen"
-msgstr "Create user account"
-
-#: ../app/views/admin/user/new.php:156 ../app/views/admin/user/edit.php:241
-msgid "Mailboxüberprüfung deaktivieren"
-msgstr "Disable mailbox check"
-
-#: ../app/views/admin/user/new.php:183
-msgid "Admins der Einrichtung benachrichtigen"
-msgstr "Inform the institute's administrators"
-
-#: ../app/views/admin/user/new.php:188
-msgid "Lehrende der Einrichtung benachrichtigen"
-msgstr "Notify the lecturers of the institute"
-
-#: ../app/views/admin/user/_results.php:7
-#, php-format
-msgid "Suchergebnis: es wurden %s Personen gefunden"
-msgstr "Result: %s persons found"
-
-#: ../app/views/admin/user/_results.php:39 ../app/views/admin/user/index.php:47
-msgid "inaktiv"
-msgstr "inactive"
-
-#: ../app/views/admin/user/_results.php:44
-msgid "registriert seit"
-msgstr "registered since"
-
-#: ../app/views/admin/user/_results.php:49
-#: ../app/views/admin/user/index.php:140 ../app/views/admin/user/edit.php:248
-msgid "Authentifizierung"
-msgstr "Authentication"
-
-#: ../app/views/admin/user/_results.php:62
-#: ../app/views/admin/user/_results.php:68
-#: ../app/views/admin/user/_results.php:120
-msgid "Nutzer bearbeiten"
-msgstr "Edit user"
-
-#: ../app/views/admin/user/_results.php:72
-#, php-format
-msgid "%s ist gesperrt"
-msgstr "%s is locked"
-
-#: ../app/views/admin/user/_results.php:78
-msgid "Sichtbarkeit:"
-msgstr "Visibility:"
-
-#: ../app/views/admin/user/_results.php:86
-msgid "Domänen:"
-msgstr "Domains:"
-
-#: ../app/views/admin/user/_results.php:89
-msgid "Nutzer ist gesperrt!"
-msgstr "User is locked!"
-
-#: ../app/views/admin/user/_results.php:104
-#: ../app/views/admin/user/index.php:60 ../app/views/event_log/admin.php:37
-msgid "Tage"
-msgstr "Days"
-
-#: ../app/views/admin/user/_results.php:107
-#: ../app/views/admin/user/edit.php:309
-msgid "nie benutzt"
-msgstr "never used"
-
-#: ../app/views/admin/user/_results.php:155
-msgid "Nutzeraccount entsperren"
-msgstr "Unlock user account"
-
-#: ../app/views/admin/user/_results.php:161
-msgid "Nutzeraccount sperren"
-msgstr "Lock user account"
-
-#: ../app/views/admin/user/_results.php:178
-msgid "Nutzer löschen"
-msgstr "Delete user"
-
-#: ../app/views/admin/user/_results.php:234
-msgid "Ausgewählte Aktion ausführen"
-msgstr "Perform selected actions"
-
-#: ../app/views/admin/user/_activities_no_courses.php:2
-msgid "Keine Veranstaltungen gefunden"
-msgstr "No course found"
-
-#: ../app/views/admin/user/activities.php:26
-msgid "Übersicht anzeigen"
-msgstr "Display overview"
-
-#: ../app/views/admin/user/activities.php:39
-msgid "Übersicht Veranstaltungen"
-msgstr "Overview on courses"
-
-#: ../app/views/admin/user/activities.php:46
-msgid "Übersicht geschlossene Veranstaltungen"
-msgstr "Overview on closed course"
-
-#: ../app/views/admin/user/_institute_files.php:5
-msgid "Dateiübersicht Einrichtungen"
-msgstr "Overview of institute files"
-
-#: ../app/views/admin/user/index.php:12
-msgid "Benutzerverwaltung"
-msgstr "User account management"
-
-#: ../app/views/admin/user/index.php:66
-msgid "nur gesperrt"
-msgstr "only locked"
-
-#: ../app/views/admin/user/index.php:159
-msgid "egal"
-msgstr "no preference"
-
-#: ../app/views/admin/user/index.php:202
-msgid "Nur Personen anzeigen, die in keiner Veranstaltung Lehrende sind"
-msgstr "Only display persons that aren't lecturers in any course"
-
-#: ../app/views/admin/user/lock_comment.php:6
-#: ../app/views/admin/user/lock_comment.php:15
-msgid "Benutzer sperren"
-msgstr "Suspend user account"
-
-#: ../app/views/admin/user/_waiting_list.php:5
-msgid "Übersicht Wartelisten von Veranstaltungen"
-msgstr "Overview on waiting lists"
-
-#: ../app/views/admin/user/edit.php:11
-#, php-format
-msgid "Benutzerverwaltung für %s"
-msgstr "User management for %s"
-
-#: ../app/views/admin/user/edit.php:19
-#, php-format
-msgid "gesperrt von %s"
-msgstr "locked by %s"
-
-#: ../app/views/admin/user/edit.php:196
-msgid "Registrierungsdaten"
-msgstr "Registration details"
-
-#: ../app/views/admin/user/edit.php:212
-msgid "Passwortwiederholung"
-msgstr "Retype password"
-
-#: ../app/views/admin/user/edit.php:282
-msgid "Validation-Key"
-msgstr "Validation-key"
-
-#: ../app/views/admin/user/edit.php:299
-msgid "Zuletzt aktiv"
-msgstr "Last activity"
-
-#: ../app/views/admin/user/edit.php:315
-msgid "Registriert seit"
-msgstr "Registered since"
-
-#: ../app/views/admin/user/edit.php:336
-msgid "Neuer Studiengang"
-msgstr "New course of study"
-
-#: ../app/views/admin/user/edit.php:362 ../app/views/admin/user/edit.php:459
-msgid "Neue Einrichtung"
-msgstr "New institute"
-
-#: ../app/views/admin/user/edit.php:401
-msgid "Diesen Studiengang löschen"
-msgstr "Delete this course of study"
-
-#: ../app/views/admin/user/edit.php:440 ../app/views/admin/user/edit.php:499
-msgid "Diese Einrichtung löschen"
-msgstr "Delete this institute"
-
-#: ../app/views/admin/user/edit.php:493
-msgid "Diese Einrichtung bearbeiten"
-msgstr "Edit this institute"
-
-#: ../app/views/admin/user/edit.php:517
-msgid "Neue Nutzerdomäne"
-msgstr "New user domain"
-
-#: ../app/views/admin/user/edit.php:540
-msgid "Aus dieser Nutzerdomäne austragen"
-msgstr "Remove from this user domain"
-
-#: ../app/views/admin/user/edit.php:562
-msgid "-- Bitte Sperrebene auswählen --"
-msgstr "-- select locking level, please --"
-
-#: ../app/views/admin/user/edit.php:604
-msgid "E-Mail-Benachrichtigung bei Änderung der Daten verschicken?"
-msgstr "Send E-Mail notification on data modification?"
-
-#: ../app/views/admin/user/migrate.php:11
-msgid "Benutzermigration"
-msgstr "User account migration"
-
-#: ../app/views/admin/user/migrate.php:15
-msgid "Quellaccount"
-msgstr "Source account"
-
-#: ../app/views/admin/user/migrate.php:27
-msgid "Zielaccount"
-msgstr "Destination account"
-
-#: ../app/views/admin/user/migrate.php:36
-msgid "Identitätsrelevante Daten migrieren"
-msgstr "Migrate data relevant to identity"
-
-#: ../app/views/admin/user/migrate.php:37
-msgid ""
-"(Es werden zusätzlich folgende Daten migriert: Veranstaltungen, "
-"Studiengänge, persönliche Profildaten inkl. Nutzerbild, Institute, "
-"generische Datenfelder und Buddies.)"
-msgstr ""
-"(In addition, the following details will be migrated: courses, courses of "
-"study, personal profile including profile image, institutes, generic data "
-"fields and buddy list.)"
-
-#: ../app/views/admin/user/migrate.php:45
-msgid "Den alten Benutzer löschen"
-msgstr "Delete the old user"
-
-#: ../app/views/admin/user/migrate.php:50
-msgid "Umwandeln"
-msgstr "Change"
-
-#: ../app/views/admin/user/migrate.php:52
-msgid "Den ersten Benutzer in den zweiten Benutzer migrieren"
-msgstr "Migrate the first user to the second one"
-
-#: ../app/views/admin/user/list_files.php:3
-msgid "Dateiübersicht"
-msgstr "File overview"
-
-#: ../app/views/admin/user/list_files.php:26
-#: ../app/views/calendar/contentbox/_termin.php:36
-msgid "Keine Beschreibung vorhanden"
-msgstr "No description available"
-
-#: ../app/views/admin/user/list_files.php:29
-msgid "Dateigröße"
-msgstr "File size"
-
-#: ../app/views/admin/user/list_files.php:40
-msgid ""
-"Das Herunterladen dieser Datei ist aufgrund von Nutzungsbedingungen nur "
-"eingeschränkt möglich!"
-msgstr "Downloading this file is restricted due to terms of use!"
-
-#: ../app/views/admin/user/_delete.php:10
-msgid "Wollen Sie die folgenden Nutzer wirklich löschen?"
-msgstr "Do you really want to delete the following users?"
-
-#: ../app/views/admin/user/_delete.php:13
-msgid "Personenbezogene Daten"
-msgstr "Personal data"
-
-#: ../app/views/admin/user/_delete.php:18
-#: ../app/views/admin/user/_delete.php:43
-msgid "Dokumente löschen?"
-msgstr "Delete document?"
-
-#: ../app/views/admin/user/_delete.php:19
-msgid "persönlicher Dateibereich"
-msgstr "personal file area"
-
-#: ../app/views/admin/user/_delete.php:25
-#: ../app/views/admin/user/_delete.php:49
-msgid "Andere Inhalte löschen?"
-msgstr "Delete other content?"
-
-#: ../app/views/admin/user/_delete.php:26
-msgid "Inhalte der Profilseite, persöhnliche Blubber, Nachrichten"
-msgstr "Profile page content, personal Blubber, news"
-
-#: ../app/views/admin/user/_delete.php:32
-msgid "Namen löschen?"
-msgstr "Delete names?"
-
-#: ../app/views/admin/user/_delete.php:33
-msgid "Vor-/ Nachname, Username, E-Mail"
-msgstr "First / last name, user name, e-mail"
-
-#: ../app/views/admin/user/_delete.php:39
-msgid "Veranstaltungsbezogene Daten"
-msgstr "Course-related data"
-
-#: ../app/views/admin/user/_delete.php:44
-msgid "Dateien in Veranstaltungen und Einrichtungen"
-msgstr "Files in courses and institutes"
-
-#: ../app/views/admin/user/_delete.php:50
-msgid "veranstaltungsbezogene Inhalte, bis auf Wiki und Forum Einträge"
-msgstr "course-related content, except for wiki and forum entries"
-
-#: ../app/views/admin/user/_delete.php:55
-msgid "Veranstaltungs-/Einrichtungszuordnungen löschen?"
-msgstr "Delete course and institute assignment?"
-
-#: ../app/views/admin/user/_delete.php:56
-msgid "Zuordnungen zu Veranstaltungen, Einrichtungen, Studiengruppen"
-msgstr "Assignments to courses, institutes, studygroups"
-
-#: ../app/views/admin/user/_delete.php:63
-msgid "E-Mail-Benachrichtigung verschicken?"
-msgstr "Send e-mail notification?"
-
-#: ../app/views/admin/user/_delete.php:67
-msgid "Benutzer löschen"
-msgstr "Delete user account"
-
-#: ../app/views/admin/plugin/upload-drag-and-drop.php:6
-msgid "Plugin auswählen oder via Drag and Drop installieren"
-msgstr "Select plugin or install plugin via drag and drop"
-
-#: ../app/views/admin/plugin/search.php:15
-msgid "Name und Beschreibung"
-msgstr "Name and description"
-
-#: ../app/views/admin/plugin/search.php:34
-msgid "Zum Marktplatz"
-msgstr "To the marketplace"
-
-#: ../app/views/admin/plugin/search.php:45
-#: ../app/views/admin/plugin/search.php:62
-msgid "Plugin-Homepage"
-msgstr "Plugin homepage"
-
-#: ../app/views/admin/plugin/search.php:53
-msgid "Weiterlesen"
-msgstr "Continue reading"
-
-#: ../app/views/admin/plugin/search.php:81
-msgid "Plugin installieren"
-msgstr "Install plug-in"
-
-#: ../app/views/admin/plugin/activation-error-form.php:4
-msgid "Markierte Plugins dennoch deaktivieren"
-msgstr "Deactivate selected plug-ins nevertheless"
-
-#: ../app/views/admin/plugin/activation-error-form.php:6
-msgid "Markierte Plugins dennoch aktivieren"
-msgstr "Activate selected plug-ins nevertheless"
-
-#: ../app/views/admin/plugin/activation-error-form.php:8
-msgid "Markierte Plugins dennoch aktivieren bzw. deaktivieren"
-msgstr "Activate or deactivate the selected plug-ins nevertheless"
-
-#: ../app/views/admin/plugin/activation-error-form.php:16
-msgid "Die folgenden Fehler sind aufgetreten:"
-msgstr "The following errors occurred:"
-
-#: ../app/views/admin/plugin/unregistered.php:3
-msgid "Im Pluginverzeichnis vorhandene Plugins registrieren"
-msgstr "Register plug-ins available in the plug-in directory"
-
-#: ../app/views/admin/plugin/unregistered.php:8
-msgid "Pluginklasse"
-msgstr "Plug-in class"
-
-#: ../app/views/admin/plugin/unregistered.php:10
-msgid "Ursprung"
-msgstr "Origin"
-
-#: ../app/views/admin/plugin/unregistered.php:18
-msgid "Es sind keine nicht registrierten Plugins vorhanden"
-msgstr "There are no unregistered plugins available"
-
-#: ../app/views/admin/plugin/unregistered.php:32
-msgid "Plugin registrieren"
-msgstr "Register plug-in"
-
-#: ../app/views/admin/plugin/update_info.php:6
-#, php-format
-msgid "Es ist ein Update für ein Plugin verfügbar"
-msgid_plural "Es sind Updates für %d Plugins verfügbar"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/admin/plugin/update_info.php:18
-#, php-format
-msgid "%s: Version %s installieren"
-msgstr "%s: Install version %s"
-
-#: ../app/views/admin/plugin/update_info.php:25
-msgid "Updates installieren"
-msgstr "Install updates"
-
-#: ../app/views/admin/plugin/index.php:11
-msgid "Es sind noch keine Plugins in diesem Stud.IP vorhanden."
-msgstr "No plug-in in this Stud.IP installation available."
-
-#: ../app/views/admin/plugin/index.php:12
-msgid ""
-"Sie können Plugins aus dem Marktplatz installieren oder manuell hochladen."
-msgstr ""
-"You can install plug-ins from the market place or manually upload them."
-
-#: ../app/views/admin/plugin/index.php:14
-#, php-format
-msgid ""
-"Benutzen Sie dafür die Funktion \"%sweitere Plugins installieren%s\" in der "
-"Info-Box."
-msgstr ""
-"Therefore apply the feature \"%sInstall more plug-ins%s\" in the information "
-"box."
-
-#: ../app/views/admin/plugin/index.php:27
-msgid "Gesamt (aktiv/inaktiv)"
-msgstr "Total (active/inactive)"
-
-#: ../app/views/admin/plugin/index.php:29
-#, php-format
-msgid "%u Plugins (%u/%u)"
-msgstr "%u plug-ins (%u/%u)"
-
-#: ../app/views/admin/plugin/index.php:43
-msgid "Schema"
-msgstr "Schema"
-
-#: ../app/views/admin/plugin/index.php:60
-msgid "Kern-Plugin"
-msgstr "Core plug-in"
-
-#: ../app/views/admin/plugin/index.php:71
-msgid "Automatische Updates sind eingerichtet"
-msgstr "Automatic updates are set up"
-
-#: ../app/views/admin/plugin/index.php:81
-#, php-format
-msgid "Update auf Version %d verfügbar"
-msgstr "Update to version %d is available"
-
-#: ../app/views/admin/plugin/index.php:96
-#: ../app/views/admin/plugin/index.php:97
-msgid "In Veranstaltungen aktivieren"
-msgstr "Activate in courses"
-
-#: ../app/views/admin/plugin/index.php:102
-#: ../app/views/admin/plugin/index.php:103
-msgid "Zugriffsrechte bearbeiten"
-msgstr "Edit access permissions"
-
-#: ../app/views/admin/plugin/index.php:109
-#: ../app/views/admin/plugin/index.php:112
-msgid "Automatisches Update verwalten (eingerichtet)"
-msgstr "Manage automatic updates (already set up)"
-
-#: ../app/views/admin/plugin/index.php:109
-#: ../app/views/admin/plugin/index.php:113
-msgid "Automatisches Update verwalten"
-msgstr "Manage automatic updates"
-
-#: ../app/views/admin/plugin/index.php:128
-#: ../app/views/admin/plugin/index.php:129
-msgid "Deinstallieren"
-msgstr "Uninstall"
-
-#: ../app/views/admin/plugin/index.php:153
-msgid "Plugin als ZIP-Datei hochladen"
-msgstr "Upload plug-in as ZIP file"
-
-#: ../app/views/admin/plugin/index.php:166
-msgid "Darstellungseinstellungen"
-msgstr "Display settings"
-
-#: ../app/views/admin/plugin/index.php:172
-msgid "Alle Plugin-Typen anzeigen"
-msgstr "Display all plug-in types"
-
-#: ../app/views/admin/plugin/index.php:178
-msgid "Alle Plugins anzeigen"
-msgstr "Show all plug-ins"
-
-#: ../app/views/admin/plugin/index.php:183
-msgid "Kern-Plugins ausblenden"
-msgstr "Hide core plug-ins"
-
-#: ../app/views/admin/plugin/index.php:188
-msgid "Nur Kern-Plugins anzeigen"
-msgstr "Show only core plug-ins"
-
-#: ../app/views/admin/plugin/edit_automaticupdate.php:7
-#, php-format
-msgid ""
-"Achtung, mit %s als Domain kann der Webhook-Aufruf von github nicht "
-"funktionieren."
-msgstr ""
-"Attention: The domain %s is not valid for a web hook call from GitHub. "
-
-#: ../app/views/admin/plugin/edit_automaticupdate.php:26
-msgid ""
-"Sie können gitlab, github.com oder dem neuen Stud.IP-Plugin-Marktplatz "
-"mitteilen, dass Ihr Stud.IP per Webhook über Änderungen im Code des Plugins "
-"benachrichtigt werden soll."
-msgstr ""
-"You can web hook your plug-in to GitLab, GitHub or the Stud.IP marketplace."
-
-#: ../app/views/admin/plugin/edit_automaticupdate.php:28
-msgid "Einstellungen von Stud.IP"
-msgstr "Stud.IP settings"
-
-#: ../app/views/admin/plugin/edit_automaticupdate.php:30
-msgid "URL, von der das Plugin als ZIP-Datei bezogen werden soll"
-msgstr "URL for the plug-in repository"
-
-#: ../app/views/admin/plugin/edit_automaticupdate.php:34
-msgid "Automatisches Update absichern über Sicherheitstoken (optional)"
-msgstr "Secure automatic updates via security tokens (optional)"
-
-#: ../app/views/admin/plugin/edit_automaticupdate.php:41
-msgid "Daten für das bereitstellende System"
-msgstr "Information for distributing system. "
-
-#: ../app/views/admin/plugin/edit_automaticupdate.php:43
-msgid ""
-"Tragen Sie bei gitlab, github.com oder dem Pluginmarktplatz untenstehende "
-"URL ein, die der Webhook aufrufen soll."
-msgstr ""
-"Add the URL below for the web hook call to GitLab, GitHub or the Stud.IP "
-"marketplace."
-
-#: ../app/views/admin/plugin/edit_automaticupdate.php:45
-msgid "Dieser Aufruf muss noch mit dem Sicherheitstoken abgesichert werden."
-msgstr "This call needs to be secured with the security token."
-
-#: ../app/views/admin/plugin/edit_automaticupdate.php:54
-msgid "Sicherheitstoken für das andere System (schreibgeschützt)"
-msgstr "Security token for corresponding system (read-only)"
-
-#: ../app/views/admin/plugin/default_activation.php:16
-msgid "Standard-Aktivierung in Veranstaltungen"
-msgstr "Default activation in courses"
-
-#: ../app/views/admin/plugin/default_activation.php:43
-msgid "Zurück zur Plugin-Verwaltung"
-msgstr "Return to plug-in management"
-
-#: ../app/views/admin/plugin/manifest.php:5
-msgid "Klasse"
-msgstr "Class"
-
-#: ../app/views/admin/plugin/manifest.php:11
-msgid "Origin"
-msgstr "Origin"
-
-#: ../app/views/admin/holidays/index.php:31
-msgid "Es wurden noch keine Ferien angelegt."
-msgstr "No vacation periods have been created yet."
-
-#: ../app/views/admin/holidays/index.php:54
-msgid "Ferienangaben bearbeiten"
-msgstr "Edit details of vacation period"
-
-#: ../app/views/admin/holidays/index.php:56
-msgid "Ferien löschen"
-msgstr "Delete vacation period"
-
-#: ../app/views/admin/holidays/index.php:58
-#: ../app/views/admin/holidays/index.php:71
-msgid "Sollen die Ferien wirklich gelöscht werden?"
-msgstr "Do you really want to delete the vacation period?"
-
-#: ../app/views/admin/holidays/index.php:69
-msgid "Markierte Einträge"
-msgstr "Selected entries"
-
-#: ../app/views/admin/holidays/edit.php:7
-msgid "Name der Ferien"
-msgstr "Name of vacation period"
-
-#: ../app/views/admin/holidays/edit.php:17
-msgid "Ferienbeginn"
-msgstr "Holiday begin"
-
-#: ../app/views/admin/holidays/edit.php:24
-msgid "Ferienende"
-msgstr "Holiday end"
-
-#: ../app/views/admin/lockrules/index.php:9
-msgid "Sperrebenen für den Bereich:"
-msgstr "Locking levels for:"
-
-#: ../app/views/admin/lockrules/index.php:39
-msgid "Diese Regel bearbeiten"
-msgstr "Edit this rule"
-
-#: ../app/views/admin/lockrules/index.php:44
-#, php-format
-msgid ""
-"Sie beabsichtigen die Ebene %s zu löschen. Diese Ebene wird von %s Objekten "
-"benutzt. Soll sie trotzdem gelöscht werden?"
-msgstr ""
-"You are about to delete level %s. However, this level is used by %s objects. "
-"Are you sure to delete it?"
-
-#: ../app/views/admin/lockrules/index.php:47
-#, php-format
-msgid "Möchten Sie die Ebene %s löschen?"
-msgstr "Are you sure to delete level %s?"
-
-#: ../app/views/admin/lockrules/index.php:50
-msgid "Diese Regel löschen"
-msgstr "Delete this rule"
-
-#: ../app/views/admin/lockrules/index.php:59
-msgid "Keine Sperrebenen vorhanden"
-msgstr "No lock rule found. "
-
-#: ../app/views/admin/lockrules/_form.php:11
-#, php-format
-msgid "Sperrebene \"%s\" ändern"
-msgstr "Change lock rule \"%s\""
-
-#: ../app/views/admin/lockrules/_form.php:13
-msgid "Neue Sperrebene eingeben für den Bereich:"
-msgstr "Enter new locking level for:"
-
-#: ../app/views/admin/lockrules/_form.php:26
-msgid "Dieser Text wird auf allen Seiten mit gesperrtem Inhalt angezeigt"
-msgstr "This text will be displayed on all pages with locked content"
-
-#: ../app/views/admin/lockrules/_form.php:33
-#: ../app/views/admin/datafields/new.php:43
-#: ../app/views/admin/datafields/edit.php:95
-msgid "Nutzerstatus"
-msgstr "User status"
-
-#: ../app/views/admin/lockrules/_form.php:34
-msgid ""
-"Die Einstellungen dieser Sperrebene gelten für Nutzer bis zu dieser "
-"Berechtigung"
-msgstr ""
-"The settings of this lock rule apply to all users up to this permission level"
-
-#: ../app/views/admin/statusgroups/_members.php:10
-msgid "Benutzer in dieser Rolle bearbeiten"
-msgstr "Edit user in this role"
-
-#: ../app/views/admin/statusgroups/_members.php:14
-#: ../app/views/institute/members/_table_body.php:107
-#: ../app/views/institute/members/_table_body.php:163
-msgid "Person aus Gruppe austragen"
-msgstr "Cancel person from group"
-
-#: ../app/views/admin/statusgroups/_group.php:16
-#: ../app/views/admin/statusgroups/editGroup.php:4
-#: ../app/views/contact/index.php:11 ../app/views/contact/editGroup.php:8
-msgid "Gruppe bearbeiten"
-msgstr "Edit group"
-
-#: ../app/views/admin/statusgroups/_group.php:23
-msgid "aktuelle Einrichtung"
-msgstr "current institution"
-
-#: ../app/views/admin/statusgroups/_group.php:24
-msgid "Nicht zugeordnet"
-msgstr "Not allocated"
-
-#: ../app/views/admin/statusgroups/_group.php:29
-#: ../app/views/admin/statusgroups/sortAlphabetic.php:5
-msgid "Gruppe alphabetisch sortieren"
-msgstr "Sort in alphabetical order"
-
-#: ../app/views/admin/statusgroups/_group.php:32
-msgid "Untergruppen alphabetisch sortieren"
-msgstr ""
-
-#: ../app/views/admin/statusgroups/_group.php:33
-msgid "Sollen die Untergruppen dieser Gruppe alphabetisch sortiert werden?"
-msgstr ""
-
-#: ../app/views/admin/statusgroups/_group.php:42
-#, php-format
-msgid "%u Mitglied"
-msgid_plural "%u Mitglieder"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/admin/statusgroups/sortAlphabetic.php:9
-#, php-format
-msgid ""
-"Gruppe %s wirklich alphabetisch sortieren? Die vorherige Sortierung kann "
-"nicht wiederhergestellt werden."
-msgstr "Sort group %s alphabetically? Former sorting cannot be restored. "
-
-#: ../app/views/admin/statusgroups/index.php:2
-msgid "Es wurden noch keine Gruppen angelegt"
-msgstr "No groups created"
-
-#: ../app/views/admin/statusgroups/delete.php:5
-msgid "Nutzer aus Gruppe austragen"
-msgstr "Sign user out of group"
-
-#: ../app/views/admin/statusgroups/delete.php:9
-#, php-format
-msgid "%s wirklich aus %s austragen?"
-msgstr "%s cancel person from group %s?"
-
-#: ../app/views/admin/statusgroups/editGroup.php:13
-#: ../app/views/institute/members/index.php:7
-msgid "Mitarbeiterinnen und Mitarbeiter"
-msgstr "Staff"
-
-#: ../app/views/admin/statusgroups/editGroup.php:17
-msgid "Weibliche Bezeichnung"
-msgstr "Female appellation"
-
-#: ../app/views/admin/statusgroups/editGroup.php:20
-msgid "Mitarbeiterin"
-msgstr "Staff"
-
-#: ../app/views/admin/statusgroups/editGroup.php:24
-msgid "Männliche Bezeichnung"
-msgstr "Male appellation"
-
-#: ../app/views/admin/statusgroups/editGroup.php:62
-msgid "Einordnen unter"
-msgstr "Subsume in "
-
-#: ../app/views/admin/statusgroups/editGroup.php:65
-msgid "Hauptebene"
-msgstr "Main level"
-
-#: ../app/views/admin/statusgroups/deleteGroup.php:9
-#: ../app/views/contact/index.php:17
-#, php-format
-msgid "Gruppe %s wirklich löschen?"
-msgstr "Delete group %s?"
-
-#: ../app/views/admin/statusgroups/sortGroups.php:2
-msgid ""
-"Leider ist es aus technischen Gründen nicht möglich ein vernünftiges "
-"Interface ohne Javascript zu liefern. Nutzen sie bitte die Gruppierung unter "
-"den Einstellungen der Gruppen oder aktivieren sie Javascript."
-msgstr "Please activate JavaScript."
-
-#: ../app/views/admin/datafields/config.php:5
-msgid "Datenfeld konfigurieren"
-msgstr "Configure data field"
-
-#: ../app/views/admin/datafields/type_select.php:14
-msgid "Datenfeldtyp:"
-msgstr "Data field type:"
-
-#: ../app/views/admin/datafields/type_select.php:27
-msgid "Datenfeld auswählen"
-msgstr "Select data field"
-
-#: ../app/views/admin/datafields/new.php:24
-#: ../app/views/admin/datafields/index.php:22
-#: ../app/views/admin/datafields/edit.php:25
-msgid "Feldtyp"
-msgstr "Type of field"
-
-#: ../app/views/admin/datafields/new.php:35
-#: ../app/views/admin/datafields/edit.php:40
-#: ../app/views/admin/sem_classes/overview.php:16
-msgid "Veranstaltungskategorie"
-msgstr "Course category"
-
-#: ../app/views/admin/datafields/new.php:37
-#: ../app/views/admin/datafields/edit.php:51
-msgid "Einrichtungstyp"
-msgstr "Type of institute"
-
-#: ../app/views/admin/datafields/new.php:41
-#: ../app/views/admin/datafields/edit.php:84
-msgid "Typ/Abschnitt"
-msgstr "Type/Section"
-
-#: ../app/views/admin/datafields/new.php:64
-#: ../app/views/admin/datafields/new.php:70
-#: ../app/views/admin/datafields/edit.php:65
-msgid "alle (mehrsprachige Eingabe bei Feldtyp textline, textarea, textmarkup)"
-msgstr ""
-"all (input in multiple languages for the field type textline, textarea and "
-"textmarkup)"
-
-#: ../app/views/admin/datafields/new.php:76
-#: ../app/views/admin/datafields/index.php:107
-#: ../app/views/admin/datafields/edit.php:87
-msgid "alle (Abschnitt \"Einstellungen\")"
-msgstr "all (Section \"Settings\")"
-
-#: ../app/views/admin/datafields/new.php:77
-#: ../app/views/admin/datafields/index.php:108
-#: ../app/views/admin/datafields/edit.php:88
-msgid "alle (Abschnitt \"Inhalte und Informationen\")"
-msgstr "all (Section \"Content and information\")"
-
-#: ../app/views/admin/datafields/new.php:78
-#: ../app/views/admin/datafields/index.php:109
-#: ../app/views/admin/datafields/edit.php:89
-msgid "Einfach-Studiengänge (Abschnitt \"Einstellungen\")"
-msgstr "Single courses of study (Section \"Settings\")"
-
-#: ../app/views/admin/datafields/new.php:79
-#: ../app/views/admin/datafields/index.php:110
-#: ../app/views/admin/datafields/edit.php:90
-msgid "Einfach-Studiengänge (Abschnitt \"Inhalte und Informationen\")"
-msgstr "Single courses of study (Section \"Content and information\")"
-
-#: ../app/views/admin/datafields/new.php:80
-#: ../app/views/admin/datafields/index.php:111
-#: ../app/views/admin/datafields/edit.php:91
-msgid "Mehrfach-Studiengänge (Abschnitt \"Einstellungen\")"
-msgstr "Multiple courses of study (Section \"Settings\")"
-
-#: ../app/views/admin/datafields/new.php:81
-#: ../app/views/admin/datafields/index.php:112
-#: ../app/views/admin/datafields/edit.php:92
-msgid "Mehrfach-Studiengänge (Abschnitt \"Inhalte und Informationen\")"
-msgstr "Multiple courses of study (Section \"Content and information\")"
-
-#: ../app/views/admin/datafields/new.php:93
-#: ../app/views/admin/datafields/index.php:31
-msgid "benötigter Status"
-msgstr "required status"
-
-#: ../app/views/admin/datafields/new.php:131
-#: ../app/views/admin/datafields/edit.php:139
-msgid "Systemfeld"
-msgstr "System field"
-
-#: ../app/views/admin/datafields/new.php:132
-#: ../app/views/admin/datafields/edit.php:140
-msgid ""
-"Nur für die Person selbst sichtbar, wenn der benötigte Status zum Bearbeiten "
-"oder die Sichtbarkeit ausreichend ist"
-msgstr "Visible for the person only if status allows editing.  "
-
-#: ../app/views/admin/datafields/new.php:149
-#: ../app/views/admin/datafields/index.php:68
-msgid "Pflichtfeld"
-msgstr "Mandatory field"
-
-#: ../app/views/admin/datafields/new.php:163
-#: ../app/views/admin/datafields/edit.php:189
-msgid "Mögliche Bedingung für Anmelderegel"
-msgstr "Possible conditions for admission"
-
-#: ../app/views/admin/datafields/index.php:25
-msgid "Veranstaltungskategorie, Einrichtungstyp, Sprache bzw. Nutzerstatus"
-msgstr "Course category, institute type, language and user state"
-
-#: ../app/views/admin/datafields/index.php:28 ../app/views/tour/import.php:27
-msgid "Institution"
-msgstr "Institution"
-
-#: ../app/views/admin/datafields/index.php:42
-msgid "Änderbar"
-msgstr "Changeable"
-
-#: ../app/views/admin/datafields/index.php:43
-msgid "Gibt den Status an, ab dem das Datenfeld änderbar ist"
-msgstr "Shows which role can edit this field"
-
-#: ../app/views/admin/datafields/index.php:47
-msgid "Gibt den Status an, ab dem das Datenfeld für andere sichtbar ist"
-msgstr "Shows which role can see this field"
-
-#: ../app/views/admin/datafields/index.php:60
-#: ../app/views/admin/datafields/index.php:63
-#, php-format
-msgid "Datenfelder für %s"
-msgstr "Data field for %s"
-
-#: ../app/views/admin/datafields/index.php:74
-msgid ""
-"Für die Person nur sichtbar, wenn der Status zum Bearbeiten  oder für die "
-"Sichtbarkeit ausreichend ist"
-msgstr "Only visible if user role is allowed to make changes. "
-
-#: ../app/views/admin/datafields/edit.php:11
-msgid "Bearbeiten der Parameter"
-msgstr "Edit parameters"
-
-#: ../app/views/admin/datafields/edit.php:76
-msgid "alle (mehrsprachige Eingabe)"
-msgstr "all (multilingual input)"
-
-#: ../app/views/admin/datafields/edit.php:111
-msgid "Benötigter Status zum Bearbeiten"
-msgstr "Required status to modify"
-
-#: ../app/views/admin/datafields/edit.php:123
-msgid "für andere"
-msgstr "for others"
-
-#: ../app/views/admin/datafields/edit.php:177
-msgid "Eintrag verpflichtend"
-msgstr "Entry is mandatory"
-
-#: ../app/views/admin/sem_classes/overview.php:17
-msgid "Anzahl Veranstaltungstypen"
-msgstr "Number of course types"
-
-#: ../app/views/admin/sem_classes/overview.php:19 ../app/views/wiki/info.php:30
-msgid "Zuletzt geändert"
-msgstr "Last edited"
-
-#: ../app/views/admin/sem_classes/overview.php:32
-msgid "Editieren dieser Veranstaltungskategorie"
-msgstr "Edit this course category"
-
-#: ../app/views/admin/sem_classes/content_plugin.php:12
-msgid "Plugin ist momentan global deaktiviert."
-msgstr "Plug-in is currently deactivated globally."
-
-#: ../app/views/admin/sem_classes/content_plugin.php:15
-msgid "Wählbar"
-msgstr "Selectable"
-
-#: ../app/views/admin/sem_classes/content_plugin.php:17
-msgid "Standard Aktiv"
-msgstr "Activated by default"
-
-#: ../app/views/admin/sem_classes/_sem_type.php:16
-msgid "ID des Veranstaltungstyps"
-msgstr "Id of the course type"
-
-#: ../app/views/admin/sem_classes/_sem_type.php:26
-#, php-format
-msgid "%s Veranstaltungen"
-msgstr "%s courses"
-
-#: ../app/views/admin/sem_classes/_sem_type.php:27
-msgid "Veranstaltungstyp umbenennen"
-msgstr "Rename course type"
-
-#: ../app/views/admin/sem_classes/_sem_type.php:29
-msgid "Veranstaltungstyp löschen"
-msgstr "Delete course type"
-
-#: ../app/views/admin/sem_classes/add_sem_type.php:4
-msgid "Veranstaltungskategorie anlegen"
-msgstr "Create course category"
-
-#: ../app/views/admin/sem_classes/add_sem_type.php:15
-msgid "Attribute kopieren von Veranstaltungskategorie"
-msgstr "Copy attributes of course category"
-
-#: ../app/views/admin/sem_classes/details.php:17
-msgid "Veranstaltungskategorie bearbeiten"
-msgstr "Edit course category"
-
-#: ../app/views/admin/sem_classes/details.php:21
-msgid "Name der Veranstaltungskategorie"
-msgstr "Name of the course category"
-
-#: ../app/views/admin/sem_classes/details.php:34
-msgid "Beschreibungstext für die Suche"
-msgstr "Descriptions for search"
-
-#: ../app/views/admin/sem_classes/details.php:61
-msgid "Veranstaltungstyp hinzufügen"
-msgstr "Add course type"
-
-#: ../app/views/admin/sem_classes/details.php:71
-#, php-format
-msgid "Titel der %s"
-msgstr "Title of %s"
-
-#: ../app/views/admin/sem_classes/details.php:75
-#, php-format
-msgid "Systemdefault (%s)"
-msgstr "System default (%s)"
-
-#: ../app/views/admin/sem_classes/details.php:81
-msgid "Singular"
-msgstr "Singular"
-
-#: ../app/views/admin/sem_classes/details.php:82
-msgid "Plural"
-msgstr "Plural"
-
-#: ../app/views/admin/sem_classes/details.php:91
-msgid "Voreinstellungen beim Anlegen einer Veranstaltung"
-msgstr "Default settings for course setup"
-
-#: ../app/views/admin/sem_classes/details.php:95
-msgid "Lesbar für Nutzer"
-msgstr "Readable for user"
-
-#: ../app/views/admin/sem_classes/details.php:97
-#: ../app/views/admin/sem_classes/details.php:105
-msgid "Unangemeldet an Veranstaltung"
-msgstr "Not subscribed to course"
-
-#: ../app/views/admin/sem_classes/details.php:98
-#: ../app/views/admin/sem_classes/details.php:106
-msgid "Angemeldet an Veranstaltung"
-msgstr "Subscribed to course"
-
-#: ../app/views/admin/sem_classes/details.php:103
-msgid "Schreibbar für Nutzer"
-msgstr "Writeable to user"
-
-#: ../app/views/admin/sem_classes/details.php:113
-msgid "direkter Eintrag"
-msgstr "instant entry"
-
-#: ../app/views/admin/sem_classes/details.php:114
-msgid "vorläufiger Eintrag"
-msgstr "provisional entry"
-
-#: ../app/views/admin/sem_classes/details.php:134
-msgid "Autoren dürfen Themen anlegen."
-msgstr "Authors may create topics."
-
-#: ../app/views/admin/sem_classes/details.php:139
-msgid "Unangemeldete Nutzer (nobody) dürfen posten."
-msgstr "Unauthorised users (nobody) may create postings."
-
-#: ../app/views/admin/sem_classes/details.php:145
-msgid "Anzeige"
-msgstr "Display"
-
-#: ../app/views/admin/sem_classes/details.php:150
-msgid "Sichtbar"
-msgstr "Visible"
-
-#: ../app/views/admin/sem_classes/details.php:155
-msgid "Zeige im Veranstaltungsbaum an."
-msgstr "Show in course tree."
-
-#: ../app/views/admin/sem_classes/details.php:160
-msgid "Zeige Raum-Zeit-Seite an."
-msgstr "Show dates/location."
-
-#: ../app/views/admin/sem_classes/details.php:171
-msgid "Studentische Arbeitsgruppe"
-msgstr "Students' work group"
-
-#: ../app/views/admin/sem_classes/details.php:176
-msgid "Nur Nutzer der Einrichtungen sind erlaubt."
-msgstr "Only institute users are permitted."
-
-#: ../app/views/admin/sem_classes/details.php:181
-msgid "Muss Studienbereiche haben (falls nein, darf es keine haben)"
-msgstr "Must have fields of study (if not selected, must not have any)"
-
-#: ../app/views/admin/sem_classes/details.php:186
-msgid "Kann Modulen zugeordnet werden."
-msgstr "Can be assigned to modules."
-
-#: ../app/views/admin/sem_classes/details.php:191
-msgid "Anlegeassistent für diesen Typ sperren."
-msgstr "Block course set up assistant for this type."
-
-#: ../app/views/admin/sem_classes/details.php:195
-msgid "Kurzer Beschreibungstext zum Anlegen einer Veranstaltung"
-msgstr "Short description for creating a course"
-
-#: ../app/views/admin/sem_classes/details.php:201
-msgid "Kann Unterveranstaltungen haben"
-msgstr "Can have sub-courses"
-
-#: ../app/views/admin/sem_classes/details.php:213
-msgid "Teilnehmendenseite"
-msgstr "Participant page"
-
-#: ../app/views/admin/sem_classes/details.php:215
-msgid "Terminseite"
-msgstr "Date page"
-
-#: ../app/views/admin/sem_classes/details.php:216
-msgid "Freie Informationen"
-msgstr "Free information"
-
-#: ../app/views/admin/sem_classes/details.php:244
-msgid ""
-"Diese Plugins sind standardmäßig bei den Veranstaltungen dieser Klasse "
-"aktiviert."
-msgstr "There plug-ins are activated in courses of this class by default."
-
-#: ../app/views/admin/sem_classes/details.php:264
-msgid "Diese Module sind standardmäßig nicht aktiviert."
-msgstr "These modules are not activated by default."
-
-#: ../app/views/admin/sem_classes/details.php:264
-msgid "Nichtaktivierte Inhaltselemente"
-msgstr "Inactive content elements"
-
-#: ../app/views/admin/sem_classes/details.php:295
-msgid "Sicherheitsabfrage"
-msgstr "Security question"
-
-#: ../app/views/admin/sem_classes/details.php:297
-msgid "Wirklich den Veranstaltungstyp löschen?"
-msgstr "Are you sure you want to delete this course type?"
-
-#: ../app/views/admin/licenses/index.php:8
-msgid "SPDX-Lizenzkürzel"
-msgstr ""
-
-#: ../app/views/admin/licenses/index.php:49
-msgid "Lizenz erzeugen"
-msgstr ""
-
-#: ../app/views/admin/licenses/edit.php:7
-msgid "Lizenzkürzel (nach SPDX wenn möglich)"
-msgstr ""
-
-#: ../app/views/admin/licenses/edit.php:19
-msgid "Standardlizenz"
-msgstr ""
-
-#: ../app/views/admin/licenses/edit.php:23
-msgid "Link zur Lizenz"
-msgstr ""
-
-#: ../app/views/admin/licenses/edit.php:33
-msgid "Bild hochladen (PNG, JPG, GIF)"
-msgstr ""
-
-#: ../app/views/admin/lti/index.php:5
-msgid "Aktuell konfigurierte LTI-Tools"
-msgstr "Currently configured LTI tools"
-
-#: ../app/views/admin/lti/index.php:17 ../app/views/admin/lti/edit.php:10
-msgid "Name der Anwendung"
-msgstr "Application name"
-
-#: ../app/views/admin/lti/index.php:19 ../app/views/admin/lti/edit.php:24
-msgid "Consumer-Key"
-msgstr "Consumer key"
-
-#: ../app/views/admin/lti/index.php:30 ../app/views/admin/lti/index.php:46
-msgid "LTI-Tool konfigurieren"
-msgstr "Configure LTI tool"
-
-#: ../app/views/admin/lti/index.php:51
-msgid "LTI-Tool löschen"
-msgstr "Delete LTI tool"
-
-#: ../app/views/admin/lti/index.php:52
-#, php-format
-msgid "Wollen Sie wirklich das LTI-Tool \"%s\" löschen?"
-msgstr "Do you really want to delete the LTI tool \"%s\"?"
-
-#: ../app/views/admin/lti/edit.php:5
-msgid "Konfiguration des LTI-Tools"
-msgstr "LTI tool configuration"
-
-#: ../app/views/admin/lti/edit.php:31
-msgid "Consumer-Secret"
-msgstr "Consumer secret"
-
-#: ../app/views/admin/lti/edit.php:37
-msgid "OAuth Signatur Methode"
-msgstr ""
-
-#: ../app/views/admin/lti/edit.php:46
-msgid "Eingabe einer abweichenden URL im Kurs erlauben"
-msgstr "Allow entering a different URL in the course"
-
-#: ../app/views/admin/lti/edit.php:51
-msgid "Auswahl von Inhalten über LTI Deep Linking (Content Item)"
-msgstr "Content selection via LTI Deep Linking (Content Item)"
-
-#: ../app/views/admin/login_style/index.php:16
-msgid "Aktiviert für"
-msgstr "Activated for"
-
-#: ../app/views/admin/login_style/index.php:37
-msgid "Bild nicht mehr für die Desktopansicht verwenden"
-msgstr "Don't use the image for the desktop view anymore"
-
-#: ../app/views/admin/login_style/index.php:38
-msgid "Bild für die Desktopansicht verwenden"
-msgstr "Use the image for the desktop view"
-
-#: ../app/views/admin/login_style/index.php:44
-msgid "Bild nicht mehr für die Mobilansicht verwenden"
-msgstr "Don't use the image for the mobile view anymore"
-
-#: ../app/views/admin/login_style/index.php:45
-msgid "Bild für die Mobilansicht verwenden"
-msgstr "Use the image for the mobile view"
-
-#: ../app/views/admin/login_style/index.php:54
-msgid "Soll das Bild wirklich gelöscht werden?"
-msgstr "Do you really want to delete the picture?"
-
-#: ../app/views/admin/login_style/index.php:63
-msgid ""
-"In Ihrem System sind leider keine Bilder für den Startbildschirm hinterlegt."
-msgstr "No images for the start screen are stored in your system."
-
-#: ../app/views/admin/login_style/newpic.php:4
-msgid "Bild(er) hinzufügen"
-msgstr "Add image(s)"
-
-#: ../app/views/admin/login_style/newpic.php:7
-msgid "Bild(er) hochladen"
-msgstr "Upload image(s)"
-
-#: ../app/views/admin/login_style/newpic.php:19
-msgid "aktiv in Desktopansicht"
-msgstr "active in desktop view"
-
-#: ../app/views/admin/login_style/newpic.php:24
-msgid "aktiv in Mobilansicht"
-msgstr "active in mobile view"
-
-#: ../app/views/privacy/print.php:1
-#, php-format
-msgid "Personenbezogene Daten von %s"
-msgstr "Personal data of %s"
-
-#: ../app/views/privacy/index.php:2
-msgid "In dieser Kategorie sind keine Daten vorhanden."
-msgstr "No data are available in this category."
-
-#: ../app/views/privacy/index.php:12
-#, php-format
-msgid "%u Einträge"
-msgstr "%u entries"
-
-#: ../app/views/my_studygroups/_course.php:14
-msgid ""
-"Versteckte Studiengruppen können über die Suchfunktionen nicht gefunden "
-"werden."
-msgstr "Hidden study groups cannot be found via the search feature."
-
-#: ../app/views/my_studygroups/_course.php:17
-msgid ""
-"Um die Studiengruppe sichtbar zu machen, wählen Sie den Punkt \"Sichtbarkeit"
-"\" im Administrationsbereich der Veranstaltung."
-msgstr ""
-"In order to enable visibility of the study group, please choose the tab "
-"\"visibility\" in the administration area of the course."
-
-#: ../app/views/my_studygroups/_course.php:19
-msgid "Um die Studiengruppe sichtbar zu machen, wenden Sie sich an die Admins."
-msgstr "To change the visibility of the study group please contact the admins."
-
-#: ../app/views/my_studygroups/_course.php:56
-#: ../app/views/my_courses/_course.php:67
-#: ../app/views/my_courses/_course.php:125
-#: ../app/views/my_courses/waiting_list.php:89
-msgid "Die Teilnahme ist bindend. Bitte wenden Sie sich an die Lehrenden."
-msgstr "Participation is binding. Please contact the lecturers."
-
-#: ../app/views/my_studygroups/_course.php:61
-msgid "aus der Studiengruppe abmelden"
-msgstr "sign out of the study group"
-
-#: ../app/views/my_studygroups/index.php:18
-msgid "Gruppe ändern"
-msgstr "Change group"
-
-#: ../app/views/my_studygroups/index.php:29
-msgid ""
-"Sie haben bisher noch keine Studiengruppe gegründet oder sich in eine "
-"eingetragen."
-msgstr ""
-"You have not yet created a study group or registered as a member of one."
-
-#: ../app/views/tour/admin_overview.php:43
-msgid "Anzahl der Schritte"
-msgstr "Number of steps"
-
-#: ../app/views/tour/admin_overview.php:53
-msgid "Status der Tour (aktiv oder inaktiv)"
-msgstr "State of the tour (active or inactive)"
-
-#: ../app/views/tour/admin_overview.php:72
-msgid "Tour bearbeiten"
-msgstr "Edit tour"
-
-#: ../app/views/tour/admin_overview.php:76
-msgid "Tour exportieren"
-msgstr "Export tour"
-
-#: ../app/views/tour/admin_overview.php:81
-msgid "Tour löschen"
-msgstr "Delete tour"
-
-#: ../app/views/tour/admin_overview.php:99
-msgid "Keine Touren vorhanden."
-msgstr "No tours available."
-
-#: ../app/views/tour/admin_conflicts.php:17
-msgid "Feld"
-msgstr "Field"
-
-#: ../app/views/tour/admin_conflicts.php:18
-#: ../app/views/help_content/admin_conflicts.php:19
-#, php-format
-msgid "Lokale Version (%s)"
-msgstr "Local version (%s)"
-
-#: ../app/views/tour/admin_conflicts.php:19
-#: ../app/views/help_content/admin_conflicts.php:20
-#, php-format
-msgid "Offizielle Version (%s)"
-msgstr "Official version (%s)"
-
-#: ../app/views/tour/admin_conflicts.php:43
-#, php-format
-msgid "(Schritt %s)"
-msgstr "(Step %s)"
-
-#: ../app/views/tour/admin_conflicts.php:61
-#: ../app/views/help_content/admin_conflicts.php:42
-msgid "Keine Konflikte vorhanden."
-msgstr "No conflicts."
-
-#: ../app/views/tour/import.php:6 ../app/views/tour/import.php:45
-#: ../app/views/wiki/import.php:99
-msgid "Importieren"
-msgstr "Import"
-
-#: ../app/views/tour/import.php:10 ../app/views/tour/import.php:18
-msgid "Datei:"
-msgstr "File:"
-
-#: ../app/views/tour/import.php:14
-msgid "Bitte wählen Sie eine Quelldatei mit der Tour aus"
-msgstr "Please select a source file with the tour"
-
-#: ../app/views/tour/import.php:23
-msgid "Stud.IP Version"
-msgstr "Stud.IP version"
-
-#: ../app/views/tour/edit_step.php:16
-#, php-format
-msgid "Schritt %s"
-msgstr "Step %s"
-
-#: ../app/views/tour/edit_step.php:21
-msgid "Bitte geben Sie einen Titel für den Schritt an"
-msgstr "Please enter a title for this step"
-
-#: ../app/views/tour/edit_step.php:27
-msgid "Bitte geben Sie den Text für diesen Schritt ein"
-msgstr "Please enter a text for this step"
-
-#: ../app/views/tour/edit_step.php:34
-msgid "Geführt"
-msgstr "Guided"
-
-#: ../app/views/tour/edit_step.php:50
-msgid "Route für den Schritt (z.B. \"dispatch.php/profile\")"
-msgstr "Route for the step (e.g. \"dispatch.php/profile\")"
-
-#: ../app/views/tour/edit_step.php:53
-msgid "CSS-Selektor"
-msgstr "CSS selector"
-
-#: ../app/views/tour/edit_step.php:56
-msgid "Selektor, an dem der Schritt angezeigt wird"
-msgstr "Trigger for step"
-
-#: ../app/views/tour/edit_step.php:79
-msgid "oben"
-msgstr "above"
-
-#: ../app/views/tour/edit_step.php:116
-msgid "Selektiertes Element"
-msgstr "Selected element"
-
-#: ../app/views/tour/edit_step.php:155
-msgid "unten"
-msgstr "below"
-
-#: ../app/views/tour/admin_details.php:12
-msgid "Sprache der Tour:"
-msgstr "Tour language:"
-
-#: ../app/views/tour/admin_details.php:25
-msgid "Name der Tour:"
-msgstr "Name of tour:"
-
-#: ../app/views/tour/admin_details.php:29
-msgid "Bitte geben Sie einen Namen für die Tour an"
-msgstr "Please add a name for the tour"
-
-#: ../app/views/tour/admin_details.php:36
-msgid "Bitte geben an, welchen Inhalt die Tour hat"
-msgstr "Please add a description of the tour content"
-
-#: ../app/views/tour/admin_details.php:40
-msgid "Art der Tour:"
-msgstr "Type of tour:"
-
-#: ../app/views/tour/admin_details.php:43
-msgid "Tour (passiv)"
-msgstr "Tour (passive)"
-
-#: ../app/views/tour/admin_details.php:46
-msgid "Wizard (interaktiv)"
-msgstr "Wizard (interactive)"
-
-#: ../app/views/tour/admin_details.php:52
-msgid "Zugang zur Tour:"
-msgstr "Access to tour:"
-
-#: ../app/views/tour/admin_details.php:58
-msgid "Anzeige im Hilfecenter"
-msgstr "Show in help centre"
-
-#: ../app/views/tour/admin_details.php:61
-msgid "Startet bei jedem Aufruf der Seite, bis die Tour abgeschlossen wurde"
-msgstr "Starts at every reload of the page until tour is finished"
-
-#: ../app/views/tour/admin_details.php:64
-msgid "Startet nur beim ersten Aufruf der Seite"
-msgstr "Starts only on the first loading of the page"
-
-#: ../app/views/tour/admin_details.php:71
-msgid "Startseite der Tour:"
-msgstr "Starting page of tour:"
-
-#: ../app/views/tour/admin_details.php:75
-msgid "Bitte geben Sie eine Startseite für die Tour an"
-msgstr "Please select a start page for the tour"
-
-#: ../app/views/tour/admin_details.php:81
-msgid "Geltungsbereich (Nutzendenstatus):"
-msgstr "Scope (user status):"
-
-#: ../app/views/tour/admin_details.php:96
-msgid "Teilnehmende der Veranstaltung"
-msgstr "Course participants"
-
-#: ../app/views/tour/admin_details.php:97
-msgid "Mitglied der Einrichtung"
-msgstr "Member of institute"
-
-#: ../app/views/tour/admin_details.php:98
-msgid "Eingeschrieben in Studiengang"
-msgstr "Enroled in course of study"
-
-#: ../app/views/tour/admin_details.php:99
-msgid "Angestrebter Abschluss"
-msgstr "Desired degree"
-
-#: ../app/views/tour/admin_details.php:100
-msgid "Zugeordnet zur Nutzerdomäne"
-msgstr "Assigned to user domain"
-
-#: ../app/views/tour/admin_details.php:104
-msgid "interne ID des Objekts"
-msgstr "internal object id"
-
-#: ../app/views/tour/admin_details.php:119
-msgid "Schritte"
-msgstr "Steps"
-
-#: ../app/views/tour/admin_details.php:171
-msgid "In dieser Tour sind bisher keine Schritte vorhanden."
-msgstr "This tour has no steps yet."
-
-#: ../app/views/my_courses/_course.php:22
-#: ../app/views/calendar/single/seminar_events.php:63
-msgid "[Vertretung]"
-msgstr "[Substitute]"
-
-#: ../app/views/my_courses/_course.php:26
-msgid ""
-"Versteckte Veranstaltungen können über die Suchfunktionen nicht gefunden "
-"werden."
-msgstr "Hidden courses cannot be found via the search feature."
-
-#: ../app/views/my_courses/_course.php:29
-msgid ""
-"Um die Veranstaltung sichtbar zu machen, wählen Sie den Punkt \"Sichtbarkeit"
-"\" im Administrationsbereich der Veranstaltung."
-msgstr ""
-"In order to enable visibility of the course, please choose the tab "
-"\"visibility\" in the administration area of the course."
-
-#: ../app/views/my_courses/_course.php:31
-msgid "Um die Veranstaltung sichtbar zu machen, wenden Sie sich an Admins."
-msgstr "Please contact the admins to change the visibility of the course."
-
-#: ../app/views/my_courses/_course.php:72
-#: ../app/views/my_courses/_course.php:129
-#: ../app/views/my_courses/waiting_list.php:93
-msgid "aus der Veranstaltung abmelden"
-msgstr "sign out of the course"
-
-#: ../app/views/my_courses/_deputy_bosses.php:1
-#: ../app/views/my_courses/_deputy_bosses.php:4
-msgid "Personen, deren Standardvertretung ich bin"
-msgstr "Persons whose default substitute I am"
-
-#: ../app/views/my_courses/_deputy_bosses.php:30
-msgid "Personenangaben bearbeiten"
-msgstr "Edit user's details"
-
-#: ../app/views/my_courses/_deputy_bosses.php:36
-#, php-format
-msgid "Nachricht an %s senden"
-msgstr "Send message to %s"
-
-#: ../app/views/my_courses/_deputy_bosses.php:39
-#, php-format
-msgid "Wollen Sie sich wirklich als Standardvertretung von %s austragen?"
-msgstr "Do you really want to cancel the substitution for %s?"
-
-#: ../app/views/my_courses/_deputy_bosses.php:41
-#, php-format
-msgid "Mich als Standardvertretung von %s austragen"
-msgstr "Cancel my substitution for %s"
-
-#: ../app/views/my_courses/courseexport.php:4
-msgid "Export Veranstaltungsübersicht"
-msgstr "Export course overview"
-
-#: ../app/views/my_courses/waiting_list.php:4
-msgid "Anmelde- und Wartelisteneinträge"
-msgstr "Entries on registration and waiting list"
-
-#: ../app/views/my_courses/waiting_list.php:25
-msgid "Position/Chance"
-msgstr "Position/Chance"
-
-#: ../app/views/my_courses/waiting_list.php:46
-msgid "geschlossen"
-msgstr "closed"
-
-#: ../app/views/my_courses/waiting_list.php:50
-msgid "Position oder Wahrscheinlichkeit"
-msgstr "Position or probability"
-
-#: ../app/views/my_courses/waiting_list.php:59
-#, php-format
-msgid "Priorität %1$u im Anmeldeset \"%2$s\""
-msgstr "Priority %1$u in admission set \"%2$s\""
-
-#: ../app/views/my_courses/waiting_list.php:78
-msgid "Autom."
-msgstr "Autom."
-
-#: ../app/views/my_courses/waiting_list.php:80
-msgid "Vorl."
-msgstr "Course"
-
-#: ../app/views/my_courses/waiting_list.php:82
-msgid "Wartel."
-msgstr "Waiting list."
-
-#: ../app/views/my_courses/archive.php:2
-msgid ""
-"Es befinden sich zur Zeit keine Veranstaltungen im Archiv, an denen Sie "
-"teilgenommen haben."
-msgstr "In the archive there presently are no courses you have joined."
-
-#: ../app/views/my_courses/archive.php:41
-msgid "Beiträge des Forums der Veranstaltung"
-msgstr "Course's forum postings"
-
-#: ../app/views/my_courses/archive.php:52
-#: ../app/views/my_courses/archive.php:56
-msgid "Dateisammlung der Veranstaltung herunterladen"
-msgstr "Download course's document folder"
-
-#: ../app/views/my_courses/archive.php:64
-msgid "Beiträge des Wikis der Veranstaltung"
-msgstr "Course's wiki pages"
-
-#: ../app/views/my_courses/groups.php:6
-msgid "Gruppenzuordnung"
-msgstr "Group allocation"
-
-#: ../app/views/my_courses/groups.php:10
-msgid "Gruppen/Farbe"
-msgstr "Group/colour"
-
-#: ../app/views/my_courses/groups.php:43
-msgid "Zugeordnet zu Gruppe "
-msgstr "Assigned to group "
-
-#: ../app/views/contact/index.php:84
-msgid "Kontakt aus Gruppe entfernen"
-msgstr "Remove contact from group"
-
-#: ../app/views/contact/index.php:84
-msgid "Kontakt entfernen"
-msgstr "Remove contact"
-
-#: ../app/views/contact/index.php:88
-#, php-format
-msgid "Wollen Sie %s wirklich von der Liste entfernen"
-msgstr "Do you really want to remove %s from the list"
-
-#: ../app/views/contact/index.php:101
-msgid "Keine Kontakte in der Gruppe vorhanden"
-msgstr "No contact available in this group"
-
-#: ../app/views/contact/index.php:101
-msgid "Keine Kontakte vorhanden"
-msgstr "No contacts available"
-
-#: ../app/views/contact/index.php:111
-msgid "Kontakte aus Gruppe entfernen"
-msgstr "Remove contacts from group"
-
-#: ../app/views/contact/index.php:111
-msgid "Kontakte entfernen"
-msgstr "Remove contacts"
-
-#: ../app/views/contact/editGroup.php:6
-msgid "Gruppe anlegen"
-msgstr "Create group"
-
-#: ../app/views/wiki/change_courseperms.php:5
-#: ../app/views/wiki/change_pageperms.php:33
-msgid "Editierberechtigung"
-msgstr "Edit permission"
-
-#: ../app/views/wiki/change_courseperms.php:10
-#: ../app/views/wiki/change_pageperms.php:21
-#: ../app/views/wiki/change_pageperms.php:39
-msgid "Alle in der Veranstaltung"
-msgstr "All in the course"
-
-#: ../app/views/wiki/change_courseperms.php:15
-#: ../app/views/wiki/change_pageperms.php:28
-#: ../app/views/wiki/change_pageperms.php:45
-msgid "Lehrende und Tutor/innen"
-msgstr "Lecturers and tutors"
-
-#: ../app/views/wiki/change_pageperms.php:9
-msgid "Standard Wiki-Einstellungen verwenden"
-msgstr "Use default wiki settings"
-
-#: ../app/views/wiki/change_pageperms.php:14
-msgid "Leseberechtigung"
-msgstr "Read permission"
-
-#: ../app/views/wiki/change_pageperms.php:19
-msgid "Wiki-Seite für alle Teilnehmende lesbar"
-msgstr "Wiki page readable for all participants"
-
-#: ../app/views/wiki/change_pageperms.php:26
-msgid "Wiki-Seite nur eingeschränkt lesbar"
-msgstr "The wiki page's readability is restricted"
-
-#: ../app/views/wiki/change_pageperms.php:38
-msgid "Nur editierbar, wenn für alle Teilnehmenden lesbar"
-msgstr "Only editable if readable for all participants"
-
-#: ../app/views/wiki/change_pageperms.php:44
-msgid "Nur editierbar, wenn für diesen Personenkreis lesbar"
-msgstr "Only editable if readable for this group of persons"
-
-#: ../app/views/wiki/create.php:2
-msgid "Hier können Sie eine neue Wiki-Seite erstellen."
-msgstr "Here you can create a new wiki page."
-
-#: ../app/views/wiki/create.php:5
-msgid "Eckige Klammern und das Zeichen | sind im Titel nicht erlaubt."
-msgstr ""
-
-#: ../app/views/wiki/create.php:12
-msgid "Name der Wiki-Seite"
-msgstr "Wiki page name"
-
-#: ../app/views/wiki/info.php:34
-msgid "Geändert von"
-msgstr "Changed by"
-
-#: ../app/views/wiki/info.php:43
-msgid "Verweise auf diese Seite"
-msgstr "Pages refering to this page"
-
-#: ../app/views/wiki/import.php:12
-msgid "Meinten Sie eine der folgenden Veranstaltungen?"
-msgstr "Did you mean one of the following courses?"
-
-#: ../app/views/wiki/import.php:14
-msgid ""
-"Sie können hier eine Veranstaltung mit zu importierenden Wikiseiten suchen."
-msgstr "Here you can search for a course with wiki pages to import."
-
-#: ../app/views/wiki/import.php:72
-#, php-format
-msgid "%s: Importierbare Wikiseiten"
-msgstr "%s: Wiki pages that can be imported"
-
-#: ../app/views/wiki/import.php:82
-msgid "Seitenname"
-msgstr "Page name"
-
-#: ../app/views/wiki/import.php:118
-msgid "Die gewählte Veranstaltung besitzt keine Wikiseiten!"
-msgstr "The selected course does not have any wiki page!"
-
-#: ../app/views/wiki/import.php:125
-msgid "Import neu starten"
-msgstr "Restart import"
-
-#: ../app/views/wiki/import.php:130
-msgid "Zurück zum Wiki"
-msgstr "Back to the wiki"
-
-#: ../app/views/institute/basicdata/index.php:6
-msgid "Verwaltung der Einrichtungsgrunddaten"
-msgstr "Basic institute data management"
-
-#: ../app/views/institute/basicdata/index.php:19
-#: ../app/views/institute/basicdata/index.php:27
-msgid "Diese Einrichtung hat den Status einer Fakultät."
-msgstr "This institute has the status of a faculty."
-
-#: ../app/views/institute/basicdata/index.php:20
-#, php-format
-msgid "Es wurden bereits %u andere Einrichtungen zugeordnet."
-msgstr "%u other institutes have already been allocated."
-
-#: ../app/views/institute/basicdata/index.php:140
-msgid "Infobild ändern"
-msgstr "Change avatar picture"
-
-#: ../app/views/institute/basicdata/index.php:146
-msgid "Infobild löschen"
-msgstr "Delete avatar picture"
-
-#: ../app/views/institute/members/index.php:2
-msgid "Mitarbeiterliste"
-msgstr "Staff list"
-
-#: ../app/views/institute/members/_table_body.php:17
-#, php-format
-msgid "Nachricht an alle Mitglieder mit dem Status %s verschicken"
-msgstr "Send message to all members having status %s"
-
-#: ../app/views/institute/members/_table_body.php:27
-#, php-format
-msgid "Nachricht an alle Mitglieder der Gruppe %s verschicken"
-msgstr "Send message to all members of group %s"
-
-#: ../app/views/institute/members/_table_body.php:109
-#: ../app/views/institute/members/_table_body.php:165
-msgid "Wollen Sie die Person wirklich aus der Gruppe austragen?"
-msgstr "Do you really want to sign out the person from the group?"
-
-#: ../app/views/institute/members/_table_body.php:114
-msgid "Person aus Einrichtung austragen"
-msgstr "Sign out person from institute"
-
-#: ../app/views/institute/members/_table_body.php:116
-msgid "Wollen Sie die Person wirklich aus der Einrichtung austragen?"
-msgstr "Do you really want to sign out the person from the institute?"
-
-#: ../app/views/institute/members/_table_body.php:158
-msgid "Gruppendaten bearbeiten"
-msgstr "Edit group data"
-
-#: ../app/views/event_log/admin.php:1
-msgid "Sie können hier einen Teil der Logging-Funktionen direkt verändern."
-msgstr "Here, you can directly edit parts of the logging features."
-
-#: ../app/views/event_log/admin.php:11
-msgid "Ablaufzeit"
-msgstr "Termination time"
-
-#: ../app/views/event_log/show.php:8
-msgid "Aktionen filtern"
-msgstr "Filter actions"
-
-#: ../app/views/event_log/show.php:10
-msgid "Alle Aktionen"
-msgstr "All actions"
-
-#: ../app/views/event_log/show.php:25
-msgid "Darstellung"
-msgstr "Display"
-
-#: ../app/views/event_log/show.php:28
-msgid "Kompakt"
-msgstr "Compact"
-
-#: ../app/views/event_log/show.php:37
-msgid "Art der Einträge"
-msgstr "Entry type"
-
-#: ../app/views/event_log/show.php:52
-msgid "Eintrag auswählen"
-msgstr "Select entry"
-
-#: ../app/views/event_log/show.php:63
-msgid "neue Suche"
-msgstr "new search"
-
-#: ../app/views/event_log/show.php:71
-msgid "Veranstaltung / Einrichtung / ... "
-msgstr "Course / Institute / ... "
-
-#: ../app/views/event_log/show.php:111
-msgid "Info:"
-msgstr "Information:"
-
-#: ../app/views/event_log/show.php:116
-msgid "Debug:"
-msgstr "Debug:"
-
-#: ../app/views/event_log/edit.php:28
-msgid "Ablaufzeit in Tagen"
-msgstr "Expiration in days"
-
-#: ../app/views/event_log/edit.php:29
-msgid "0 = keine Ablaufzeit"
-msgstr "0 = no termination time"
-
-#: ../app/views/my_institutes/index.php:4
-#, php-format
-msgid "Wollen Sie sich aus dem/der %s wirklich austragen?"
-msgstr "Do you really want to sign off the \"%s\"?"
-
-#: ../app/views/my_institutes/index.php:19
-#, php-format
-msgid ""
-"Sie haben sich noch keinen Einrichtungen zugeordnet.\n"
-"           Um sich Einrichtungen zuzuordnen, nutzen Sie bitte die "
-"entsprechende %sOption%s unter \"Persönliche Angaben - Studiendaten\"\n"
-"           auf Ihrer persönlichen Einstellungsseite."
-msgstr ""
-"You have not allocated yourself to an institute. In order to allocate "
-"yourself to an institute, please use the respective %sOption%s under \"User "
-"details - Study details\" on your personal settings page."
-
-#: ../app/views/my_institutes/index.php:79
-msgid "aus der Einrichtung austragen"
-msgstr "removed from the institute"
-
-#: ../app/views/my_institutes/index.php:107
-msgid "Studiendaten bearbeiten"
-msgstr "Edit study details"
-
-#: ../app/views/room_management/overview/buildings.php:38
-msgid "Raumgruppen für Gebäude erstellen"
-msgstr "Create room groups for buildings"
-
-#: ../app/views/room_management/overview/index.php:29
-msgid "Gruppenbelegungspläne"
-msgstr "Group booking plans"
-
-#: ../app/views/room_management/overview/index.php:73
-msgid "Ressourcen-Berechtigungen verwalten"
-msgstr "Manage resource permissions"
-
-#: ../app/views/room_management/overview/index.php:91
-msgid "Aktuelle Raumanfragen"
-msgstr "Current room requests"
-
-#: ../app/views/room_management/overview/index.php:125
-msgid "Es liegen keine aktuellen Raumanfragen vor!"
-msgstr "There are no current room requests!"
-
-#: ../app/views/room_management/planning/semester_plan.php:21
-#: ../app/views/room_management/planning/index.php:20
-msgid "Raumgruppe"
-msgstr "Room group"
-
-#: ../app/views/room_management/planning/booking_comments_html_export_frame.php:8
-#, php-format
-msgid "Kalenderwoche: %d. Woche"
-msgstr "Calendar week: %d. week"
-
-#: ../app/views/room_management/planning/index.php:24
-msgid "KW"
-msgstr "Week"
-
-#: ../app/views/room_management/planning/booking_comments.php:117
-#: ../app/views/room_management/planning/booking_comments.php:124
-#, php-format
-msgid ""
-"In der %d. Kalenderwoche sind keine Buchungen mit Kommentaren vorhanden!"
-msgstr "There are no bookings with comments in the %d. calendar week!"
-
-#: ../app/views/room_management/planning/copy_bookings.php:7
-msgid "Verfügbare Räume"
-msgstr "Available rooms"
-
-#: ../app/views/room_management/planning/copy_bookings.php:42
-msgid "Aus welchem Semester sollen Buchungen kopiert werden?"
-msgstr "From which semester shall the bookings be copied?"
-
-#: ../app/views/room_management/planning/copy_bookings.php:58
-msgid "Buchungen sollen erst ab der folgenden Semesterwoche kopiert werden:"
-msgstr ""
-
-#: ../app/views/room_management/planning/copy_bookings.php:72
-msgid "Die gewählte Raumgruppe ist leer!"
-msgstr "The selected room group is empty!"
-
-#: ../app/views/room_management/planning/copy_bookings.php:104
-msgid "Zeitbereiche"
-msgstr "Time ranges"
-
-#: ../app/views/room_management/planning/copy_bookings.php:133
-msgid "In welches Semester sollen die Buchungen kopiert werden?"
-msgstr "In which semester shall the bookings be copied?"
-
-#: ../app/views/room_management/planning/copy_bookings.php:180
-msgid "Prüfung der Machbarkeit"
-msgstr "Feasibility check"
-
-#: ../app/views/room_management/planning/copy_bookings.php:241
-msgid "Liste mit Buchungen herunterladen"
-msgstr ""
-
-#: ../app/views/calendar/instschedule/_entry_details.php:3
-#: ../app/views/calendar/schedule/_entry_inst.php:8
-#, php-format
-msgid "Veranstaltungen mit regelmäßigen Zeiten am %s, %s Uhr"
-msgstr "Courses with periodic dates on %s, %s"
-
-#: ../app/views/calendar/instschedule/index.php:2
-msgid "im"
-msgstr "in"
-
-#: ../app/views/calendar/group/week.php:16
-#: ../app/views/calendar/single/week.php:47
-msgid "Eine Woche zurück"
-msgstr "One week back"
-
-#: ../app/views/calendar/group/week.php:17
-#: ../app/views/calendar/group/week.php:25
-#: ../app/views/calendar/single/week.php:48
-#: ../app/views/calendar/single/week.php:61
-#, php-format
-msgid "%u. Woche"
-msgstr "%u. week"
-
-#: ../app/views/calendar/group/week.php:21
-#, php-format
-msgid "%s. Woche vom %s bis %s"
-msgstr "Week %s from %s until %s"
-
-#: ../app/views/calendar/group/week.php:26
-#: ../app/views/calendar/single/week.php:62
-msgid "Eine Woche vor"
-msgstr "One week forward"
-
-#: ../app/views/calendar/group/week.php:53
-#: ../app/views/calendar/group/week.php:98
-#: ../app/views/calendar/group/week.php:131
-#: ../app/views/calendar/group/day.php:48
-#: ../app/views/calendar/group/day.php:78
-#: ../app/views/calendar/group/day.php:111
-#: ../app/views/calendar/single/_day_dayevents.php:24
-#: ../app/views/calendar/single/_day_dayevents.php:30
-#, php-format
-msgid "Neuer Tagestermin am %x"
-msgstr "New all-day date on %x"
-
-#: ../app/views/calendar/group/week.php:59
-#: ../app/views/calendar/group/week.php:115
-#: ../app/views/calendar/group/week.php:137
-#: ../app/views/calendar/group/day.php:55
-#: ../app/views/calendar/group/day.php:99
-#: ../app/views/calendar/group/day.php:118
-msgid "Neuer Termin um %R Uhr"
-msgstr "New date at %R"
-
-#: ../app/views/calendar/group/week.php:72
-#: ../app/views/calendar/group/day.php:67
-#: ../app/views/calendar/single/_select_calendar.php:7
-msgid "Eigener Kalender"
-msgstr "Own calendar"
-
-#: ../app/views/calendar/group/year.php:6
-#: ../app/views/calendar/group/month.php:8
-#: ../app/views/calendar/single/year.php:6
-#: ../app/views/calendar/single/_include_month.php:13
-#: ../app/views/calendar/single/month.php:6
-msgid "Ein Jahr zurück"
-msgstr "One year back"
-
-#: ../app/views/calendar/group/year.php:16
-#: ../app/views/calendar/group/month.php:26
-#: ../app/views/calendar/single/year.php:21
-#: ../app/views/calendar/single/_include_month.php:31
-#: ../app/views/calendar/single/month.php:29
-msgid "Ein Jahr vor"
-msgstr "One year forward"
-
-#: ../app/views/calendar/group/_tooltip_year.php:8
-#, php-format
-msgid "%s hat 1 Termin"
-msgid_plural "%s hat %s Termine"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/calendar/group/_attendees.php:3
-msgid "Teilnehmende/n hinzufügen"
-msgstr "Add participant(s)"
-
-#: ../app/views/calendar/group/_attendees.php:21
-#, php-format
-msgid "(%s weitere/r Teilnehmende/r)"
-msgid_plural "(%s weitere Teilnehmende)"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/calendar/group/_attendees.php:23
-#, php-format
-msgid "(%s Teilnehmende)"
-msgstr "(%s participants)"
-
-#: ../app/views/calendar/group/_attendees.php:63
-msgid "Teilnehmende/n entfernen"
-msgstr "Remove participant(s)"
-
-#: ../app/views/calendar/group/day.php:19
-#: ../app/views/calendar/single/_day.php:21
-msgid "Einen Tag zurück"
-msgstr "One day back"
-
-#: ../app/views/calendar/group/day.php:20
-#: ../app/views/calendar/group/day.php:29
-#: ../app/views/calendar/single/_day.php:23
-#: ../app/views/calendar/single/_day.php:38
-#, php-format
-msgid "%x"
-msgstr "%x"
-
-#: ../app/views/calendar/group/day.php:30
-#: ../app/views/calendar/single/_day.php:40
-msgid "Einen Tag vor"
-msgstr "One day forward"
-
-#: ../app/views/calendar/group/month.php:12
-#: ../app/views/calendar/single/_include_month.php:16
-#: ../app/views/calendar/single/month.php:10
-msgid "Einen Monat zurück"
-msgstr "One month back"
-
-#: ../app/views/calendar/group/month.php:22
-#: ../app/views/calendar/single/_include_month.php:28
-#: ../app/views/calendar/single/month.php:25
-msgid "Einen Monat vor"
-msgstr "One month forward"
-
-#: ../app/views/calendar/contentbox/display.php:30
-msgid ""
-"Es sind keine aktuellen Termine vorhanden. Um neue Termine zu erstellen, "
-"klicken Sie rechts auf das Plus."
-msgstr ""
-"No current dates available. To create new dates click on the plus icon on "
-"the right."
-
-#: ../app/views/calendar/contentbox/display.php:32
-msgid ""
-"Es sind keine aktuellen Termine vorhanden. Um neue Termine zu erstellen, "
-"klicken Sie rechts auf die Zahnräder."
-msgstr ""
-"No current dates available. To create new dates click on the cogwheel icon "
-"on the right."
-
-#: ../app/views/calendar/single/_day.php:62
-#: ../app/views/calendar/single/week.php:92
-#: ../app/views/calendar/single/week.php:110
-msgid "Früher"
-msgstr "Earlier"
-
-#: ../app/views/calendar/single/_day.php:78
-#: ../app/views/calendar/single/week.php:187
-#: ../app/views/calendar/single/week.php:195
-msgid "Später"
-msgstr "Later"
-
-#: ../app/views/calendar/single/manage_access.php:8
-#: ../app/views/calendar/single/manage_access.php:67
-#: ../app/views/calendar/single/edit.php:202
-msgid "Keine"
-msgstr "None"
-
-#: ../app/views/calendar/single/manage_access.php:8
-#: ../app/views/calendar/single/manage_access.php:72
-msgid "Lesen"
-msgstr "Read"
-
-#: ../app/views/calendar/single/manage_access.php:8
-#: ../app/views/calendar/single/manage_access.php:77
-msgid "Schreiben"
-msgstr "Write"
-
-#: ../app/views/calendar/single/manage_access.php:16
-msgid "Alle Personen anzeigen"
-msgstr "Show all users"
-
-#: ../app/views/calendar/single/manage_access.php:44
-msgid "Eigene Berechtigung"
-msgstr "Own permission"
-
-#: ../app/views/calendar/single/manage_access.php:84
-msgid "Benutzer entfernen"
-msgstr "Remove user"
-
-#: ../app/views/calendar/single/_jump_to.php:5
-msgid "Gehe zu:"
-msgstr "Go to:"
-
-#: ../app/views/calendar/single/_calhead_label_week.php:1
-#, php-format
-msgid "%s. Woche"
-msgstr "%s. week"
-
-#: ../app/views/calendar/single/_calhead_label_week.php:3
-#, php-format
-msgid "vom %s bis %s"
-msgstr "from %s to %s"
-
-#: ../app/views/calendar/single/_event_data.php:35
-#: ../app/views/calendar/single/edit.php:120
-#: ../app/views/calendar/single/_tooltip.php:27
-msgid "Raum/Ort"
-msgstr "Location"
-
-#: ../app/views/calendar/single/_event_data.php:75
-#: ../app/views/calendar/single/_tooltip.php:87
-msgid "Durchführende Lehrperson"
-msgid_plural "Durchführende Lehrende"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/calendar/single/_event_data.php:89
-#: ../app/views/calendar/single/_tooltip.php:101
-msgid "Betroffene Gruppen"
-msgstr "Affected groups"
-
-#: ../app/views/calendar/single/year.php:104
-#, php-format
-msgid "1 Termin"
-msgid_plural "%s Termine"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/calendar/single/share.php:15
-msgid "Kalender mit anderen Teilen und in andere Kalender einbetten"
-msgstr "Share the calendar with other users and embed it"
-
-#: ../app/views/calendar/single/share.php:19
-msgid ""
-"Sie können sich eine Adresse generieren lassen, mit der Sie Termine aus "
-"Ihrem Stud.IP-Terminkalender in externen Terminkalendern einbinden können."
-msgstr ""
-"You can generate an address to embed your Stud.IP dates in an external "
-"calendar."
-
-#: ../app/views/calendar/single/share.php:21
-msgid ""
-"Die folgende Adresse können Sie in externe Terminkalenderanwendungen "
-"eintragen, um Ihre Termine dort anzuzeigen:"
-msgstr "Use this address in external calendar tools to show your appointments:"
-
-#: ../app/views/calendar/single/share.php:28
-msgid "Verschicken Sie die Export-Adresse als E-Mail:"
-msgstr "Send the export address as E-Mail:"
-
-#: ../app/views/calendar/single/share.php:34
-msgid ""
-"Sie haben außerdem die Möglichkeit, sich eine neue Adresse generieren zu "
-"lassen."
-msgstr "You also have the possibility to let get a new generated address."
-
-#: ../app/views/calendar/single/share.php:35
-#: ../app/views/calendar/single/share.php:50
-msgid "Achtung: Die alte Adresse wird damit ungültig!"
-msgstr "Attention: The old address will thereby become invalid!"
-
-#: ../app/views/calendar/single/share.php:39
-msgid "Sie können die Adresse auch löschen."
-msgstr "You can also delete the address."
-
-#: ../app/views/calendar/single/share.php:40
-#: ../app/views/calendar/single/share.php:54
-msgid ""
-"Ein Zugriff auf Ihre Termine über diese Adresse ist dann nicht mehr möglich!"
-msgstr "Accessing your dates via this address won't be possible anymore!"
-
-#: ../app/views/calendar/single/share.php:47
-msgid "Adresse generieren"
-msgstr "Generate address"
-
-#: ../app/views/calendar/single/share.php:49
-msgid "Neue Adresse generieren"
-msgstr "Generate new address"
-
-#: ../app/views/calendar/single/share.php:53
-msgid "Adresse löschen"
-msgstr "Delete address"
-
-#: ../app/views/calendar/single/export_calendar.php:16
-msgid "Welche Termine sollen exportiert werden"
-msgstr "Which dates shall be exported"
-
-#: ../app/views/calendar/single/export_calendar.php:19
-msgid "Nur eigene Termine"
-msgstr "Only personal dates"
-
-#: ../app/views/calendar/single/export_calendar.php:20
-msgid "Nur Veranstaltungs-Termine"
-msgstr "Only course dates"
-
-#: ../app/views/calendar/single/export_calendar.php:32
-msgid "Nur Termin in folgendem Zeitraum exportieren"
-msgstr "Only export dates from the following period"
-
-#: ../app/views/calendar/single/_attendees.php:17
-#: ../app/views/calendar/single/_tooltip.php:65
-msgid "Teilnehmende:"
-msgstr "Participants:"
-
-#: ../app/views/calendar/single/_select_calendar.php:11
-msgid "Gruppenkalender:"
-msgstr "Group calendar:"
-
-#: ../app/views/calendar/single/_select_calendar.php:24
-msgid "Einzelkalender:"
-msgstr "Single calendar:"
-
-#: ../app/views/calendar/single/_select_calendar.php:45
-msgid "Lehrendenkalender:"
-msgstr "Lecturer calendar:"
-
-#: ../app/views/calendar/single/_select_calendar.php:56
-msgid "Veranstaltungskalender:"
-msgstr "Course calendar:"
-
-#: ../app/views/calendar/single/_select_calendar.php:66
-msgid "Einrichtungskalender:"
-msgstr "Institute calendar:"
-
-#: ../app/views/calendar/single/import.php:15
-msgid "Öffentliche Termine als \"privat\" importieren"
-msgstr "Import public dates as \"private\""
-
-#: ../app/views/calendar/single/import.php:19
-msgid "Datei zum Importieren wählen"
-msgstr "Select file for import"
-
-#: ../app/views/calendar/single/edit.php:7
-msgid "Termine anlegen/bearbeiten"
-msgstr "Create/edit dates"
-
-#: ../app/views/calendar/single/edit.php:24
-msgid "Ganztägig"
-msgstr "All-day"
-
-#: ../app/views/calendar/single/edit.php:84
-msgid "Minuten"
-msgstr "Minutes"
-
-#: ../app/views/calendar/single/edit.php:114
-msgid ""
-"Sie können beliebige Kategorien in das Freitextfeld eingeben. Trennen Sie "
-"einzelne Kategorien bitte durch ein Komma."
-msgstr ""
-"In the free text field you may enter categories of your choice. Please "
-"separate the individual categories with a comma."
-
-#: ../app/views/calendar/single/edit.php:116
-msgid "Eigener Kategoriename"
-msgstr "Own category name"
-
-#: ../app/views/calendar/single/edit.php:125
-msgid "Private und vertrauliche Termine sind nur für Sie sichtbar."
-msgstr "Private and confidential dates are only visible to you."
-
-#: ../app/views/calendar/single/edit.php:133
-msgid "In Veranstaltungskalendern können nur private Termine angelegt werden."
-msgstr "Only personal dates can be created in course calendars."
-
-#: ../app/views/calendar/single/edit.php:135
-msgid "In Einrichtungskalendern können nur private Termine angelegt werden."
-msgstr "Only personal dates can be created in institute calendars."
-
-#: ../app/views/calendar/single/edit.php:137
-msgid ""
-"Im Kalender eines anderen Nutzers können Sie nur private oder vertrauliche "
-"Termine einstellen. Vertrauliche Termine sind nur für Sie und den "
-"Kalenderbesitzer sichtbar. Alle anderen sehen den Termin nur als Besetztzeit."
-msgstr ""
-"You are allowed to add personal or confidential dates to other users "
-"calendars. Confidential dates are only visible for you and the other user, "
-"third persons will see only the information that the slot is occupied."
-
-#: ../app/views/calendar/single/edit.php:166
-#: ../app/views/calendar/single/_edit_status.php:24
-#, php-format
-msgid "Eingetragen am: %s von %s"
-msgstr "Created on %s by %s"
-
-#: ../app/views/calendar/single/edit.php:175
-#: ../app/views/calendar/single/_edit_status.php:33
-#, php-format
-msgid "Zuletzt bearbeitet am: %s von %s"
-msgstr "Last change on %s by %s"
-
-#: ../app/views/calendar/single/edit.php:193
-msgid "Wiederholungsart"
-msgstr "Type of repetition"
-
-#: ../app/views/calendar/single/edit.php:209
-msgid "Täglich"
-msgstr "Daily"
-
-#: ../app/views/calendar/single/edit.php:216
-#, php-format
-msgid "Jeden %s. Tag"
-msgstr "Every %s. day"
-
-#: ../app/views/calendar/single/edit.php:222
-msgid "Jeden Werktag"
-msgstr "Every work day"
-
-#: ../app/views/calendar/single/edit.php:242
-#, php-format
-msgid "Jede %s. Woche am:"
-msgstr "Every %s. week on:"
-
-#: ../app/views/calendar/single/edit.php:258
-msgid "Ersten"
-msgstr "First"
-
-#: ../app/views/calendar/single/edit.php:259
-msgid "Zweiten"
-msgstr "Second"
-
-#: ../app/views/calendar/single/edit.php:260
-msgid "Dritten"
-msgstr "Third"
-
-#: ../app/views/calendar/single/edit.php:261
-msgid "Vierten"
-msgstr "Fourth"
-
-#: ../app/views/calendar/single/edit.php:262
-msgid "Letzten"
-msgstr "Last"
-
-#: ../app/views/calendar/single/edit.php:284
-msgid "Monatlich"
-msgstr "Monthly"
-
-#: ../app/views/calendar/single/edit.php:291
-#, php-format
-msgid "Wiederholt am %s. jeden %s. Monat"
-msgstr "Repeated on %s. every %s. months"
-
-#: ../app/views/calendar/single/edit.php:301
-#, php-format
-msgid "Jeden %s alle %s Monate"
-msgstr "Every %s every %s months"
-
-#: ../app/views/calendar/single/edit.php:336
-msgid "Jährlich"
-msgstr "Yearly"
-
-#: ../app/views/calendar/single/edit.php:342
-#, php-format
-msgid "Jeden %s. %s"
-msgstr "Every %s. %s"
-
-#: ../app/views/calendar/single/edit.php:352
-#, php-format
-msgid "Jeden %s im %s"
-msgstr "Every %s in %s"
-
-#: ../app/views/calendar/single/edit.php:363
-msgid "Wiederholung endet"
-msgstr "End of repetition"
-
-#: ../app/views/calendar/single/edit.php:368
-msgid "Nie"
-msgstr "Never"
-
-#: ../app/views/calendar/single/edit.php:377
-#, php-format
-msgid "Am %s"
-msgstr "On %s"
-
-#: ../app/views/calendar/single/edit.php:388
-#, php-format
-msgid "Nach %s Wiederholungen"
-msgstr "After %s repetitions"
-
-#: ../app/views/calendar/single/edit.php:396
-msgid "Ausnahmen"
-msgstr "Exception(s)"
-
-#: ../app/views/calendar/single/edit.php:406
-msgid "Ausnahme löschen"
-msgstr "Delete exception"
-
-#: ../app/views/calendar/single/edit.php:416
-msgid "Datum eingeben"
-msgstr "Enter date"
-
-#: ../app/views/calendar/single/edit.php:418
-msgid "Ausnahme hinzufügen"
-msgstr "Add exception"
-
-#: ../app/views/calendar/single/edit.php:432
-msgid "Aus Serie löschen"
-msgstr "Delete from series"
-
-#: ../app/views/calendar/single/_day_cell.php:6
-#: ../app/views/calendar/single/_day_cell.php:36
-#: ../app/views/calendar/single/_day_cell.php:49
-msgid "Neuer Termin am %x, %R Uhr"
-msgstr "New date on %x at %R"
-
-#: ../app/views/calendar/single/seminar_events.php:97
-msgid "Es wurden keine Veranstaltungen gefunden. Mögliche Ursachen:"
-msgstr "No courses found. Possible reasons:"
-
-#: ../app/views/calendar/single/seminar_events.php:98
-#, php-format
-msgid ""
-"Sie haben zur Zeit keine Veranstaltungen belegt, an denen Sie teilnehmen "
-"können.<br>Bitte nutzen Sie %s<b>Veranstaltung suchen / hinzufügen</b>%s um "
-"sich für Veranstaltungen anzumelden."
-msgstr ""
-"At present, you are not enroled at any courses you are allowed to "
-"participate in.<br>To choose a course, please click on %s<b>search / add "
-"course</b>%s."
-
-#: ../app/views/calendar/single/seminar_events.php:99
-msgid ""
-"In dem ausgewählten <b>Semester</b> wurden keine Veranstaltungen belegt."
-msgstr "Not enroled at any course in selected <b>semester</b>."
-
-#: ../app/views/calendar/single/seminar_events.php:99
-msgid "Wählen Sie links im <b>Semesterfilter</b> ein anderes Semester aus"
-msgstr "Select another semester in the <b>semester filter</b> on the left"
-
-#: ../app/views/calendar/single/_edit_status.php:4
-msgid "Eigener Teilnahmestatus"
-msgstr "Own participation status"
-
-#: ../app/views/calendar/schedule/_semester_chooser.php:19
-msgid "auswählen"
-msgstr "select"
-
-#: ../app/views/calendar/schedule/_colorpicker.php:2
-msgid "Farbe des Termins"
-msgstr "Date colour"
-
-#: ../app/views/calendar/schedule/_entry_schedule.php:7
-#: ../app/views/calendar/schedule/_entry_course.php:10
-msgid "Stundenplaneintrag"
-msgstr "Timetable entry"
-
-#: ../app/views/calendar/schedule/_entry_schedule.php:36
-msgid "Die Endzeit liegt vor der Startzeit!"
-msgstr "The end time lies before the start time!"
-
-#: ../app/views/calendar/schedule/_entry_course.php:20
-msgid "Dies ist lediglich eine vorgemerkte Veranstaltung"
-msgstr "This is just a pre-selected course"
-
-#: ../app/views/calendar/schedule/_entry_course.php:72
-#: ../app/views/calendar/schedule/_entry_inst.php:45
-msgid "Einblenden"
-msgstr "Show"
-
-#: ../app/views/calendar/schedule/_entry_course.php:80
-#: ../app/views/calendar/schedule/_entry_inst.php:36
-msgid "Ausblenden"
-msgstr "Hide"
-
-#: ../app/views/calendar/schedule/index.php:8
-msgid "Angezeigtes Semester"
-msgstr "Displayed semester"
-
-#: ../app/views/calendar/schedule/index.php:32
-msgid "Ausgeblendete Veranstaltungen anzeigen"
-msgstr "Show hidden courses"
-
-#: ../app/views/calendar/schedule/index.php:38
-msgid "Ausgeblendete Veranstaltungen verbergen"
-msgstr "Mask hidden courses"
-
-#: ../app/views/calendar/schedule/index.php:59
-msgid "Darstellungsgröße"
-msgstr "Display size"
-
-#: ../app/views/calendar/schedule/index.php:68
-msgid "Stundenplan im"
-msgstr "Timetable in"
-
-#: ../app/views/calendar/schedule/index.php:70
-msgid "Mein Stundenplan im"
-msgstr "My timetable in"
-
-#: ../app/views/calendar/schedule/index.php:80
-msgid "Termindetails"
-msgstr "Date details"
-
-#: ../app/views/calendar/schedule/settings.php:5
-msgid "Darstellung des Stundenplans ändern"
-msgstr "Change display of timetable"
-
-#: ../app/views/calendar/schedule/settings.php:8
-msgid "Angezeigter Zeitraum"
-msgstr "Displayed period"
-
-#: ../app/views/calendar/schedule/settings.php:26
-msgid "Angezeigte Wochentage"
-msgstr "Displayed week-days"
-
-#: ../app/views/calendar/schedule/settings.php:34
-msgid "Bitte mindestens einen Wochentag auswählen."
-msgstr "Select at least one day."
-
-#: ../app/views/library_file/create.php:4
-#, php-format
-msgid "Erstellung eines Bibliothekseintrages vom Typ „%s“"
-msgstr "Creating a library entry of type \"%s\""
-
-#: ../app/views/library_file/_add_edit_form.php:26
-msgid "Namenszusatz"
-msgstr "Name affix"
-
-#: ../app/views/library_file/select_type.php:6
-msgid "Von welchem Dokumenttyp ist der Bibliothekseintrag?"
-msgstr "What document type is the library entry of?"
-
-#: ../app/views/my_ilias_accounts/add_object.php:6
-msgid "Art des Lernobjekts"
-msgstr "Learning object type"
-
-#: ../app/views/my_ilias_accounts/index.php:6
-#, php-format
-msgid "Meine Lernobjekte in %s"
-msgstr "My learning objects in %s"
-
-#: ../app/views/my_ilias_accounts/index.php:9
-msgid "Neues Lernobjekt anlegen"
-msgstr "Create new learning object"
-
-#: ../app/views/my_ilias_accounts/index.php:73
-#, php-format
-msgid "Sie haben im System %s noch keine eigenen Lernmodule."
-msgstr "You don't have own learning modules in the system %s yet."
-
-#: ../app/views/my_ilias_accounts/index.php:85
-msgid "Mein Account"
-msgstr "My account"
-
-#: ../app/views/my_ilias_accounts/index.php:85
-msgid "Meine Accounts"
-msgstr "My accounts"
-
-#: ../app/views/my_ilias_accounts/index.php:112
-#: ../app/views/my_ilias_accounts/index.php:114
-msgid "Account neu zuordnen"
-msgstr "Reassign account"
-
-#: ../app/views/my_ilias_accounts/index.php:117
-#: ../app/views/my_ilias_accounts/index.php:130
-#, php-format
-msgid ""
-"Möchten Sie wirklich die bestehende Zuordnung aufheben? Sie verlieren "
-"dadurch alle mit dem bestehenden Account verbundenen Inhalte und "
-"Lernfortschritte im System \"%s\"."
-msgstr ""
-"Do you really want to cancel the existing association? You will loose all "
-"content and learning progress from the existing account in the system \"%s\"."
-
-#: ../app/views/my_ilias_accounts/index.php:125
-#: ../app/views/my_ilias_accounts/index.php:127
-msgid "Account-Zuordnung aufheben"
-msgstr "Remove account assignment"
-
-#: ../app/views/my_ilias_accounts/index.php:137
-#: ../app/views/my_ilias_accounts/index.php:139
-msgid "Account aktualisieren"
-msgstr "Update account"
-
-#: ../app/views/my_ilias_accounts/_ilias_module.php:22
-#: ../app/views/file/_file_aside.php:27 ../app/views/file/_folder_aside.php:20
-msgid "Besitzer/-in"
-msgstr "Owner"
-
-#: ../app/views/my_ilias_accounts/_ilias_module.php:29
-msgid "ILIAS-Nutzer/-in"
-msgstr "ILIAS user"
-
-#: ../app/views/file/_terms_of_use_select.php:8
-msgid ""
-"Bereitgestellte Dateien können heruntergeladen und ggf. weiterverbreitet "
-"werden.\n"
-"               Dabei ist das Urheberrecht sowohl beim Hochladen der Datei "
-"als auch bei der Nutzung\n"
-"               zu beachten. Bitte geben Sie daher an, um welche Art von "
-"Bereitstellung es sich handelt.\n"
-"               Diese Angabe dient mehreren Zwecken: Beim Herunterladen wird "
-"ein Hinweis angezeigt,\n"
-"               welche Nutzung der Datei zulässig ist. Beim Hochladen stellt "
-"die Angabe eine\n"
-"               Entscheidungshilfe dar, damit Sie sichergehen können, dass "
-"die Datei tatsächlich\n"
-"               bereitgestellt werden darf."
-msgstr ""
-"Provided files can be downloaded and distributed if necessary. The copyright "
-"is to be respected both when uploading the file and when using it. "
-"Therefore, please indicate the type of provision involved. This information "
-"serves several purposes: When downloading, a note is displayed, which use of "
-"the file is permitted. When uploading, the information represents a decision "
-"guidance, so that you can be sure that the file may actually be provided."
-
-#: ../app/views/file/new_edit_folder_form.php:3
-msgid "Ordnereigenschaften"
-msgstr "Folder properties"
-
-#: ../app/views/file/new_edit_folder_form.php:18
-msgid "Ordnertyp auswählen"
-msgstr "Select folder type"
-
-#: ../app/views/file/folder_details.php:8
-msgid "Ordnertyp"
-msgstr "Folder type"
-
-#: ../app/views/file/unzipquestion.php:9
-msgid "Soll diese ZIP-Datei entpackt werden?"
-msgstr "Do you want to extract this ZIP file?"
-
-#: ../app/views/file/unzipquestion.php:12
-msgid "Entpacken"
-msgstr "Extract"
-
-#: ../app/views/file/unzipquestion.php:13
-msgid "Nicht Entpacken"
-msgstr "Don't extract"
-
-#: ../app/views/file/_file_aside.php:45
-msgid "Hinweis zur Nutzung und Weitergabe:"
-msgstr "Hint concerning usage and distribution:"
-
-#: ../app/views/file/add_files_window.php:18
-msgid "Quelle auswählen"
-msgstr "Select source"
-
-#: ../app/views/file/add_files_window.php:26
-msgid "Bibliothek"
-msgstr "Library"
-
-#: ../app/views/file/add_files_window.php:29
-msgid "Originaldokument aus Bibliotheksverzeichnissen einbinden"
-msgstr "Insert original document from library catalogue"
-
-#: ../app/views/file/add_files_window.php:38
-msgid "Mein Computer"
-msgstr "My computer"
-
-#: ../app/views/file/add_files_window.php:42 ../app/views/file/add_url.php:6
-msgid "Webadresse"
-msgstr "Web address"
-
-#: ../app/views/file/add_files_window.php:80
-#, php-format
-msgid ""
-"Sie dürfen Dateien bis zu einer Größe von %s in diesem Bereich einstellen."
-msgstr "You are allowed to upload files of a size up to %s in this area."
-
-#: ../app/views/file/add_files_window.php:84
-#, php-format
-msgid "Sie dürfen die Dateitypen %s nicht hochladen!"
-msgstr "You are not allowed to upload the file type %s!"
-
-#: ../app/views/file/add_files_window.php:99
-msgid "Soll die hochgeladene ZIP-Datei entpackt werden?"
-msgstr "Do you want to unzip the uploaded ZIP file?"
-
-#: ../app/views/file/update.php:6
-msgid "Neue Dateiversion"
-msgstr "New file version"
-
-#: ../app/views/file/update.php:9
-#, php-format
-msgid "Bitte die neue Version der Datei %s auswählen."
-msgstr "Please select the new version of the file %s."
-
-#: ../app/views/file/update.php:16
-msgid "Dateinamen aus neuer Dateiversion übernehmen."
-msgstr "Update file name from new file version."
-
-#: ../app/views/file/update.php:23
-#, php-format
-msgid "Alle weiteren %u Vorkommen aktualisieren."
-msgstr "Update all %u further occurrences."
-
-#: ../app/views/file/file_details.php:34
-msgid "<< Vorherige Datei"
-msgstr "<< Last file"
-
-#: ../app/views/file/file_details.php:44
-msgid "Nächste Datei >>"
-msgstr "Next file >>"
-
-#: ../app/views/file/choose_destination.php:20
-msgid "Ziel zum Verschieben auswählen"
-msgstr "Select target for moving"
-
-#: ../app/views/file/choose_destination.php:22
-msgid "Ziel zum Kopieren auswählen"
-msgstr "Select target for copying"
-
-#: ../app/views/file/choose_destination.php:24
-msgid "Wohin soll hochgeladen werden?"
-msgstr "Where shall the upload be placed?"
-
-#: ../app/views/file/choose_destination.php:33
-msgid "Aktueller Ordner"
-msgstr "Current folder"
-
-#: ../app/views/file/choose_file_from_course.php:30
-msgid "Zum Dateibereich"
-msgstr "To file area"
-
-#: ../app/views/file/edit_license.php:22
-msgid "Lizenzauswahl abbrechen"
-msgstr "Cancel license selection"
-
-#: ../app/views/file/_folder_aside.php:28
-msgid "Anz. Dateien"
-msgstr "Amount of files"
-
-#: ../app/views/file/add_url.php:4
-msgid "Datei aus dem Internet verlinken"
-msgstr "Link file from internet"
-
-#: ../app/views/file/add_url.php:11
-msgid "Gewünschter Dateiname"
-msgstr "Desired file name"
-
-#: ../app/views/file/add_url.php:12
-msgid "Beispielname.pdf"
-msgstr "Examplename.pdf"
-
-#: ../app/views/file/add_url.php:17 ../app/views/file/edit_urlfile.php:25
-msgid "Zugriffsart"
-msgstr "Access type"
-
-#: ../app/views/file/add_url.php:22 ../app/views/file/edit_urlfile.php:30
-msgid "Direktlink"
-msgstr "Direct link"
-
-#: ../app/views/file/add_url.php:27 ../app/views/file/edit_urlfile.php:35
-msgid "Link über Proxy"
-msgstr "Link via proxy"
-
-#: ../app/views/file/add_from_library.php:3
-msgid ""
-"Zu Ihrer Suche wurden keine Ergebnisse gefunden! Sie können ihre letzte "
-"Suchanfrage mit einer Mitteilung an die Bibliothek zur Klärung und Anfrage "
-"von Unterstützung senden."
-msgstr ""
-"No results have been found for your search! You can send your last search "
-"with a message to the library for clarification and support."
-
-#: ../app/views/file/add_from_library.php:5
-msgid "Zu Ihrer Suche wurden keine Ergebnisse gefunden!"
-msgstr "No results have been found for your search!"
-
-#: ../app/views/file/add_from_library.php:8
-msgid ""
-"Sie können ihre letzte Suchanfrage mit einer Mitteilung an die Bibliothek "
-"zur Klärung und Anfrage von Unterstützung senden."
-msgstr ""
-"You can send your last search with a message to the library for "
-"clarification and support."
-
-#: ../app/views/file/add_from_library.php:15
-msgid "Dokument in Bibliothek suchen"
-msgstr "Search document in library"
-
-#: ../app/views/file/add_from_library.php:33
-msgid "Nummer (ISBN/ISSN/...)"
-msgstr "Number (ISBN/ISSN/...)"
-
-#: ../app/views/file/add_from_library.php:37
-msgid "Zeitschrift"
-msgstr "Journal"
-
-#: ../app/views/file/add_from_library.php:50
-msgid "Sortierung nach Relevanz"
-msgstr "Sorting by relevance"
-
-#: ../app/views/file/add_from_library.php:56
-msgid "Sortierung nach Jahr"
-msgstr "Sorting by year"
-
-#: ../app/views/file/add_from_library.php:71
-#, php-format
-msgid "Ihre Suchergebnisse (%1$d - %2$d von %3$d)"
-msgstr "Your search results (%1$d - %2$d of %3$d)"
-
-#: ../app/views/file/add_from_library.php:142
-msgid "Zum Dateibereich hinzufügen"
-msgstr "Add to file area"
-
-#: ../app/views/file/add_from_library.php:150
-#: ../app/views/file/add_from_library.php:171
-msgid "Bibliotheksanfrage erstellen"
-msgstr "Create library request"
-
-#: ../app/views/file/add_from_library.php:161
-msgid "Passendes Dokument nicht gefunden?"
-msgstr "Haven't found the right document?"
-
-#: ../app/views/file/add_from_library.php:162
-msgid "Gerne unterstützen wir Sie bei der Suche nach Dokumenten."
-msgstr "We will be happy to support you with the document search."
-
-#: ../app/views/file/choose_folder.php:13 ../app/views/file/choose_file.php:15
-msgid "Kopieren nach"
-msgstr "Copy to"
-
-#: ../app/views/file/choose_folder.php:14
-msgid "Verschieben nach"
-msgstr "Move to"
-
-#: ../app/views/file/choose_folder.php:15
-msgid "Hochladen nach"
-msgstr "Upload to"
-
-#: ../app/views/file/choose_folder.php:18
-msgid "Hierher kopieren"
-msgstr "Copy here"
-
-#: ../app/views/file/choose_folder.php:19
-msgid "Hierher verschieben"
-msgstr "Move here"
-
-#: ../app/views/file/choose_folder.php:20
-msgid "Hierher hochladen"
-msgstr "Upload here"
-
-#: ../app/views/file/choose_folder.php:83 ../app/views/file/choose_file.php:68
-#: ../app/views/file/choose_file.php:69
-msgid "Ein Verzeichnis nach oben wechseln"
-msgstr "Change to parent directory"
-
-#: ../app/views/file/choose_folder.php:164
-msgid "Der Dateibereich ist für diese Veranstaltung nicht aktiviert."
-msgstr "The file area is not activated for this course."
-
-#: ../app/views/file/choose_folder.php:166
-msgid "Der Dateibereich ist für diese Einrichtung nicht aktiviert."
-msgstr "The file area is not activated for this institute."
-
-#: ../app/views/file/edit.php:30
-msgid "Trotzdem speichern"
-msgstr "Save anyway"
-
-#: ../app/views/avatar/update.php:5
-msgid "Profilbild bearbeiten und zuschneiden"
-msgstr "Edit and cut profile picture"
-
-#: ../app/views/avatar/update.php:6
-msgid "Veranstaltungsbild bearbeiten und zuschneiden"
-msgstr "Edit and cut course picture"
-
-#: ../app/views/avatar/update.php:7
-msgid "Einrichtungsbild bearbeiten und zuschneiden"
-msgstr "Edit and cut institute picture"
-
-#: ../app/views/avatar/update.php:12
-msgid ""
-"Das Bild ist kleiner als 250 x 250 Pixel. Wollen Sie wirklich fortfahren?"
-msgstr ""
-"The picture is smaller than 250 x 250 pixel. Do you really want to continue?"
-
-#: ../app/views/avatar/update.php:16
-msgid "Wählen Sie ein Bild von Ihrer Festplatte aus."
-msgstr "Select an image from your hard drive."
-
-#: ../app/views/avatar/update.php:24
-#, php-format
-msgid ""
-"Die Bilddatei darf max. %s groß sein, es sind nur Dateien mit den Endungen ."
-"jpg, .png oder .gif erlaubt!"
-msgstr ""
-"The image file's maximum allowed size is %s, only files with the extensions ."
-"jpg, .png or .gif are allowed!"
-
-#: ../app/views/avatar/update.php:35 ../app/views/avatar/update.php:37
-msgid "Vergrößern"
-msgstr "Enlarge"
-
-#: ../app/views/avatar/update.php:39 ../app/views/avatar/update.php:41
-msgid "Verkleinern"
-msgstr "Reduce"
-
-#: ../app/views/avatar/update.php:43 ../app/views/avatar/update.php:45
-msgid "Nach rechts drehen"
-msgstr "Turn right"
-
-#: ../app/views/avatar/update.php:47 ../app/views/avatar/update.php:49
-msgid "Nach links drehen"
-msgstr "Turn left"
-
-#: ../app/views/avatar/update.php:59
-msgid "Aktuelles Bild löschen"
-msgstr "Delete current picture"
-
-#: ../app/views/start/edit_defaults.php:34
-msgid "Nicht standardmäßig aktivierte Widgets"
-msgstr "Widgets not activated by default"
-
-#: ../app/views/start/add.php:7
-msgid "Neues Widget zur Startseite hinzufügen"
-msgstr "Add widget"
-
-#: ../app/views/start/index.php:3
-msgid "Startseite für Root bei Stud.IP"
-msgstr "Stud.IP start page for root"
-
-#: ../app/views/start/index.php:5
-msgid "Startseite für Admins"
-msgstr "Start page for admins"
-
-#: ../app/views/start/index.php:7
-msgid "Startseite für Lehrende"
-msgstr "Start page for lecturers"
-
-#: ../app/views/start/index.php:9
-msgid "Ihre persönliche Startseite"
-msgstr "Personal start page"
-
-#: ../app/views/questionnaire/widget.php:10
-msgid "Fragebogen hinzufügen"
-msgstr "Add questionnaire"
-
-#: ../app/views/questionnaire/widget.php:13
-msgid "Fragebögen verwalten"
-msgstr "Manage questionnaires"
-
-#: ../app/views/questionnaire/widget.php:26
-msgid "Es sind keine Fragebögen vorhanden."
-msgstr "No questionnaires available."
-
-#: ../app/views/questionnaire/widget.php:28
-msgid "Um neue Fragebögen zu erstellen, klicken Sie rechts auf das Plus."
-msgstr "Click the \"+\" to create a new questionnaire."
-
-#: ../app/views/questionnaire/widget.php:34
-msgid "Abgelaufene Fragebögen ausblenden"
-msgstr "Don't show expired questionnaires"
-
-#: ../app/views/questionnaire/widget.php:36
-msgid "Abgelaufene Fragebögen einblenden"
-msgstr "Show expired questionnaires"
-
-#: ../app/views/questionnaire/overview.php:7
-#: ../app/views/questionnaire/edit.php:11
-msgid "Fragebogen"
-msgstr "Questionnaire"
-
-#: ../app/views/questionnaire/overview.php:8
-msgid "Startet"
-msgstr "Starting"
-
-#: ../app/views/questionnaire/overview.php:9
-msgid "Endet"
-msgstr "Ending"
-
-#: ../app/views/questionnaire/overview.php:10
-msgid "Eingebunden"
-msgstr "Embedded"
-
-#: ../app/views/questionnaire/overview.php:23
-msgid "Sie haben noch keine Fragebögen erstellt."
-msgstr "You have not yet created any questionnaires."
-
-#: ../app/views/questionnaire/overview.php:40
-msgid "Fragebogen erstellen"
-msgstr "Create questionnaire"
-
-#: ../app/views/questionnaire/assign.php:28
-#: ../app/views/questionnaire/assign.php:47
-msgid "(bitte wählen)"
-msgstr "(please select)"
-
-#: ../app/views/questionnaire/assign_step2.php:25
-msgid "Auswählbare Fragebögen"
-msgstr "Selectable questionnaires"
-
-#: ../app/views/questionnaire/assign_step2.php:41
-msgid "Erstellungsdatum"
-msgstr "Creation date"
-
-#: ../app/views/questionnaire/assign_step2.php:65
-msgid "Kopierte Fragebögen händisch starten und enden lassen"
-msgstr "Let copied questionnaires start and end manually"
-
-#: ../app/views/questionnaire/assign_step2.php:76
-msgid "In Veranstaltungen kopieren"
-msgstr "Copy into courses"
-
-#: ../app/views/questionnaire/assign_step1.php:2
-msgid "Gefundene Veranstaltungen"
-msgstr "Courses found"
-
-#: ../app/views/questionnaire/assign_step1.php:62
-msgid "Es wurden keine zur Suche passenden Veranstaltungen gefunden!"
-msgstr "No courses matching the search found!"
-
-#: ../app/views/questionnaire/_question.php:6
-msgid "Frage nach oben verschieben"
-msgstr "Move question up"
-
-#: ../app/views/questionnaire/_question.php:10
-msgid "Frage nach unten verschieben"
-msgstr "Move question down"
-
-#: ../app/views/questionnaire/_question.php:15
-#, php-format
-msgid "%s löschen"
-msgstr "Delete %s"
-
-#: ../app/views/questionnaire/question_types/test/test_edit.php:29
-msgid ""
-"Wählen Sie über die Auswahlboxen aus, welche Antwortmöglichkeit korrekt ist."
-msgstr "Check the box of the correct answer."
-
-#: ../app/views/questionnaire/question_types/test/test_edit.php:37
-#: ../app/views/questionnaire/question_types/vote/vote_edit.php:26
-msgid "Mehrere Antworten sind erlaubt."
-msgstr "Multiple answers are allowed."
-
-#: ../app/views/questionnaire/question_types/test/test_edit.php:46
-#: ../app/views/questionnaire/question_types/vote/vote_edit.php:43
-msgid "Antworten den Teilnehmenden zufällig präsentieren."
-msgstr "Display answers to participants in random order."
-
-#: ../app/views/questionnaire/question_types/test/test_edit.php:49
-#: ../app/views/questionnaire/question_types/vote/vote_edit.php:49
-msgid "Diese Antwortmöglichkeit wirklich löschen?"
-msgstr "Delete this answer?"
-
-#: ../app/views/questionnaire/question_types/test/_answer.php:2
-#: ../app/views/questionnaire/question_types/vote/_answer.php:2
-msgid "Antwort verschieben"
-msgstr "Move answer"
-
-#: ../app/views/questionnaire/question_types/test/_answer.php:7
-msgid "Ist diese Antwort korrekt?"
-msgstr "Is this answer correct?"
-
-#: ../app/views/questionnaire/question_types/test/_answer.php:13
-#: ../app/views/questionnaire/question_types/vote/_answer.php:6
-msgid "Antwort ..."
-msgstr "Answer ..."
-
-#: ../app/views/questionnaire/question_types/test/_answer.php:14
-#: ../app/views/questionnaire/question_types/vote/_answer.php:7
-msgid ""
-"Geben Sie eine Antwortmöglichkeit zu der von Ihnen gestellten Frage ein."
-msgstr "Please enter an answer to the question."
-
-#: ../app/views/questionnaire/question_types/test/_answer.php:16
-#: ../app/views/questionnaire/question_types/vote/_answer.php:8
-msgid "Antwort löschen"
-msgstr "Delete answer"
-
-#: ../app/views/questionnaire/question_types/test/_answer.php:17
-#: ../app/views/questionnaire/question_types/vote/_answer.php:9
-msgid "Antwort hinzufügen"
-msgstr "Add answer"
-
-#: ../app/views/questionnaire/question_types/test/test_evaluation.php:60
-msgid "Richtig beantwortet!"
-msgstr "Right answer!"
-
-#: ../app/views/questionnaire/question_types/test/test_evaluation.php:62
-msgid "Falsch beantwortet!"
-msgstr "Wrong answer!"
-
-#: ../app/views/questionnaire/question_types/test/test_evaluation.php:82
-msgid "Diese Antwort ist richtig"
-msgstr "This answer is correct"
-
-#: ../app/views/questionnaire/question_types/test/test_evaluation.php:84
-msgid "Eine falsche Antwort"
-msgstr "A wrong answer"
-
-#: ../app/views/questionnaire/question_types/vote/vote_edit.php:34
-#: ../app/views/questionnaire/question_types/freetext/freetext_edit.php:17
-msgid "Pflichtfrage"
-msgstr "Mandatory question"
-
-#: ../app/views/questionnaire/question_types/vote/vote_answer.php:17
-#: ../app/views/questionnaire/question_types/freetext/freetext_answer.php:12
-msgid "Pflichtantwort"
-msgstr "Mandatory answer"
-
-#: ../app/views/questionnaire/question_types/vote/vote_answer.php:23
-msgid "Diese Frage muss beantwortet werden."
-msgstr "This question must be answered."
-
-#: ../app/views/questionnaire/question_types/freetext/freetext_edit.php:8
-msgid "Erzählen Sie uns ..."
-msgstr "Tell us ..."
-
-#: ../app/views/questionnaire/evaluate.php:7
-msgid "Ergebnisse konnten nicht ausgewertet werden."
-msgstr "Unable to process results."
-
-#: ../app/views/questionnaire/evaluate.php:13
-msgid ""
-"Die Ergebnisse des Fragebogens werden veröffentlich, wenn die Befragung "
-"abgeschlossen ist."
-msgstr "Results will be published after the survey has ended."
-
-#: ../app/views/questionnaire/evaluate.php:15
-msgid "Die Ergebnisse der Befragung werden nicht über Stud.IP ausgewertet."
-msgstr "Results will not be processed in Stud.IP."
-
-#: ../app/views/questionnaire/evaluate.php:24
-#: ../app/views/questionnaire/answer.php:29
-msgid "Die Teilnahme ist nicht anonym."
-msgstr "Participation is not anonymous."
-
-#: ../app/views/questionnaire/evaluate.php:27
-#: ../app/views/questionnaire/answer.php:35
-#, php-format
-msgid "Sie können den Fragebogen beantworten bis zum %s um %s Uhr."
-msgstr "You can fill in the questionnaire until %s at %s."
-
-#: ../app/views/questionnaire/evaluate.php:37
-msgid "Beantworten"
-msgstr "Answer"
-
-#: ../app/views/questionnaire/evaluate.php:40
-msgid "Ergebnisse herunterladen"
-msgstr "Download results"
-
-#: ../app/views/questionnaire/_widget_questionnaire.php:30
-msgid "Anzahl der Antworten"
-msgstr "Amount of answers"
-
-#: ../app/views/questionnaire/_widget_questionnaire.php:33
-msgid "QR-Code zu diesem Fragebogen anzeigen"
-msgstr "Show QR code for this questionnaire"
-
-#: ../app/views/questionnaire/answer.php:32
-msgid "Sie können Ihre Antworten nachträglich ändern."
-msgstr "You can subsequently edit the answers."
-
-#: ../app/views/questionnaire/answer.php:44
-msgid "Ergebnisse anzeigen"
-msgstr "Show results"
-
-#: ../app/views/questionnaire/context.php:7
-msgid "URL zum Fragebogen"
-msgstr "URL of questionnaire"
-
-#: ../app/views/questionnaire/context.php:8
-msgid "URL zum Fragebogen (nur lesbar)"
-msgstr "URL of questionnaire (read only)"
-
-#: ../app/views/questionnaire/context.php:11
-msgid "Freigaben bearbeiten"
-msgstr "Edit questionnaire"
-
-#: ../app/views/questionnaire/context.php:14
-msgid "Auf der persönlichen Profilseite"
-msgstr "On my profile page"
-
-#: ../app/views/questionnaire/context.php:18
-msgid "Als öffentlicher Link für unangemeldete Nutzer"
-msgstr "As public link for unregistered users"
-
-#: ../app/views/questionnaire/context.php:23
-msgid "Auf der Systemstartseite"
-msgstr "On the start page"
-
-#: ../app/views/questionnaire/context.php:39
-#: ../app/views/questionnaire/context.php:60
-msgid "Zuweisung zur Veranstaltung aufheben."
-msgstr "Cancel assignment to course."
-
-#: ../app/views/questionnaire/context.php:48
-msgid "Teilnehmergruppen in Veranstaltungen"
-msgstr ""
-
-#: ../app/views/questionnaire/context.php:78
-msgid "Zuweisung zur Einrichtung aufheben."
-msgstr "Cancel assignment to institution."
-
-#: ../app/views/questionnaire/edit.php:13
-msgid "Titel des Fragebogens"
-msgstr "Title of questionnaire"
-
-#: ../app/views/questionnaire/edit.php:38
-msgid "Startzeitpunkt (leer lassen für manuellen Start)"
-msgstr "Start time (leave empty for manual start)"
-
-#: ../app/views/questionnaire/edit.php:43
-msgid "Endzeitpunkt (leer lassen für manuelles Ende)"
-msgstr "End time (leave empty to end manually)"
-
-#: ../app/views/questionnaire/edit.php:49
-msgid "Fragebogen zum Kopieren freigeben"
-msgstr ""
-
-#: ../app/views/questionnaire/edit.php:54
-msgid "Anonym teilnehmen"
-msgstr "Anonymous participation"
-
-#: ../app/views/questionnaire/edit.php:59
-msgid "Teilnehmende dürfen ihre Antworten revidieren"
-msgstr "Participants may revise their answers"
-
-#: ../app/views/questionnaire/edit.php:63
-msgid "Ergebnisse an Teilnehmende"
-msgstr "Show results to participants"
-
-#: ../app/views/questionnaire/edit.php:65
-msgid "Immer."
-msgstr "Always."
-
-#: ../app/views/questionnaire/edit.php:66
-msgid "Nach Ende der Befragung."
-msgstr "After the survey has ended."
-
-#: ../app/views/questionnaire/edit.php:67
-msgid "Niemals."
-msgstr "Never."
-
-#: ../app/views/questionnaire/_overview_questionnaire.php:26
-#: ../app/views/questionnaire/_overview_questionnaire.php:33
-msgid "händisch"
-msgstr "manually"
-
-#: ../app/views/questionnaire/_overview_questionnaire.php:42
-msgid "Stud.IP Startseite"
-msgstr "Stud.IP start page"
-
-#: ../app/views/questionnaire/_overview_questionnaire.php:44
-msgid "Öffentlich per Link"
-msgstr "Public via link"
-
-#: ../app/views/questionnaire/_overview_questionnaire.php:48
-msgid "Profilseite"
-msgstr "Profile"
-
-#: ../app/views/questionnaire/_overview_questionnaire.php:76
-msgid "Nirgendwo"
-msgstr "Nowhere"
-
-#: ../app/views/questionnaire/_overview_questionnaire.php:85
-msgid "Der Fragebogen wurde gestartet und kann nicht mehr bearbeitet werden."
-msgstr "Survey has already been started and cannot be edited."
-
-#: ../app/views/questionnaire/_overview_questionnaire.php:87
-msgid "Fragebogen bearbeiten"
-msgstr "Edit questionnaire"
-
-#: ../app/views/questionnaire/_overview_questionnaire.php:91
-msgid "Zuweisungen bearbeiten"
-msgstr "Edit assignment"
-
-#: ../app/views/questionnaire/_overview_questionnaire.php:100
-msgid "Fragebogen beenden"
-msgstr "Close questionnaire"
-
-#: ../app/views/questionnaire/_overview_questionnaire.php:106
-msgid "Fragebogen starten"
-msgstr "Start questionnaire"
-
-#: ../app/views/questionnaire/_overview_questionnaire.php:123
-msgid "Fragebogen löschen"
-msgstr "Delete questionnaire"
-
-#: ../app/views/blubber/compose.php:88
-msgid "Weitere Personen"
-msgstr "Additional persons"
-
-#: ../app/views/blubber/leave_private.php:8
-msgid "Und auch alle meine Beiträge der Konversation löschen"
-msgstr "Delete all my posts from the conversation, too"
-
-#: ../app/views/blubber/leave_private.php:12
-msgid "Verlassen"
-msgstr "Leave"
-
-#: ../app/views/blubber/private_to_studygroup.php:13
-msgid "Name der Studiengruppe"
-msgstr "Study group name"
-
-#: ../app/views/blubber/private_to_studygroup.php:18
-msgid "Avatar für die Studiengruppe auswählen"
-msgstr "Select avatar for the study group"
-
-#: ../app/views/blubber/dialog.php:11
-msgid "Zum Kontext springen"
-msgstr "Go to context"
-
-#: ../app/views/help_content/admin_overview.php:8
-#, php-format
-msgid "%u Hilfe-Text"
-msgid_plural "%u Hilfe-Texte"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/help_content/admin_overview.php:32
-#: ../app/views/help_content/admin_overview.php:34
-msgid "Status der Hilfe (aktiv oder inaktiv)"
-msgstr "Status of help system (active or inactive)"
-
-#: ../app/views/help_content/admin_overview.php:61
-msgid "Keine Hilfe-Texte vorhanden."
-msgstr "No help text found."
-
-#: ../app/views/help_content/admin_conflicts.php:14
-#: ../app/views/help_content/edit.php:14
-msgid "Seite:"
-msgstr "Page:"
-
-#: ../app/views/help_content/delete.php:8 ../app/views/help_content/edit.php:9
-#, php-format
-msgid "Seite %s"
-msgstr "Page %s"
-
-#: ../app/views/help_content/delete.php:9 ../app/views/help_content/edit.php:33
-msgid "Hilfe-Text:"
-msgstr "Help text:"
-
-#: ../app/views/help_content/edit.php:12
-msgid "Neuer Hilfe-Text"
-msgstr "New help text"
-
-#: ../app/views/help_content/edit.php:17
-msgid "Bitte geben Sie eine Route für den Hilfe-Text an"
-msgstr "Please add a route for the help text"
-
-#: ../app/views/help_content/edit.php:22
-msgid "Sprache des Textes:"
-msgstr "Text language:"
-
-#: ../app/views/help_content/edit.php:35
-msgid "Bitte geben Sie den Text ein"
-msgstr "Please enter the text here"
-
-#: ../app/views/lvgruppen/lvgruppen/trails_table_lvgruppe.php:24
-msgid ""
-"Diese Lehrveranstaltungsgruppe wurde für das ausgewählte Semester keinen "
-"Modulteilen zugeordnet."
-msgstr ""
-"This course group was not assigned to module components in the selected "
-"semester."
-
-#: ../app/views/lvgruppen/lvgruppen/export_xls.php:3
-msgid "LV-Gruppe"
-msgstr "Course group"
-
-#: ../app/views/lvgruppen/lvgruppen/export_xls.php:4
-msgid "Verantw. Einrichtung Modul"
-msgstr "Module responsible institute"
-
-#: ../app/views/lvgruppen/lvgruppen/export_xls.php:7
-msgid "Version des Studiengangteils"
-msgstr "Version of the component"
-
-#: ../app/views/lvgruppen/lvgruppen/index.php:6
-#, php-format
-msgid "%s LV-Gruppe"
-msgid_plural "%s LV-Gruppen"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/lvgruppen/lvgruppen/index.php:41
-#: ../app/views/lvgruppen/lvgruppen/index.php:42
-msgid "Log-Einträge dieser Lehrveranstaltungsgruppe"
-msgstr "Log entries of this course group"
-
-#: ../app/views/lvgruppen/lvgruppen/index.php:50
-msgid "Lehrveranstaltungsgruppe löschen"
-msgstr "Delete course group"
-
-#: ../app/views/lvgruppen/lvgruppen/index.php:55
-#, php-format
-msgid "Wollen Sie wirklich die Lehrveranstaltungsgruppe \"%s\" löschen?"
-msgstr "Really delete course group \"%s\"?"
-
-#: ../app/views/lvgruppen/lvgruppen/index.php:76
-msgid "Es wurden keine Lehrveranstaltungsgruppen gefunden."
-msgstr "No course groups found."
-
-#: ../app/views/lvgruppen/lvgruppen/details.php:15
-#: ../app/views/lvgruppen/lvgruppen/details.php:38
-msgid "Kein Alternativtext vorhanden."
-msgstr "No alternative text available."
-
-#: ../app/views/lvgruppen/lvgruppen/details.php:49
-msgid "Verwendet in Modulteilen:"
-msgstr "Used in module components:"
-
-#: ../app/views/lvgruppen/lvgruppen/details.php:55
-msgid "Zugeordnete Lehrveranstaltungen:"
-msgstr "Assigned courses:"
-
-#: ../app/views/lvgruppen/lvgruppen/details.php:58
-msgid ""
-"Dieser Lehrveranstaltungsgruppe wurde für das ausgewählte Semester keine "
-"Lehrveranstaltung zugeordnet."
-msgstr "No course was assigned to this course group in the selected semester."
-
-#: ../app/views/lvgruppen/lvgruppen/details.php:65
-msgid "Alle Semester anzeigen"
-msgstr "Show all semesters"
-
-#: ../app/views/lvgruppen/lvgruppen/details.php:69
-msgid "Nur aktuelle Semester anzeigen"
-msgstr "Show only current semester"
-
-#: ../app/views/lvgruppen/lvgruppen/details.php:117
-msgid "Zugeordnete archivierte Veranstaltungen:"
-msgstr "Assigned archived courses:"
-
-#: ../app/views/lvgruppen/lvgruppen/details.php:132
-msgid "Erstellt am:"
-msgstr "Created at:"
-
-#: ../app/views/lvgruppen/lvgruppen/details.php:141
-msgid "Letzte Änderung am:"
-msgstr "Last changes on:"
-
-#: ../app/views/userfilter/filter/configure.php:9
-#: ../app/views/userfilter/filter/configure.php:11
-msgid "Auswahlfeld hinzufügen"
-msgstr "Add select box"
-
-#: ../app/views/new_password/set.php:5
-msgid "Neues Passwort setzen"
-msgstr "Set a new password"
-
-#: ../app/views/new_password/set.php:14 ../app/views/new_password/set.php:15
-msgid "Neues Passwort wiederholen"
-msgstr ""
-
-#: ../app/views/new_password/set.php:20
-msgid "Passwort setzen"
-msgstr ""
-
-#: ../app/views/new_password/send_mail.php:3
-msgid "Zurück zum Login"
-msgstr ""
-
-#: ../app/views/new_password/index.php:5
-msgid "Mail zum Zurücksetzen des Passworts anfordern"
-msgstr ""
-
-#: ../app/views/new_password/index.php:9
-msgid ""
-"Geben sie die Mail-Adresse des Zugangs an, für den sie das Passwort "
-"zurücksetzen möchten"
-msgstr ""
-
-#: ../app/views/new_password/index.php:10
-msgid "Ihre Mail-Adresse"
-msgstr ""
-
-#: ../app/views/new_password/index.php:15
-msgid "Mail zuschicken"
-msgstr ""
-
-#: ../app/views/studiengaenge/versionen/versionen.php:21
-#: ../app/views/studiengaenge/studiengaenge/studiengaenge.php:20
-#, php-format
-msgid "%s Dokument zugeordnet"
-msgid_plural "%s Dokumente zugeordnet"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/studiengaenge/versionen/versionen.php:39
-#: ../app/views/studiengaenge/versionen/versionen.php:40
-msgid "Studiengangteil-Abschnitt anlegen"
-msgstr "Create component section"
-
-#: ../app/views/studiengaenge/versionen/versionen.php:47
-#: ../app/views/studiengaenge/versionen/versionen.php:48
-msgid "Version bearbeiten"
-msgstr "Edit version"
-
-#: ../app/views/studiengaenge/versionen/versionen.php:54
-#: ../app/views/studiengaenge/versionen/versionen.php:58
-msgid "Version kopieren"
-msgstr "Copy version"
-
-#: ../app/views/studiengaenge/versionen/versionen.php:61
-#, php-format
-msgid "Wollen Sie wirklich die Version \"%s\" des Studiengangteils kopieren?"
-msgstr "Do you really want to copy version \"%s\" of the component?"
-
-#: ../app/views/studiengaenge/versionen/versionen.php:70
-#: ../app/views/studiengaenge/versionen/versionen.php:72
-msgid "Version löschen"
-msgstr "Delete version"
-
-#: ../app/views/studiengaenge/versionen/versionen.php:75
-#, php-format
-msgid "Wollen Sie wirklich die Version \"%s\" des Studiengangteils löschen?"
-msgstr "Do you really want to delete version \"%s\" of the component?"
-
-#: ../app/views/studiengaenge/versionen/abschnitte.php:24
-#: ../app/views/studiengaenge/versionen/abschnitte.php:25
-msgid "Studiengangteil-Abschnitt bearbeiten"
-msgstr "Edit"
-
-#: ../app/views/studiengaenge/versionen/abschnitte.php:33
-#: ../app/views/studiengaenge/versionen/abschnitte.php:34
-msgid "Studiengangteil-Abschnitt löschen"
-msgstr "Delete component section"
-
-#: ../app/views/studiengaenge/versionen/abschnitte.php:37
-#, php-format
-msgid "Wollen Sie den Studiengangteil-Abschnitt \"%s\" wirklich löschen?"
-msgstr "Really delete component \"%s\"?"
-
-#: ../app/views/studiengaenge/versionen/abschnitte.php:61
-#: ../app/views/studiengaenge/versionen/details_abschnitt.php:56
-#: ../app/views/studiengaenge/versionen/details_abschnitt.php:61
-msgid "Modul hinzufügen"
-msgstr "Add module"
-
-#: ../app/views/studiengaenge/versionen/abschnitte.php:73
-msgid "zu Abschnitt"
-msgstr "to section"
-
-#: ../app/views/studiengaenge/versionen/abschnitte.php:81
-msgid "Studiengangteil-Abschnitt hinzufügen"
-msgstr "Add component section"
-
-#: ../app/views/studiengaenge/versionen/modulteile.php:15
-msgid "Semesterzuordnung bearbeiten"
-msgstr "Edit semester assignment"
-
-#: ../app/views/studiengaenge/versionen/details_abschnitt.php:20
-#, php-format
-msgid "Orig.: %s - %s"
-msgstr "Orig.: %s - %s"
-
-#: ../app/views/studiengaenge/versionen/details_abschnitt.php:32
-msgid "Modulzuordnung löschen"
-msgstr "Delete module assignment"
-
-#: ../app/views/studiengaenge/versionen/details_abschnitt.php:37
-#, php-format
-msgid ""
-"Wollen Sie die Zuordnung des Moduls \"%s\" zum Studiengangteil-Abschnitt \"%s"
-"\" wirklich löschen?"
-msgstr ""
-"Really delete allocation of module \"%s\" to partial course of study \"%s\"?"
-
-#: ../app/views/studiengaenge/versionen/abschnitt.php:19
-msgid "Zwischenüberschrift"
-msgstr "Subheading"
-
-#: ../app/views/studiengaenge/versionen/abschnitt.php:26
-msgid "Abschnitt anlegen"
-msgstr "Add section"
-
-#: ../app/views/studiengaenge/versionen/modul_zuordnung.php:7
-msgid "Bezeichnung der Modulzuordnung"
-msgstr "Module assignment description"
-
-#: ../app/views/studiengaenge/versionen/modul_zuordnung.php:17
-msgid "ID der Zuordnung aus Fremdsystem"
-msgstr "ID of the assignment of the external system"
-
-#: ../app/views/studiengaenge/versionen/modul_zuordnung.php:23
-msgid "Spezifischer Modulcode"
-msgstr "Specific module code"
-
-#: ../app/views/studiengaenge/versionen/diff_select.php:3
-msgid "Vergleich mit folgender Version:"
-msgstr "Compare with the following version:"
-
-#: ../app/views/studiengaenge/versionen/index.php:33
-#, php-format
-msgid ""
-"Für den Studiengangteil <strong>%s</strong> wurden noch keine Versionen "
-"angelegt. "
-msgstr ""
-"No versions have been added for the component <strong>%s</strong> yet. "
-
-#: ../app/views/studiengaenge/versionen/index.php:37
-msgid "Eine neue Version anlegen."
-msgstr "Create a new version."
-
-#: ../app/views/studiengaenge/versionen/index.php:39
-msgid "Eine neue Version anlegen"
-msgstr "Create a new version"
-
-#: ../app/views/studiengaenge/versionen/modulteil_semester.php:4
-msgid "Zuordnung der Modulteile zu Fachsemestern"
-msgstr "Assignment of module components to semesters"
-
-#: ../app/views/studiengaenge/versionen/modulteil_semester.php:9
-msgid "Belegung in folgenden Fachsemestern"
-msgstr "Allocation in the following semesters"
-
-#: ../app/views/studiengaenge/versionen/modulteil_semester.php:21
-#: ../app/views/studiengaenge/versionen/modulteil_semester.php:25
-#, php-format
-msgid "%s. Fachsemester"
-msgstr "%s. semester"
-
-#: ../app/views/studiengaenge/versionen/modulteil_semester.php:30
-msgid "Status:"
-msgstr "Status:"
-
-#: ../app/views/studiengaenge/versionen/version.php:50
-msgid "Das Endsemester wird nur angegeben, wenn die Version abgeschlossen ist."
-msgstr "The end semester is only provided when the version is finished."
-
-#: ../app/views/studiengaenge/versionen/version.php:137
-msgid "Version anlegen"
-msgstr "Create version"
-
-#: ../app/views/studiengaenge/informationen/degree.php:36
-#, php-format
-msgid "Alle Studierenden mit dem Studienabschluss %s benachrichtigen."
-msgstr "Notify all students with the degree %s."
-
-#: ../app/views/studiengaenge/informationen/showstudycourse.php:21
-#: ../app/views/studiengaenge/informationen/showdegree.php:20
-msgid "Nachricht an Studierende schreiben"
-msgstr "Write message to students"
-
-#: ../app/views/studiengaenge/informationen/showstudycourse.php:23
-#: ../app/views/studiengaenge/informationen/showdegree.php:22
-#, php-format
-msgid ""
-"Nachricht an alle Studierende mit dem Studiengang %s mit dem Abschluss %s"
-msgstr ""
-"Message to all students in the course of study %s and the final degree %s"
-
-#: ../app/views/studiengaenge/informationen/index.php:31
-#, php-format
-msgid "Alle Studierenden des Faches %s benachrichtigen."
-msgstr "Notify all students of the field of study %s."
-
-#: ../app/views/studiengaenge/faecher/index.php:5
-msgid "Studiengangteile nach Fächern gruppiert"
-msgstr "Components of course of study, sorted by fields of study"
-
-#: ../app/views/studiengaenge/faecher/index.php:6
-#, php-format
-msgid "%s Fächer"
-msgstr "%s fields of study"
-
-#: ../app/views/studiengaenge/faecher/index.php:32
-msgid "Neuen Studiengangteil für gewähltes Fach anlegen"
-msgstr "Add a new component of course of study for the selected field of study"
-
-#: ../app/views/studiengaenge/kategorien/index.php:22
-msgid "Keiner Abschluss-Kategorie zugeordnet"
-msgstr "Not assigned to a degree category"
-
-#: ../app/views/studiengaenge/fachbereiche/index.php:22
-msgid "Keinem Fachbereich zugeordnet"
-msgstr "Not assigned to a faculty"
-
-#: ../app/views/studiengaenge/stgteilbezeichnungen/index.php:7
-#, php-format
-msgid "%s Bezeichnungen"
-msgstr "%s descriptions"
-
-#: ../app/views/studiengaenge/stgteilbezeichnungen/index.php:39
-msgid "Studiengangteil-Bezeichnung bearbeiten"
-msgstr "Edit description of partial of course of study"
-
-#: ../app/views/studiengaenge/stgteilbezeichnungen/index.php:43
-msgid "Studiengangteil-Bezeichnung löschen"
-msgstr "Delete component description"
-
-#: ../app/views/studiengaenge/stgteilbezeichnungen/index.php:46
-#, php-format
-msgid "Wollen Sie wirklich die Studiengangteil-Bezeichnung \"%s\" löschen?"
-msgstr "Really deleted description of partial of course of study \"%s\"?"
-
-#: ../app/views/studiengaenge/stgteilbezeichnungen/index.php:62
-msgid "Es sind keine Studiengangteil-Bezeichnungen vorhanden"
-msgstr "No description of partial course of study available"
-
-#: ../app/views/studiengaenge/stgteilbezeichnungen/details.php:33
-#: ../app/views/studiengaenge/stgteilbezeichnungen/details.php:57
-msgid "Kurzname:"
-msgstr "Short name:"
-
-#: ../app/views/studiengaenge/stgteilbezeichnungen/stgteilbezeichnung.php:29
-msgid "Studiengangteil-Bezeichnung anlegen"
-msgstr "Create component description"
-
-#: ../app/views/studiengaenge/abschluesse/index.php:21
-msgid "Keinem Abschluss zugeordnet"
-msgstr "Not assigned to a degree"
-
-#: ../app/views/studiengaenge/fachbereichestgteile/index.php:26
-msgid "Neuen Studiengangteil in diesem Fachbereich anlegen"
-msgstr "Add a new component in this faculty"
-
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:14
-#, php-format
-msgid "Mögliche Fächer im gewählten Fachbereich %s:"
-msgstr "Possible fields of study in the selected faculty %s:"
-
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:33
-msgid "Bitte ein Fach suchen und zuordnen."
-msgstr "Please search a field of study and assign it."
-
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:43
-msgid "Fach entfernen"
-msgstr "Remove field of study"
-
-#: ../app/views/studiengaenge/studiengangteile/stgteil.php:56
-msgid "Ausprägung"
-msgstr "Characteristic"
-
-#: ../app/views/studiengaenge/studiengangteile/details_grouped.php:17
-#: ../app/views/studiengaenge/studiengangteile/details_grouped.php:18
-#: ../app/views/studiengaenge/studiengangteile/index.php:53
-#: ../app/views/studiengaenge/studiengangteile/index.php:54
-msgid "Studiengangteil bearbeiten"
-msgstr "Edit part of course of study"
-
-#: ../app/views/studiengaenge/studiengangteile/details_grouped.php:24
-#: ../app/views/studiengaenge/studiengangteile/details_grouped.php:25
-#: ../app/views/studiengaenge/studiengangteile/index.php:60
-#: ../app/views/studiengaenge/studiengangteile/index.php:61
-msgid "Studiengangteil kopieren"
-msgstr "Copy component"
-
-#: ../app/views/studiengaenge/studiengangteile/details_grouped.php:31
-#: ../app/views/studiengaenge/studiengangteile/details_grouped.php:35
-#: ../app/views/studiengaenge/studiengangteile/index.php:67
-#: ../app/views/studiengaenge/studiengangteile/index.php:69
-msgid "Studiengangteil löschen"
-msgstr "Delete component"
-
-#: ../app/views/studiengaenge/studiengangteile/details_grouped.php:37
-#: ../app/views/studiengaenge/studiengangteile/index.php:71
-#, php-format
-msgid "Wollen Sie wirklich den Studiengangteil \"%s\" löschen?"
-msgstr "Really delete partial course of study \"%s\"?"
-
-#: ../app/views/studiengaenge/studiengangteile/index.php:7
-#, php-format
-msgid "%s Studiengangteile"
-msgstr "%s components"
-
-#: ../app/views/studiengaenge/studiengangteile/index.php:12
-msgid "Zweck"
-msgstr "Purpose"
-
-#: ../app/views/studiengaenge/studiengangteile/index.php:28
-#: ../app/views/studiengaenge/studiengangteile/index.php:34
-#, php-format
-msgid "%s Kontakt zugeordnet"
-msgid_plural "%s Kontakte zugeordnet"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../app/views/studiengaenge/abschnitte/index.php:2
-msgid "Studiengänge Studiengangabschnitte"
-msgstr "Courses of study, Sections of course of study"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:9
-msgid "Fach-Abschluss-Bezeichnung"
-msgstr "Field of study - degree - description"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:14
-msgid "Fachsuche:"
-msgstr "Subject search:"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:15
-msgid ""
-"Soll der Name des Studiengangs mit dem eines Fachs übereinstimmen, geben Sie "
-"den Namen des Fachs ein, und wählen Sie das Fach aus der Liste. Es werden "
-"dann automatisch die weiteren Bezeichnungen aus den Daten des Fachs "
-"übernommen."
-msgstr ""
-"If the name of the course of study shall match the name of the field of "
-"study, select the name of the field of study and select the field of study "
-"from the list. Additional descriptions will be automatically set from the "
-"data of the field of study."
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:20
-msgid "Name:"
-msgstr "Name:"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:23
-msgid "Kurzbezeichnung:"
-msgstr "Short description:"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:26
-msgid "Abschlusszuordnung:"
-msgstr "Degree assignment:"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:29
-msgid "-- bitte wählen --"
-msgstr "-- please select --"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:40
-msgid "Angestrebter Abschlussgrad"
-msgstr "Intended final degree"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:95
-msgid ""
-"Das Endsemester wird nur angegeben, wenn der Studiengang abgeschlossen ist."
-msgstr ""
-"The end semester is only entered when the course of study has been finished."
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:150
-msgid "Bitte eine Einrichtung suchen und zuordnen."
-msgstr "Please search an institute and assign it."
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:190
-msgid "Kommentar Bearbeitungsstatus"
-msgstr "Comment on the processing state"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:204
-msgid ""
-"Einfach-Studiengang (Diesem Studiengang wird ein oder mehrere "
-"Studiengangteil(e) direkt zugewiesen)"
-msgstr ""
-"Single course of study (one or more partials of course of study will be "
-"assigned directly to this course of study)"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:208
-msgid ""
-"Mehrfach-Studiengang (Diesem Studiengang können mehrere Studiengangteile in "
-"Abschnitten zugewiesen werden)"
-msgstr ""
-"Multiple course of study (multiple partials of course of study can be "
-"assigned in sections to this course of study)"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:211
-msgid "Regelstudienzeit"
-msgstr ""
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:215
-msgid "Studienplätze"
-msgstr "Seats"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:255
-msgid "Typ des Studiengangs"
-msgstr "Type of course of study"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:272
-msgid "Bewerbung/Einschreibung im Wintersemester möglich"
-msgstr "Application/enrolment possible in the winter semester"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:276
-msgid "Bewerbung/Einschreibung im Sommersemester möglich"
-msgstr "Application/enrolment possible in the summer semester"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:314
-msgid ""
-"Hier können zusätzlich Schlagwörter angegeben werden, die in der Suche "
-"berücksichtigt werden."
-msgstr "Additional keywords which are used in the search can be entered here."
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:337
-msgid "Studiengang anlegen"
-msgstr "Add course of study"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:338
-msgid "Anlegen und abbrechen"
-msgstr "Create and abort"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:338
-msgid "Studiengang anlegen und abbrechen"
-msgstr "Create course of study and abort"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengang.php:357
-msgid "Typ wählen"
-msgstr "Select type"
-
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_edit.php:5
-msgid "Typ des Aufbaustudiengangs"
-msgstr ""
-
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_edit.php:7
-msgid "Typ auswählen"
-msgstr "Select type"
-
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_table.php:11
-msgid "Aufbaustudiengänge im Master"
-msgstr ""
-
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_table.php:51
-msgid "Bemerkung anzeigen"
-msgstr "Show comment"
-
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_table.php:65
-msgid "Zuordnung als Aufbaustudiengang löschen"
-msgstr ""
-
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_table.php:66
-#, php-format
-msgid "Wollen Sie wirklich die Zuordnung von \"%s\" als \"%s\" löschen?"
-msgstr "Do you really want to delete the assignment from \"%s\" as \"%s\"?"
-
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_table.php:77
-msgid ""
-"Der neue Studiengang muss erst gespeichert werden, um Aufbaustudiengänge "
-"zuordnen zu können."
-msgstr ""
-
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_table.php:79
-msgid "Es wurden noch keine Aufbaustudiengänge angelegt."
-msgstr ""
-
-#: ../app/views/studiengaenge/studiengaenge/studiengaenge.php:61
-#: ../app/views/studiengaenge/studiengaenge/studiengaenge.php:62
-msgid "Studiengang löschen"
-msgstr "Delete course of study"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengaenge.php:65
-#, php-format
-msgid "Wollen Sie wirklich den Studiengang \"%s\" löschen?"
-msgstr "Really delete course of study \"%s\"?"
-
-#: ../app/views/studiengaenge/studiengaenge/index.php:5
-#, php-format
-msgid "%s Studiengänge"
-msgstr "%s course of studies"
-
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_info.php:4
-#, php-format
-msgid "Bemerkungen zum Aufbaustudiengang %s (%s)"
-msgstr ""
-
-#: ../app/views/studiengaenge/studiengaenge/stgteil_bezeichnungen.php:37
-#: ../app/views/studiengaenge/studiengaenge/stgteil_bezeichnungen.php:61
-#: ../app/views/studiengaenge/studiengaenge/studiengangteile.php:57
-msgid "Studiengangteil hinzufügen"
-msgstr "Add component"
-
-#: ../app/views/studiengaenge/studiengaenge/stgteil_bezeichnungen.php:44
-#: ../app/views/studiengaenge/studiengaenge/studiengangteile.php:74
-msgid "Studiengangteil zuordnen"
-msgstr "Assign component"
-
-#: ../app/views/studiengaenge/studiengaenge/stgteil_bezeichnungen.php:51
-msgid "als"
-msgstr "as"
-
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_select.php:5
-#: ../app/views/studiengaenge/studiengaenge/aufbaustg_select.php:8
-msgid "Aufbaustudiengang auswählen"
-msgstr ""
-
-#: ../app/views/studiengaenge/studiengaenge/studiengangteile.php:15
-#, php-format
-msgid ""
-"Wollen Sie die Zuordnung des Studiengangteils \"%s\" als \"%s\" zum "
-"Studiengang \"%s\" wirklich löschen?"
-msgstr ""
-"Do you really want to delete the assignment of the partial course of study "
-"\"%s\" as \"%s\" for the course of study \"%s\"?"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengangteile.php:26
-#: ../app/views/studiengaenge/studiengaenge/studiengangteile.php:41
-msgid "Zuordnung des Studiengangteils löschen"
-msgstr "Delete assignment to a partial of course of study"
-
-#: ../app/views/studiengaenge/studiengaenge/studiengangteile.php:31
-#, php-format
-msgid ""
-"Wollen Sie die Zuordnung des Studiengangteils \"%s\" zum Studiengang \"%s\" "
-"wirklich löschen?"
-msgstr ""
-"Do you really want to delete the assignment of the partial of course of "
-"study \"%s\" to the course of study \"%s\"?"
-
-#~ msgid ""
-#~ "%d Änderungen an der Zuweisung des Ansprechpartners wurden gespeichert."
-#~ msgstr "%d changes to the assignment of the contact person have been saved."
-
-#~ msgid "Die Änderung der Zuweisung des Ansprechpartners wurde gespeichert."
-#~ msgstr "The change to the assignment of the contact person has been saved."
diff --git a/locale/extractTranslationStrings b/locale/extractTranslationStrings
deleted file mode 100755
index b77fa2d4f1f..00000000000
--- a/locale/extractTranslationStrings
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-#
-#  STEP 1:
-#  extract all Stud.IP message strings and merge them with the existing translations
-#
-
-LOCALE_RELATIVE_PATH="."
-TRANSLATIONFILES_RELATIVE_PATHS="../public ../lib ../config ../cli ../templates ../app"
-
-for language in en
-do
-	test -f "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.po" && mv "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.po" "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.po.old"
-	> "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.pot"
-	find $TRANSLATIONFILES_RELATIVE_PATHS \( -iname "*.php" -o -iname "*.ihtml" \) -a \( ! -path "*/public/plugins_packages/*" -o -path "*/public/plugins_packages/core/*" \) | xargs xgettext --from-code=utf-8 -j -n --language=PHP -o "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.pot"
-	test -f "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.po.old" && msgmerge "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.po.old" "$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.pot" --output-file="$LOCALE_RELATIVE_PATH/$language/LC_MESSAGES/studip.po"
-done
diff --git a/resources/assets/javascripts/chunks/vue.js b/resources/assets/javascripts/chunks/vue.js
index 3cf27d06d6c..bfcb39324e6 100644
--- a/resources/assets/javascripts/chunks/vue.js
+++ b/resources/assets/javascripts/chunks/vue.js
@@ -35,6 +35,7 @@ Vue.use(Router);
 Vue.use(PortalVue);
 
 function createApp(options, ...args) {
+    Vue.config.language = getLocale();
     return new Vue({ store, ...options }, ...args);
 }
 
diff --git a/resources/assets/javascripts/lib/gettext.js b/resources/assets/javascripts/lib/gettext.js
index 327e9edee47..59768ed0f7e 100644
--- a/resources/assets/javascripts/lib/gettext.js
+++ b/resources/assets/javascripts/lib/gettext.js
@@ -1,5 +1,5 @@
 import { translate } from 'vue-gettext';
-import defaultTranslations from '../../../locales/de_DE.json';
+import defaultTranslations from '../../../../locale/de/LC_MESSAGES/js-resources.json';
 import eventBus from './event-bus.js';
 
 const DEFAULT_LANG = 'de_DE';
@@ -80,7 +80,8 @@ function getInstalledLanguages() {
 
 async function getTranslations(locale) {
     try {
-        const translation = await import(`../../../locales/${locale}.json`);
+        const language = locale.split(/[_-]/)[0];
+        const translation = await import(`../../../../locale/${language}/LC_MESSAGES/js-resources.json`);
 
         return translation;
     } catch (exception) {
diff --git a/resources/locales/en_GB.json b/resources/locales/en_GB.json
deleted file mode 100644
index 92d632480ff..00000000000
--- a/resources/locales/en_GB.json
+++ /dev/null
@@ -1,185 +0,0 @@
-{
-    " Dieser Filter enthält keine (neuen) Personen.": "This selection contains no (new) users.",
-    "%s hat geschrieben:": "%s wrote:",
-    "<%= count %> ausgewählt": "<%= count %> selected",
-    "Abschicken": "Submit",
-    "AbschlussKategorie suchen": "search degree category",
-    "Aktionen": "Actions",
-    "Alle Bereiche werden dann nach \"Allgemein\" verschoben!": "All areas will be moved to the category \"general\"!",
-    "Alle Räume anzeigen": "Show all rooms.",
-    "Alle entfernen": "Remove all",
-    "Alle hinzufügen": "Add all",
-    "Anmelderegel konfigurieren": "Configure admission setting",
-    "Anonym": "Anonymous",
-    "Apr": "Apr",
-    "April": "April",
-    "Aug": "Aug",
-    "August": "August",
-    "ausgewählt": "selected",
-    "Autor/-in": "Author",
-    "Bearbeiten.": "Edit.",
-    "Bedingung konfigurieren": "Configure condition",
-    "Beitrag verschieben": "Move post",
-    "Bild %u von %u": "Image %u of %u",
-    "Bitte %u Zeichen mehr eingeben": "Please enter %u more characters",
-    "Bitte %u Zeichen weniger eingeben": "Please enter %u characters less",
-    "Bitte bestätigen Sie die Aktion": "Please confirm action",
-    "Bitte geben Sie Ihren tatsächlichen Nachnamen an.": "Please enter your real last name.",
-    "Bitte geben Sie Ihren tatsächlichen Vornamen an.": "Please enter your real first name.",
-    "Bitte laden Sie die Seite neu, um fortzufahren": "To continue, please reload the page",
-    "Bitte wählen Sie einen gültigen Wert aus!": "Please specify a valid value!",
-    "Blenden Sie die restlichen Termine aus": "Hide remaining dates",
-    "Blenden Sie die restlichen Termine ein": "Show the remaining dates",
-    "Das Aktivieren des WYSIWYG Editors ist fehlgeschlagen.": "Activation of WYSIWYG editor failed.",
-    "Das Herunterladen dieser Datei ist nur eingeschränkt möglich.": "The download of this file is restricted.",
-    "Das Passwort ist zu kurz. Es sollte mindestens 8 Zeichen lang sein.": "The password is too short. It should have at least 8 characters.",
-    "Das Passwort stimmt nicht mit dem Bestätigungspasswort überein!": "Password and re-typed password don't match!",
-    "Datei hochladen": "Upload file",
-    "Datei ist zu groß oder hat eine nicht erlaubte Endung.": "The file is too big or it doesn't have an allowed extension.",
-    "Datum": "Date",
-    "Der Benutzername enthält unzulässige Zeichen, er darf keine Sonderzeichen oder Leerzeichen enthalten.": "There are invalid characters in the username - it must not contain any special characters nor space characters.",
-    "Der Benutzername ist zu kurz, er sollte mindestens 4 Zeichen lang sein.": "The username is too short - it must comprise at least 4 characters.",
-    "Detaillierte Veranstaltungsliste": "Detailed list of courses",
-    "Dez": "Dec",
-    "Dezember": "December",
-    "Di": "Tue.",
-    "Dialog wird geladen...": "Loading dialogue...",
-    "Die E-Mail-Adresse ist nicht korrekt!": "Invalid e-mail address!",
-    "Die Person ist bereits eingetragen.": "This person is already enroled.",
-    "Die Seite muss danach neu geladen werden, um den WYSIWYG Editor zu laden.": "The page must be reloaded afterwards to load the WYSIWYG editor.",
-    "Die Senderin/der Sender dieser Nachricht möchte Sie auf den folgenden Beitrag aufmerksam machen. ": "The sender of this message wants to call your attention to the following posting.",
-    "Die beiden Werte \"$1\" und \"$2\" stimmen nicht überein. ": "Values \"$1\" and \"$2\" are not identical.",
-    "Dienstag": "Tuesday",
-    "Dieser Ordner ist leer": "This folder is empty",
-    "Dieses Bild wird verkleinert dargestellt. Klicken Sie für eine größere Darstellung.": "Preview size. Click to enlarge.",
-    "Do": "Thu.",
-    "Dokument hinzufügen": "Add document",
-    "Dokument suchen": "Search document",
-    "Donnerstag": "Thursday",
-    "Downloads": "Downloads",
-    "Es werden auch alle Beiträge in diesem Bereich gelöscht!": "All postings in this area will be deleted as well!",
-    "Es wurden keine neuen Ergebnisse für \"<%= needle %>\" gefunden.": "No results were found for \"<%= needle %>\".",
-    "Fachsemester auswählen (optional)": "Select semester of study (optional)",
-    "Feb": "Feb",
-    "Februar": "February",
-    "Fehler bei der Übertragung": "An error occurred during the transmission",
-    "Fehler beim Aufruf des News-Controllers": "Error accessing the news controller",
-    "Fehler beim Aufruf des Tour-Controllers": "Error accessing the tour controller",
-    "Fehler": "Error",
-    "Fr": "Fri.",
-    "Freitag": "Friday",
-    "Füllen Sie noch die rot markierten Stellen korrekt aus.": "Fill in the red marked areas correctly.",
-    "Gefundene Nutzer": "Users found",
-    "Größe": "Size",
-    "HH:mm": "HH:mm",
-    "Hervorhebung aufheben": "Delete mark",
-    "Hierauf antworten.": "Reply on this.",
-    "hinzufügen": "add",
-    "Ihre Eingaben wurden bislang noch nicht gespeichert.": "Your input has not been saved yet.",
-    "Ja": "Yes",
-    "Jan": "Jan",
-    "Januar": "January",
-    "Jetzt": "Now",
-    "Jul": "Jul",
-    "Juli": "July",
-    "Jun": "Jun",
-    "Juni": "June",
-    "Kein Ergebnis gefunden.": "No results.",
-    "Keine Angabe beim Fach": "Not specified for field of study",
-    "Keine weitere Auswahl möglich": "No further selection possible",
-    "Keine Übereinstimmungen gefunden": "No match found",
-    "Kommentar schreiben. Enter zum Abschicken.": "Write comment. Press enter to send it.",
-    "Konnte die Konversation nicht laden. Probieren Sie es nachher erneut.": "Could not load the conversation. Please try again later.",
-    "Konnte die Suche nicht ausführen. Probieren Sie es nachher erneut.": "Could not execute the search. Please try again later.",
-    "Lade mehr Ergebnisse...": "Load more results...",
-    "Link wurde kopiert": "Link has been copied",
-    "Link zum Beitrag: ": "Link to posting:",
-    "Mai": "May",
-    "Mi": "Wed.",
-    "Mikrosekunde": "Microsecond",
-    "Millisekunde": "Millisecond",
-    "Minute": "minute",
-    "Mittwoch": "Wednesday",
-    "Mo": "Mon.",
-    "Modul suchen": "Search for module",
-    "Montag": "Monday",
-    "Mär": "Mar",
-    "März": "March",
-    "nachm.": "PM",
-    "Nachricht schreiben. Enter zum Abschicken.": "Write message. Press enter to send it.",
-    "Name": "Name",
-    "Nein": "No",
-    "Neu laden": "Reload",
-    "Neuen Termin eintragen": "Create new date",
-    "Nicht buchbare Räume:": "Non-allocatable rooms:",
-    "Noch nicht komplett ausgefüllt.": "Not yet filled in completely.",
-    "Nov": "Nov",
-    "November": "November",
-    "Nur buchbare Räume anzeigen": "Display bookable rooms only",
-    "oder": "or",
-    "Okt": "Oct",
-    "Oktober": "October",
-    "Optional weitere Studiengangteile (max. 5)": "Optional additional components (max. 5)",
-    "Sa": "Sat.",
-    "Samstag": "Saturday",
-    "Schließen": "Close",
-    "Schreib was, frag was. Enter zum Abschicken.": "Write something, ask something. Press enter to send it.",
-    "Sekunde": "Second",
-    "Sep": "Sep",
-    "September": "September",
-    "Sie haben <%= count %> Personen ausgewählt": "You selected <%= count %> persons",
-    "Sie haben nicht angegeben, wer die Nachricht empfangen soll!": "You did not specify who should receive the message!",
-    "Sie haben noch keine Anmelderegeln festgelegt.": "You haven't yet defined any admission rule.",
-    "Sie haben noch niemanden hinzugefügt.": "No-one added yet",
-    "Sie können nur %u Eintrag auswählen": "You may only select %u entry",
-    "Sie können nur %u Einträge auswählen": "You may only select %u entries",
-    "Sie sind nicht mehr im System angemeldet.": "You are no longer logged in.",
-    "Sind Sie sicher, dass Sie die regelmäßige Zeit ändern möchten?": "Are you sure to change the periodic course appointments?",
-    "Sind sie sicher, dass Sie diese Kategorie entfernen möchten? ": "Are you sure to delete this category?",
-    "Sind sie sicher, dass Sie diesen Bereich löschen möchten? ": "Are you sure to delete this area?",
-    "Sind sie sicher, dass Sie ihren bisherigen Beitrag verwerfen wollen?": "Do really want to discard your posting?",
-    "Smileys": "Smileys",
-    "So": "Sun.",
-    "Soll der WYSIWYG Editor aktiviert werden?": "Do you want to activate the WYSIWYG editor?",
-    "Soll die ausgewählte Berechtigung wirklich entfernt werden?": "Do you really want to delete the selected permission?",
-    "Sonntag": "Sunday",
-    "Starte die Konversation jetzt!": "Start the conversation now!",
-    "Status": "Status",
-    "Studiengang suchen": "Search course of study",
-    "Studiengangteil suchen": "Search course of study. ",
-    "Stunde": "hour",
-    "Suche zurücksetzen": "Reset search",
-    "Suche...": "Searching...",
-    "Suchergebnisse": "Search results",
-    "Termindetails bearbeiten": "Edit date details",
-    "Thema hervorheben": "Mark topic",
-    "Thema schließen": "Close topic",
-    "Thema öffnen": "Open topic",
-    "Typ": "Type",
-    "URL": "URL",
-    "Veranstaltung berücksichtigen": "Regard course",
-    "Veranstaltung nicht berücksichtigen": "Do not regard course",
-    "Veranstaltungsdetails": "Course details",
-    "Veranstaltungstyp auswählen (optional)": "Select course type (optional)",
-    "Vor": "Before",
-    "vorm.": "AM",
-    "Vor %s Minuten": "%s minutes ago",
-    "Wenn Sie die Seite verlassen, gehen ihre Änderungen verloren!": "If you leave the page your changes will be lost!",
-    "Wird geladen": "Loading",
-    "Wirklich %s Nachrichten löschen?": "Delete message %s?",
-    "Wollen Sie die Aktion wirklich ausführen?": "Do you really want to execute this action?",
-    "Wollen Sie die gewünschten Termine wirklich löschen?": "Do you really want to delete the  selected dates?",
-    "Wollen Sie die im Plan gezeigten Anfragen wirklich buchen?": "Do you really want to book the request shown in the plan?",
-    "Wollen Sie diesen Filter wirklich entfernen?": "Are you sure to delete this filter?",
-    "Zeichen verbleibend: ": "Remaining characters:",
-    "Zeit wählen": "Select time",
-    "Zeit": "Time",
-    "Zeitzone": "Timezone",
-    "Zitat einfügen": "Insert quote",
-    "Zitat löschen": "Delete quote",
-    "Zitat teilen": "Share quote",
-    "Zum Hauptordner": "Go to main folder",
-    "Zur Diskussion": "Go to discussion",
-    "Zur Gesamtübersicht": "Back to overview",
-    "Zurück": "Back"
-}
-- 
GitLab