diff --git a/src/Model/Types/Changelog.hs b/src/Model/Types/Changelog.hs index 4dc25bc61..5625b31a2 100644 --- a/src/Model/Types/Changelog.hs +++ b/src/Model/Types/Changelog.hs @@ -16,6 +16,18 @@ import Model.Types.TH.PathPiece import qualified Data.Map as Map +{- + How to add a changelog item: + * pick a constructor name for the feature, e.g. MyGoodFeature + * add hamlet files in kebab-case for each langugage, e.g. /templates/i18n/changelog/my-good-feature.de-de-formal.hamlet + and /templates/i18n/changelog/my-good-feature.en-eu.hamlet + * if it is a bugfix, classify it in `classifyChangelogItem` below + * add list item (MyGoodFeature, date) to `changelogItemDays` below + + Es können mehrere Changes an einem Tag stattfinden, aber jeder Change kann nur an einem Tag stattfinden. + Changes werden in die Datenbank eingetragen, d.h. sie müssen auch in der DB gelöscht werden, wenn diese nicht mehr angezeigt werden sollen! +-} + mkI18nWidgetEnum "Changelog" "changelog" derivePersistFieldPathPiece ''ChangelogItem @@ -31,6 +43,19 @@ data ChangelogItemKind makePrisms ''ChangelogItemKind +classifyChangelogItem :: ChangelogItem -> ChangelogItemKind +classifyChangelogItem = \case + --ChangelogBlaBla -> ChangelogItemBugfix + --ChangelogFradriveInitialRelease -> ChangelogItemFeature -- remove me once we have a bugfix + _other -> ChangelogItemFeature + + +changelogItemDays :: Map ChangelogItem Day +changelogItemDays = Map.fromListWithKey (\k d1 d2 -> bool (error $ "Duplicate changelog days for " <> show k) d1 $ d1 /= d2) + [ (ChangelogFradriveInitialRelease, [day|2022-12-12|]) + ] + +{- FOR REFERENCE, PREVIOUS CHANGELOG (delete in the future, along with all translation files): classifyChangelogItem :: ChangelogItem -> ChangelogItemKind classifyChangelogItem = \case ChangelogHaskellCampusLogin -> ChangelogItemBugfix @@ -158,3 +183,4 @@ changelogItemDays = Map.fromListWithKey (\k d1 d2 -> bool (error $ "Duplicate ch , (ChangelogMaterialsVideoStreaming, [day|2020-11-10|]) , (ChangelogFixPersonalisedSheetFilesKeep, [day|2020-11-10|]) ] +-} \ No newline at end of file diff --git a/templates/i18n/changelog/abolish-course-associated-study-features.de-de-formal.hamlet b/templates/i18n/changelog/abolish-course-associated-study-features.de-de-formal.hamlet deleted file mode 100644 index 89770fe0f..000000000 --- a/templates/i18n/changelog/abolish-course-associated-study-features.de-de-formal.hamlet +++ /dev/null @@ -1,9 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kursassoziierte Studienfächer wurden abgeschafft. -
-Es werden nun an allen kursbezogenen Stellen jene Studiendaten angezeigt, die während des entsprechenden Semesters aktuell waren. diff --git a/templates/i18n/changelog/abolish-course-associated-study-features.en-eu.hamlet b/templates/i18n/changelog/abolish-course-associated-study-features.en-eu.hamlet deleted file mode 100644 index abf462e5c..000000000 --- a/templates/i18n/changelog/abolish-course-associated-study-features.en-eu.hamlet +++ /dev/null @@ -1,9 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Abolished course-associated features of study. -
-In course-related contexts now all study features which were up to date during the relevant term are displayed. diff --git a/templates/i18n/changelog/account-deletion-during-testing.de-de-formal.hamlet b/templates/i18n/changelog/account-deletion-during-testing.de-de-formal.hamlet deleted file mode 100644 index 0e10fc1a8..000000000 --- a/templates/i18n/changelog/account-deletion-during-testing.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Benutzer:innen können sich in der Testphase komplett selbst löschen diff --git a/templates/i18n/changelog/account-deletion-during-testing.en-eu.hamlet b/templates/i18n/changelog/account-deletion-during-testing.en-eu.hamlet deleted file mode 100644 index 400c4a8b0..000000000 --- a/templates/i18n/changelog/account-deletion-during-testing.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -During testing users may completely delete their accounts. diff --git a/templates/i18n/changelog/additional-datetime-formats.de-de-formal.hamlet b/templates/i18n/changelog/additional-datetime-formats.de-de-formal.hamlet deleted file mode 100644 index 649d03c87..000000000 --- a/templates/i18n/changelog/additional-datetime-formats.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Zusätzliche Uhrzeit- und Datumsformate diff --git a/templates/i18n/changelog/additional-datetime-formats.en-eu.hamlet b/templates/i18n/changelog/additional-datetime-formats.en-eu.hamlet deleted file mode 100644 index 43ee74ad0..000000000 --- a/templates/i18n/changelog/additional-datetime-formats.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Additional date and time formats diff --git a/templates/i18n/changelog/additional-sheet-notifications.de-de-formal.hamlet b/templates/i18n/changelog/additional-sheet-notifications.de-de-formal.hamlet deleted file mode 100644 index af90ba84e..000000000 --- a/templates/i18n/changelog/additional-sheet-notifications.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Zusätzliche Benachrichtigungen für Übungsblätter diff --git a/templates/i18n/changelog/additional-sheet-notifications.en-eu.hamlet b/templates/i18n/changelog/additional-sheet-notifications.en-eu.hamlet deleted file mode 100644 index 6ea2a25e5..000000000 --- a/templates/i18n/changelog/additional-sheet-notifications.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Additional notifications for exercise sheets. diff --git a/templates/i18n/changelog/allocation-applications.de-de-formal.hamlet b/templates/i18n/changelog/allocation-applications.de-de-formal.hamlet deleted file mode 100644 index 10fe695fe..000000000 --- a/templates/i18n/changelog/allocation-applications.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Bewerbungen für Zentralanmeldungen diff --git a/templates/i18n/changelog/allocation-applications.en-eu.hamlet b/templates/i18n/changelog/allocation-applications.en-eu.hamlet deleted file mode 100644 index f4b150176..000000000 --- a/templates/i18n/changelog/allocation-applications.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Applications for central allocations diff --git a/templates/i18n/changelog/allocation-course-accept-substitutes-fixed.de-de-formal.hamlet b/templates/i18n/changelog/allocation-course-accept-substitutes-fixed.de-de-formal.hamlet deleted file mode 100644 index a9022f75b..000000000 --- a/templates/i18n/changelog/allocation-course-accept-substitutes-fixed.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Das Eintragen von Fristen bis zu denen Nachrücker aus Zentralanmeldungen akzeptiert werden ist nun möglich diff --git a/templates/i18n/changelog/allocation-course-accept-substitutes-fixed.en-eu.hamlet b/templates/i18n/changelog/allocation-course-accept-substitutes-fixed.en-eu.hamlet deleted file mode 100644 index 20a78d507..000000000 --- a/templates/i18n/changelog/allocation-course-accept-substitutes-fixed.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -It is now possible to specify deadlines up to which substitute registrations from central allocations are accepted. diff --git a/templates/i18n/changelog/allocation-course-accept-substitutes.de-de-formal.hamlet b/templates/i18n/changelog/allocation-course-accept-substitutes.de-de-formal.hamlet deleted file mode 100644 index 7a86661b2..000000000 --- a/templates/i18n/changelog/allocation-course-accept-substitutes.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kurse, die an Zentralanmeldungen teilnehmen, können nun angeben bis zu welcher Frist sie Nachrücker:innen akzeptieren können diff --git a/templates/i18n/changelog/allocation-course-accept-substitutes.en-eu.hamlet b/templates/i18n/changelog/allocation-course-accept-substitutes.en-eu.hamlet deleted file mode 100644 index 93a5fbaa0..000000000 --- a/templates/i18n/changelog/allocation-course-accept-substitutes.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Courses which participate in a central allocation may now specify a deadline up to which they are able to accept substitute registrations. diff --git a/templates/i18n/changelog/allocation-course-registration.de-de-formal.hamlet b/templates/i18n/changelog/allocation-course-registration.de-de-formal.hamlet deleted file mode 100644 index 812be7384..000000000 --- a/templates/i18n/changelog/allocation-course-registration.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kurse zu Zentralanmeldungen eintragen diff --git a/templates/i18n/changelog/allocation-course-registration.en-eu.hamlet b/templates/i18n/changelog/allocation-course-registration.en-eu.hamlet deleted file mode 100644 index d2dc7ca4d..000000000 --- a/templates/i18n/changelog/allocation-course-registration.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Registration of courses for central allocation diff --git a/templates/i18n/changelog/allocation-new-course-notification.de-de-formal.hamlet b/templates/i18n/changelog/allocation-new-course-notification.de-de-formal.hamlet deleted file mode 100644 index 1507f4163..000000000 --- a/templates/i18n/changelog/allocation-new-course-notification.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Benachrichtigungen, wenn neue Kurse zu Zentralanmeldungen hinzugefügt werden diff --git a/templates/i18n/changelog/allocation-new-course-notification.en-eu.hamlet b/templates/i18n/changelog/allocation-new-course-notification.en-eu.hamlet deleted file mode 100644 index d2107cf3c..000000000 --- a/templates/i18n/changelog/allocation-new-course-notification.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Notifications for new courses being added to central allocations. diff --git a/templates/i18n/changelog/allocations-notifications.de-de-formal.hamlet b/templates/i18n/changelog/allocations-notifications.de-de-formal.hamlet deleted file mode 100644 index 74326a9d1..000000000 --- a/templates/i18n/changelog/allocations-notifications.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Benachrichtigungen für Zentralanmeldungen diff --git a/templates/i18n/changelog/allocations-notifications.en-eu.hamlet b/templates/i18n/changelog/allocations-notifications.en-eu.hamlet deleted file mode 100644 index a32c980ff..000000000 --- a/templates/i18n/changelog/allocations-notifications.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Notifications for central allocations diff --git a/templates/i18n/changelog/asidenav.de-de-formal.hamlet b/templates/i18n/changelog/asidenav.de-de-formal.hamlet deleted file mode 100644 index 1b8a802a1..000000000 --- a/templates/i18n/changelog/asidenav.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Designänderungen diff --git a/templates/i18n/changelog/asidenav.en-eu.hamlet b/templates/i18n/changelog/asidenav.en-eu.hamlet deleted file mode 100644 index c5ceb341f..000000000 --- a/templates/i18n/changelog/asidenav.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Design changes diff --git a/templates/i18n/changelog/assigned-corrections-filters.de-de-formal.hamlet b/templates/i18n/changelog/assigned-corrections-filters.de-de-formal.hamlet deleted file mode 100644 index d47dc7be8..000000000 --- a/templates/i18n/changelog/assigned-corrections-filters.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Liste zugewiesener Abgaben lassen sich nun filtern diff --git a/templates/i18n/changelog/assigned-corrections-filters.en-eu.hamlet b/templates/i18n/changelog/assigned-corrections-filters.en-eu.hamlet deleted file mode 100644 index 87d10a514..000000000 --- a/templates/i18n/changelog/assigned-corrections-filters.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Filters for list of assigned corrections diff --git a/templates/i18n/changelog/authorship-statements.de-de-formal.hamlet b/templates/i18n/changelog/authorship-statements.de-de-formal.hamlet deleted file mode 100644 index 9e4f2be5f..000000000 --- a/templates/i18n/changelog/authorship-statements.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Es kann die Abgabe einer Eigenständigkeitserklärung bei Anlegen einer Übungsblattabgabe gefordert werden. diff --git a/templates/i18n/changelog/authorship-statements.en-eu.hamlet b/templates/i18n/changelog/authorship-statements.en-eu.hamlet deleted file mode 100644 index d8256d039..000000000 --- a/templates/i18n/changelog/authorship-statements.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Submittors can be required to make a Statement of Authorship when creating their submission for an exercise sheet. diff --git a/templates/i18n/changelog/automatically-accept-course-applications.de-de-formal.hamlet b/templates/i18n/changelog/automatically-accept-course-applications.de-de-formal.hamlet deleted file mode 100644 index 9ce3ddaa1..000000000 --- a/templates/i18n/changelog/automatically-accept-course-applications.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Automatische Anmeldung von Bewerber:innen in Kursen, die nicht an einer Zentralanmeldung teilnehmen (nach Bewertung der Bewerbung) diff --git a/templates/i18n/changelog/automatically-accept-course-applications.en-eu.hamlet b/templates/i18n/changelog/automatically-accept-course-applications.en-eu.hamlet deleted file mode 100644 index 89a869006..000000000 --- a/templates/i18n/changelog/automatically-accept-course-applications.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Option to automatically accept applications for courses outside of central allocations. diff --git a/templates/i18n/changelog/better-course-communication-tutorials.de-de-formal.hamlet b/templates/i18n/changelog/better-course-communication-tutorials.de-de-formal.hamlet deleted file mode 100644 index 8352bcbff..000000000 --- a/templates/i18n/changelog/better-course-communication-tutorials.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Besseres Verschicken von Kursmitteilungen an Tutoriumsteilnehmer:innen diff --git a/templates/i18n/changelog/better-course-communication-tutorials.en-eu.hamlet b/templates/i18n/changelog/better-course-communication-tutorials.en-eu.hamlet deleted file mode 100644 index cc693084b..000000000 --- a/templates/i18n/changelog/better-course-communication-tutorials.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Better sending of course communications to tutorial participants. diff --git a/templates/i18n/changelog/better-course-participant-detail-page.de-de-formal.hamlet b/templates/i18n/changelog/better-course-participant-detail-page.de-de-formal.hamlet deleted file mode 100644 index 6e7ad0b97..000000000 --- a/templates/i18n/changelog/better-course-participant-detail-page.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Anzeige von Abgaben, Tutorien und Klausuren auf der Seite für einzelne Kursteilnehmer:innen diff --git a/templates/i18n/changelog/better-course-participant-detail-page.en-eu.hamlet b/templates/i18n/changelog/better-course-participant-detail-page.en-eu.hamlet deleted file mode 100644 index 5e52b2481..000000000 --- a/templates/i18n/changelog/better-course-participant-detail-page.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Submissions, tutorials, and exams are now shown on the detail page for course participants. diff --git a/templates/i18n/changelog/better-csv-import.de-de-formal.hamlet b/templates/i18n/changelog/better-csv-import.de-de-formal.hamlet deleted file mode 100644 index a6f9efc7f..000000000 --- a/templates/i18n/changelog/better-csv-import.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Verbesserter Workflow & Fehlerbehandlung für CSV-Import diff --git a/templates/i18n/changelog/better-csv-import.en-eu.hamlet b/templates/i18n/changelog/better-csv-import.en-eu.hamlet deleted file mode 100644 index dd28263c3..000000000 --- a/templates/i18n/changelog/better-csv-import.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Improved workflow and error-handling for CSV-import diff --git a/templates/i18n/changelog/better-file-uploads.de-de-formal.hamlet b/templates/i18n/changelog/better-file-uploads.de-de-formal.hamlet deleted file mode 100644 index 6ba34b110..000000000 --- a/templates/i18n/changelog/better-file-uploads.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Verbesserte Handhabung von Datei-Uploads diff --git a/templates/i18n/changelog/better-file-uploads.en-eu.hamlet b/templates/i18n/changelog/better-file-uploads.en-eu.hamlet deleted file mode 100644 index 75c17b568..000000000 --- a/templates/i18n/changelog/better-file-uploads.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Improved handling of file uploads diff --git a/templates/i18n/changelog/better-table-cell-colour-coding.de-de-formal.hamlet b/templates/i18n/changelog/better-table-cell-colour-coding.de-de-formal.hamlet deleted file mode 100644 index 9845f3982..000000000 --- a/templates/i18n/changelog/better-table-cell-colour-coding.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Verbesserte Farbkodierung von Tabellenzellen diff --git a/templates/i18n/changelog/better-table-cell-colour-coding.en-eu.hamlet b/templates/i18n/changelog/better-table-cell-colour-coding.en-eu.hamlet deleted file mode 100644 index 94a0591ed..000000000 --- a/templates/i18n/changelog/better-table-cell-colour-coding.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Improved colour coding of table cells diff --git a/templates/i18n/changelog/bulk-download-original-submissions.de-de-formal.hamlet b/templates/i18n/changelog/bulk-download-original-submissions.de-de-formal.hamlet deleted file mode 100644 index 13fb698cb..000000000 --- a/templates/i18n/changelog/bulk-download-original-submissions.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Es kann nun eingestellt werden, ob, beim Download mehrerer Abgaben, die (wmgl.) korrigierte oder die originale Version heruntergeladen werden soll. diff --git a/templates/i18n/changelog/bulk-download-original-submissions.en-eu.hamlet b/templates/i18n/changelog/bulk-download-original-submissions.en-eu.hamlet deleted file mode 100644 index f63259b30..000000000 --- a/templates/i18n/changelog/bulk-download-original-submissions.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -When bulk downloading submissions there now is a setting to choose between the original and corrected versions. diff --git a/templates/i18n/changelog/buttons-work-without-javascript.de-de-formal.hamlet b/templates/i18n/changelog/buttons-work-without-javascript.de-de-formal.hamlet deleted file mode 100644 index 95d44a378..000000000 --- a/templates/i18n/changelog/buttons-work-without-javascript.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Zahlreiche Knöpfe/Formulare funktionieren wieder bei eingeschaltetem Javascript diff --git a/templates/i18n/changelog/buttons-work-without-javascript.en-eu.hamlet b/templates/i18n/changelog/buttons-work-without-javascript.en-eu.hamlet deleted file mode 100644 index 406c57241..000000000 --- a/templates/i18n/changelog/buttons-work-without-javascript.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Multiple buttons/forms no work again when JavaScript is enabled. diff --git a/templates/i18n/changelog/communication-attachments.de-de-formal.hamlet b/templates/i18n/changelog/communication-attachments.de-de-formal.hamlet deleted file mode 100644 index 72f34a953..000000000 --- a/templates/i18n/changelog/communication-attachments.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -An Kurs- und Tutoriumsmitteilungen können nun Dateien angehängt werden. diff --git a/templates/i18n/changelog/communication-attachments.en-eu.hamlet b/templates/i18n/changelog/communication-attachments.en-eu.hamlet deleted file mode 100644 index 975ab0008..000000000 --- a/templates/i18n/changelog/communication-attachments.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Course- and tutorial messages (emails) may now carry attached files. diff --git a/templates/i18n/changelog/configurable-datetime-format.de-de-formal.hamlet b/templates/i18n/changelog/configurable-datetime-format.de-de-formal.hamlet deleted file mode 100644 index 7d891b040..000000000 --- a/templates/i18n/changelog/configurable-datetime-format.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Wählbares Format für Datum diff --git a/templates/i18n/changelog/configurable-datetime-format.en-eu.hamlet b/templates/i18n/changelog/configurable-datetime-format.en-eu.hamlet deleted file mode 100644 index 93aa6d3a1..000000000 --- a/templates/i18n/changelog/configurable-datetime-format.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Configurable date and time formats diff --git a/templates/i18n/changelog/configurable-display-emails.de-de-formal.hamlet b/templates/i18n/changelog/configurable-display-emails.de-de-formal.hamlet deleted file mode 100644 index 79f943f36..000000000 --- a/templates/i18n/changelog/configurable-display-emails.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Anpassbare angezeigte E-Mail Adressen diff --git a/templates/i18n/changelog/configurable-display-emails.en-eu.hamlet b/templates/i18n/changelog/configurable-display-emails.en-eu.hamlet deleted file mode 100644 index 46b074878..000000000 --- a/templates/i18n/changelog/configurable-display-emails.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Configulable display emails diff --git a/templates/i18n/changelog/configurable-display-names.de-de-formal.hamlet b/templates/i18n/changelog/configurable-display-names.de-de-formal.hamlet deleted file mode 100644 index e3d081681..000000000 --- a/templates/i18n/changelog/configurable-display-names.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Anpassbare angezeigte Namen diff --git a/templates/i18n/changelog/configurable-display-names.en-eu.hamlet b/templates/i18n/changelog/configurable-display-names.en-eu.hamlet deleted file mode 100644 index 0cfd100c5..000000000 --- a/templates/i18n/changelog/configurable-display-names.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Configurable display names diff --git a/templates/i18n/changelog/cookie-active-auth-tags.de-de-formal.hamlet b/templates/i18n/changelog/cookie-active-auth-tags.de-de-formal.hamlet deleted file mode 100644 index 0eaf63310..000000000 --- a/templates/i18n/changelog/cookie-active-auth-tags.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Aktive Authorisierungsprädikate können nun in einem persistenten Cookie gespeichert werden diff --git a/templates/i18n/changelog/cookie-active-auth-tags.en-eu.hamlet b/templates/i18n/changelog/cookie-active-auth-tags.en-eu.hamlet deleted file mode 100644 index ca5075d1d..000000000 --- a/templates/i18n/changelog/cookie-active-auth-tags.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Active authorisation predicates can now be saved as a persistent cookie. diff --git a/templates/i18n/changelog/corrections-csv-export.de-de-formal.hamlet b/templates/i18n/changelog/corrections-csv-export.de-de-formal.hamlet deleted file mode 100644 index aa88df9b3..000000000 --- a/templates/i18n/changelog/corrections-csv-export.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Tabellen von Übungsblattabgaben können nun als CSV exportiert werden diff --git a/templates/i18n/changelog/corrections-csv-export.en-eu.hamlet b/templates/i18n/changelog/corrections-csv-export.en-eu.hamlet deleted file mode 100644 index 8d20d682c..000000000 --- a/templates/i18n/changelog/corrections-csv-export.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Tables of exercise sheet submissions can now be exported as CSV. diff --git a/templates/i18n/changelog/corrections-display-improvements.de-de-formal.hamlet b/templates/i18n/changelog/corrections-display-improvements.de-de-formal.hamlet deleted file mode 100644 index e5e58db32..000000000 --- a/templates/i18n/changelog/corrections-display-improvements.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Viele Verbesserung zur Anzeige von Korrekturen diff --git a/templates/i18n/changelog/corrections-display-improvements.en-eu.hamlet b/templates/i18n/changelog/corrections-display-improvements.en-eu.hamlet deleted file mode 100644 index 6ee05dfc8..000000000 --- a/templates/i18n/changelog/corrections-display-improvements.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Numerous improvements for display of corrections diff --git a/templates/i18n/changelog/corrector-consider-deficits.de-de-formal.hamlet b/templates/i18n/changelog/corrector-consider-deficits.de-de-formal.hamlet deleted file mode 100644 index 7c49534fd..000000000 --- a/templates/i18n/changelog/corrector-consider-deficits.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Das Ausgleichen von Defiziten beim Verteilen von Korrekturen kann nun deaktiviert werden diff --git a/templates/i18n/changelog/corrector-consider-deficits.en-eu.hamlet b/templates/i18n/changelog/corrector-consider-deficits.en-eu.hamlet deleted file mode 100644 index 6ccf56f11..000000000 --- a/templates/i18n/changelog/corrector-consider-deficits.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Consideration of corrector deficits when assigning corrections can now be disabled. diff --git a/templates/i18n/changelog/correctors-on-course-show.de-de-formal.hamlet b/templates/i18n/changelog/correctors-on-course-show.de-de-formal.hamlet deleted file mode 100644 index 626968cdb..000000000 --- a/templates/i18n/changelog/correctors-on-course-show.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Anzeige von Korrektor:innen auf den Kursseiten diff --git a/templates/i18n/changelog/correctors-on-course-show.en-eu.hamlet b/templates/i18n/changelog/correctors-on-course-show.en-eu.hamlet deleted file mode 100644 index c425d56e6..000000000 --- a/templates/i18n/changelog/correctors-on-course-show.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Display of correctors on course overview pages diff --git a/templates/i18n/changelog/course-administrator-invitations.de-de-formal.hamlet b/templates/i18n/changelog/course-administrator-invitations.de-de-formal.hamlet deleted file mode 100644 index 619ce1bbe..000000000 --- a/templates/i18n/changelog/course-administrator-invitations.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Eintragen von Korrektor:innen und Kursverwalter:innen auch ohne bestehenden Account diff --git a/templates/i18n/changelog/course-administrator-invitations.en-eu.hamlet b/templates/i18n/changelog/course-administrator-invitations.en-eu.hamlet deleted file mode 100644 index 4a2a84b30..000000000 --- a/templates/i18n/changelog/course-administrator-invitations.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Configuration of course correctors and administrators without existing accounts diff --git a/templates/i18n/changelog/course-administrator-roles.de-de-formal.hamlet b/templates/i18n/changelog/course-administrator-roles.de-de-formal.hamlet deleted file mode 100644 index c10de0410..000000000 --- a/templates/i18n/changelog/course-administrator-roles.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kurse Veranstalter:innen können nun mehrere Dozierende und Assistent:innen selbst eintragen diff --git a/templates/i18n/changelog/course-administrator-roles.en-eu.hamlet b/templates/i18n/changelog/course-administrator-roles.en-eu.hamlet deleted file mode 100644 index 0b72575b7..000000000 --- a/templates/i18n/changelog/course-administrator-roles.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Course administrators can now configure course administrators and assistants themselves. diff --git a/templates/i18n/changelog/course-associated-study-field.de-de-formal.hamlet b/templates/i18n/changelog/course-associated-study-field.de-de-formal.hamlet deleted file mode 100644 index 33272945f..000000000 --- a/templates/i18n/changelog/course-associated-study-field.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kursanmeldung benötigen assoziertes Hauptfach (für Studierende mit mehreren Hauptfächern) diff --git a/templates/i18n/changelog/course-associated-study-field.en-eu.hamlet b/templates/i18n/changelog/course-associated-study-field.en-eu.hamlet deleted file mode 100644 index e23a4764b..000000000 --- a/templates/i18n/changelog/course-associated-study-field.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Course enrollment requires association of a field of study (for students with multiple fields). diff --git a/templates/i18n/changelog/course-convenience-links.de-de-formal.hamlet b/templates/i18n/changelog/course-convenience-links.de-de-formal.hamlet deleted file mode 100644 index 2f4311261..000000000 --- a/templates/i18n/changelog/course-convenience-links.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Links für Bequemlichkeiten hinzugefügt (z.B. aktuelles Übungsblatt) diff --git a/templates/i18n/changelog/course-convenience-links.en-eu.hamlet b/templates/i18n/changelog/course-convenience-links.en-eu.hamlet deleted file mode 100644 index e53007826..000000000 --- a/templates/i18n/changelog/course-convenience-links.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Convenience links (i.e. current exercise sheet) diff --git a/templates/i18n/changelog/course-list-over-all-terms.de-de-formal.hamlet b/templates/i18n/changelog/course-list-over-all-terms.de-de-formal.hamlet deleted file mode 100644 index c8d95b72e..000000000 --- a/templates/i18n/changelog/course-list-over-all-terms.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kursliste über alle Semester hinweg (Top-Level-Navigation "Kurse"), wird in Zukunft Filter/Suchfunktion erhalten diff --git a/templates/i18n/changelog/course-list-over-all-terms.en-eu.hamlet b/templates/i18n/changelog/course-list-over-all-terms.en-eu.hamlet deleted file mode 100644 index 75289daf8..000000000 --- a/templates/i18n/changelog/course-list-over-all-terms.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Overall course list for all semesters (see "Courses"), will have filters and search functions in the future. diff --git a/templates/i18n/changelog/course-materials.de-de-formal.hamlet b/templates/i18n/changelog/course-materials.de-de-formal.hamlet deleted file mode 100644 index ea6c19776..000000000 --- a/templates/i18n/changelog/course-materials.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kursmaterial diff --git a/templates/i18n/changelog/course-materials.en-eu.hamlet b/templates/i18n/changelog/course-materials.en-eu.hamlet deleted file mode 100644 index 95af6f543..000000000 --- a/templates/i18n/changelog/course-materials.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Course material diff --git a/templates/i18n/changelog/course-messages.de-de-formal.hamlet b/templates/i18n/changelog/course-messages.de-de-formal.hamlet deleted file mode 100644 index 6531974a2..000000000 --- a/templates/i18n/changelog/course-messages.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Versand von Benachrichtigungen an Kursteilnehmer:innen diff --git a/templates/i18n/changelog/course-messages.en-eu.hamlet b/templates/i18n/changelog/course-messages.en-eu.hamlet deleted file mode 100644 index 8eb6b1009..000000000 --- a/templates/i18n/changelog/course-messages.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Sending of course messages to participants diff --git a/templates/i18n/changelog/course-news.de-de-formal.hamlet b/templates/i18n/changelog/course-news.de-de-formal.hamlet deleted file mode 100644 index ae6f8a519..000000000 --- a/templates/i18n/changelog/course-news.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -"Aktuelles" für Kurse diff --git a/templates/i18n/changelog/course-news.en-eu.hamlet b/templates/i18n/changelog/course-news.en-eu.hamlet deleted file mode 100644 index 146dcbda4..000000000 --- a/templates/i18n/changelog/course-news.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Course news diff --git a/templates/i18n/changelog/course-occurences.de-de-formal.hamlet b/templates/i18n/changelog/course-occurences.de-de-formal.hamlet deleted file mode 100644 index c3691212b..000000000 --- a/templates/i18n/changelog/course-occurences.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kurstermine diff --git a/templates/i18n/changelog/course-occurences.en-eu.hamlet b/templates/i18n/changelog/course-occurences.en-eu.hamlet deleted file mode 100644 index 2f9489db1..000000000 --- a/templates/i18n/changelog/course-occurences.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Course occurrences diff --git a/templates/i18n/changelog/course-occurrence-notes.de-de-formal.hamlet b/templates/i18n/changelog/course-occurrence-notes.de-de-formal.hamlet deleted file mode 100644 index 64671bd24..000000000 --- a/templates/i18n/changelog/course-occurrence-notes.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Spalte für Notizen bei Kursterminen diff --git a/templates/i18n/changelog/course-occurrence-notes.en-eu.hamlet b/templates/i18n/changelog/course-occurrence-notes.en-eu.hamlet deleted file mode 100644 index 8940df07d..000000000 --- a/templates/i18n/changelog/course-occurrence-notes.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Column for adding notes to course events diff --git a/templates/i18n/changelog/course-participants-list-add-sheets.de-de-formal.hamlet b/templates/i18n/changelog/course-participants-list-add-sheets.de-de-formal.hamlet deleted file mode 100644 index 27fda4926..000000000 --- a/templates/i18n/changelog/course-participants-list-add-sheets.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Auswertung des Übungsbetriebs unter „Kursteilnehmer:innen“ diff --git a/templates/i18n/changelog/course-participants-list-add-sheets.en-eu.hamlet b/templates/i18n/changelog/course-participants-list-add-sheets.en-eu.hamlet deleted file mode 100644 index a6886544d..000000000 --- a/templates/i18n/changelog/course-participants-list-add-sheets.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Inclusion of exercise sheets under “Course participants”. diff --git a/templates/i18n/changelog/course-participants-sex.de-de-formal.hamlet b/templates/i18n/changelog/course-participants-sex.de-de-formal.hamlet deleted file mode 100644 index 57af8e904..000000000 --- a/templates/i18n/changelog/course-participants-sex.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Optionale Anzeige des Geschlechts in Teilnehmerlisten u.Ä. diff --git a/templates/i18n/changelog/course-participants-sex.en-eu.hamlet b/templates/i18n/changelog/course-participants-sex.en-eu.hamlet deleted file mode 100644 index bcb44b827..000000000 --- a/templates/i18n/changelog/course-participants-sex.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Optionally display sex in (among others) lists of course participants. diff --git a/templates/i18n/changelog/course-register-by-admin.de-de-formal.hamlet b/templates/i18n/changelog/course-register-by-admin.de-de-formal.hamlet deleted file mode 100644 index 0c6fff641..000000000 --- a/templates/i18n/changelog/course-register-by-admin.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kursverwalter:innen können Teilnehmer:innen hinzufügen diff --git a/templates/i18n/changelog/course-register-by-admin.en-eu.hamlet b/templates/i18n/changelog/course-register-by-admin.en-eu.hamlet deleted file mode 100644 index b3b9133f1..000000000 --- a/templates/i18n/changelog/course-register-by-admin.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Course administrators may enroll participants. diff --git a/templates/i18n/changelog/course-shorthands-within-schools.de-de-formal.hamlet b/templates/i18n/changelog/course-shorthands-within-schools.de-de-formal.hamlet deleted file mode 100644 index 792325c23..000000000 --- a/templates/i18n/changelog/course-shorthands-within-schools.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kurskürzel müssen nur innerhalb eines Instituts eindeutig sein diff --git a/templates/i18n/changelog/course-shorthands-within-schools.en-eu.hamlet b/templates/i18n/changelog/course-shorthands-within-schools.en-eu.hamlet deleted file mode 100644 index eb0eed90b..000000000 --- a/templates/i18n/changelog/course-shorthands-within-schools.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Course shorthands now only need to be unique within a department. diff --git a/templates/i18n/changelog/course-visibility.de-de-formal.hamlet b/templates/i18n/changelog/course-visibility.de-de-formal.hamlet deleted file mode 100644 index c4d04e3c3..000000000 --- a/templates/i18n/changelog/course-visibility.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kurse haben nun einen Sichtbarkeitszeitraum. diff --git a/templates/i18n/changelog/course-visibility.en-eu.hamlet b/templates/i18n/changelog/course-visibility.en-eu.hamlet deleted file mode 100644 index 0bbc5a66f..000000000 --- a/templates/i18n/changelog/course-visibility.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Courses now have a visibility period. diff --git a/templates/i18n/changelog/csv-course-applications.de-de-formal.hamlet b/templates/i18n/changelog/csv-course-applications.de-de-formal.hamlet deleted file mode 100644 index cf7d7ea8b..000000000 --- a/templates/i18n/changelog/csv-course-applications.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Bewertung von Kurs-Bewerbungen via CSV diff --git a/templates/i18n/changelog/csv-course-applications.en-eu.hamlet b/templates/i18n/changelog/csv-course-applications.en-eu.hamlet deleted file mode 100644 index 2df54f00a..000000000 --- a/templates/i18n/changelog/csv-course-applications.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Grading of course applications via CSV diff --git a/templates/i18n/changelog/csv-exam-participants.de-de-formal.hamlet b/templates/i18n/changelog/csv-exam-participants.de-de-formal.hamlet deleted file mode 100644 index 44a923429..000000000 --- a/templates/i18n/changelog/csv-exam-participants.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Import & Export von CSV-Dateien für Klausurteilnehmer:innen diff --git a/templates/i18n/changelog/csv-exam-participants.en-eu.hamlet b/templates/i18n/changelog/csv-exam-participants.en-eu.hamlet deleted file mode 100644 index b6cb997b3..000000000 --- a/templates/i18n/changelog/csv-exam-participants.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -CSV import & export of exam participants diff --git a/templates/i18n/changelog/csv-export-course-participants-features.de-de-formal.hamlet b/templates/i18n/changelog/csv-export-course-participants-features.de-de-formal.hamlet deleted file mode 100644 index 2cc16d8ce..000000000 --- a/templates/i18n/changelog/csv-export-course-participants-features.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -CSV-Export für Liste von Kursteilnehmer:innen exportiert nun optional alle Studiengangsdaten der Teilnehmer:innen diff --git a/templates/i18n/changelog/csv-export-course-participants-features.en-eu.hamlet b/templates/i18n/changelog/csv-export-course-participants-features.en-eu.hamlet deleted file mode 100644 index 86769d0e9..000000000 --- a/templates/i18n/changelog/csv-export-course-participants-features.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -CSV export of course participants now optionally includes all features of study. diff --git a/templates/i18n/changelog/csv-export-course-participants-registered-tutorials.de-de-formal.hamlet b/templates/i18n/changelog/csv-export-course-participants-registered-tutorials.de-de-formal.hamlet deleted file mode 100644 index 2e7f42e01..000000000 --- a/templates/i18n/changelog/csv-export-course-participants-registered-tutorials.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -CSV-Export für Liste von Kursteilnehmer:innen exportiert nun auch die angemeldeten Tutorien diff --git a/templates/i18n/changelog/csv-export-course-participants-registered-tutorials.en-eu.hamlet b/templates/i18n/changelog/csv-export-course-participants-registered-tutorials.en-eu.hamlet deleted file mode 100644 index 0fb3ec90d..000000000 --- a/templates/i18n/changelog/csv-export-course-participants-registered-tutorials.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -CSV export of course participants now includes registered tutorials. diff --git a/templates/i18n/changelog/csv-export-course-participants.de-de-formal.hamlet b/templates/i18n/changelog/csv-export-course-participants.de-de-formal.hamlet deleted file mode 100644 index d74255d1b..000000000 --- a/templates/i18n/changelog/csv-export-course-participants.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -CSV-Export für Liste von Kursteilnehmer:innen diff --git a/templates/i18n/changelog/csv-export-course-participants.en-eu.hamlet b/templates/i18n/changelog/csv-export-course-participants.en-eu.hamlet deleted file mode 100644 index e560d8e8e..000000000 --- a/templates/i18n/changelog/csv-export-course-participants.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -CSV export of course participants diff --git a/templates/i18n/changelog/csv-option-character-set.de-de-formal.hamlet b/templates/i18n/changelog/csv-option-character-set.de-de-formal.hamlet deleted file mode 100644 index 0c09c766e..000000000 --- a/templates/i18n/changelog/csv-option-character-set.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -CSV-Export-Option um den beim import und export verwendeten Zeichensatz einzustellen diff --git a/templates/i18n/changelog/csv-option-character-set.en-eu.hamlet b/templates/i18n/changelog/csv-option-character-set.en-eu.hamlet deleted file mode 100644 index 2a6b15fff..000000000 --- a/templates/i18n/changelog/csv-option-character-set.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Introduced CSV export option to set the character encoding used. diff --git a/templates/i18n/changelog/csv-option-timestamp.de-de-formal.hamlet b/templates/i18n/changelog/csv-option-timestamp.de-de-formal.hamlet deleted file mode 100644 index 89621ff98..000000000 --- a/templates/i18n/changelog/csv-option-timestamp.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Option um an die Namen aller heruntergeladenen CSV-Dateien einen Zeitstempel vorne anzuhängen diff --git a/templates/i18n/changelog/csv-option-timestamp.en-eu.hamlet b/templates/i18n/changelog/csv-option-timestamp.en-eu.hamlet deleted file mode 100644 index 35d3f02b1..000000000 --- a/templates/i18n/changelog/csv-option-timestamp.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Introduced option to timestamp all exported CSV files. diff --git a/templates/i18n/changelog/download-all-sheet-files-by-type.de-de-formal.hamlet b/templates/i18n/changelog/download-all-sheet-files-by-type.de-de-formal.hamlet deleted file mode 100644 index a8a62fdbb..000000000 --- a/templates/i18n/changelog/download-all-sheet-files-by-type.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Übungsblätter bieten nun Zip-Archive für alle veröffentlichte Dateien, bzw. Dateigruppen an diff --git a/templates/i18n/changelog/download-all-sheet-files-by-type.en-eu.hamlet b/templates/i18n/changelog/download-all-sheet-files-by-type.en-eu.hamlet deleted file mode 100644 index 779aa24e7..000000000 --- a/templates/i18n/changelog/download-all-sheet-files-by-type.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Download of all files for exercise sheets (by classification) as ZIP archives. diff --git a/templates/i18n/changelog/download-all-sheet-files.de-de-formal.hamlet b/templates/i18n/changelog/download-all-sheet-files.de-de-formal.hamlet deleted file mode 100644 index 8d44cca6d..000000000 --- a/templates/i18n/changelog/download-all-sheet-files.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Download von allen Dateien pro Kursmaterial/Übungsblatt diff --git a/templates/i18n/changelog/download-all-sheet-files.en-eu.hamlet b/templates/i18n/changelog/download-all-sheet-files.en-eu.hamlet deleted file mode 100644 index e6d4be330..000000000 --- a/templates/i18n/changelog/download-all-sheet-files.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Download of all files for course material/exercise sheets. diff --git a/templates/i18n/changelog/email-notifications.de-de-formal.hamlet b/templates/i18n/changelog/email-notifications.de-de-formal.hamlet deleted file mode 100644 index 34e1d5087..000000000 --- a/templates/i18n/changelog/email-notifications.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Benachrichtigungen per eMail für einige Ereignisse diff --git a/templates/i18n/changelog/email-notifications.en-eu.hamlet b/templates/i18n/changelog/email-notifications.en-eu.hamlet deleted file mode 100644 index b08b371b7..000000000 --- a/templates/i18n/changelog/email-notifications.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Email notifications for some events diff --git a/templates/i18n/changelog/english.de-de-formal.hamlet b/templates/i18n/changelog/english.de-de-formal.hamlet deleted file mode 100644 index acb10362c..000000000 --- a/templates/i18n/changelog/english.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Englische Übersetzung diff --git a/templates/i18n/changelog/english.en-eu.hamlet b/templates/i18n/changelog/english.en-eu.hamlet deleted file mode 100644 index 3bfbe94b5..000000000 --- a/templates/i18n/changelog/english.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -English translation diff --git a/templates/i18n/changelog/error-messages-for-table-item-vanish.de-de-formal.hamlet b/templates/i18n/changelog/error-messages-for-table-item-vanish.de-de-formal.hamlet deleted file mode 100644 index e17a6e29e..000000000 --- a/templates/i18n/changelog/error-messages-for-table-item-vanish.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Wenn zwischen Anzeige und Empfang eines Tabellen-Formulars Zeilen verschwinden wird nun eine sinnvolle Fehlermeldung angezeigt diff --git a/templates/i18n/changelog/error-messages-for-table-item-vanish.en-eu.hamlet b/templates/i18n/changelog/error-messages-for-table-item-vanish.en-eu.hamlet deleted file mode 100644 index 20da82a6c..000000000 --- a/templates/i18n/changelog/error-messages-for-table-item-vanish.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Proper error message for if entries vanish between generation of table form and submission. diff --git a/templates/i18n/changelog/estimate-allocated-course-capacity.de-de-formal.hamlet b/templates/i18n/changelog/estimate-allocated-course-capacity.de-de-formal.hamlet deleted file mode 100644 index 9af57a0a7..000000000 --- a/templates/i18n/changelog/estimate-allocated-course-capacity.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Abschätzung der durch Zentralanmeldung benötigten Kurskapazität diff --git a/templates/i18n/changelog/estimate-allocated-course-capacity.en-eu.hamlet b/templates/i18n/changelog/estimate-allocated-course-capacity.en-eu.hamlet deleted file mode 100644 index eebd08c14..000000000 --- a/templates/i18n/changelog/estimate-allocated-course-capacity.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Estimation of course capacity required to satisfy central allocations. diff --git a/templates/i18n/changelog/exam-achievement-participant-duplication.de-de-formal.hamlet b/templates/i18n/changelog/exam-achievement-participant-duplication.de-de-formal.hamlet deleted file mode 100644 index 979fa6ed5..000000000 --- a/templates/i18n/changelog/exam-achievement-participant-duplication.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Studierende tauchen in der Prüfungsleistungen-Tabelle nicht mehr mehrfach auf diff --git a/templates/i18n/changelog/exam-achievement-participant-duplication.en-eu.hamlet b/templates/i18n/changelog/exam-achievement-participant-duplication.en-eu.hamlet deleted file mode 100644 index 400937260..000000000 --- a/templates/i18n/changelog/exam-achievement-participant-duplication.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Participants are no longer duplicated in the exam achievements table. diff --git a/templates/i18n/changelog/exam-additional-schools.de-de-formal.hamlet b/templates/i18n/changelog/exam-additional-schools.de-de-formal.hamlet deleted file mode 100644 index f4969f2ab..000000000 --- a/templates/i18n/changelog/exam-additional-schools.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Mit Kursen assoziierte Prüfungen können nun auch weitere Institute angeben, die vollen Zugriff auf die Prüfungsleistungen erhalten diff --git a/templates/i18n/changelog/exam-additional-schools.en-eu.hamlet b/templates/i18n/changelog/exam-additional-schools.en-eu.hamlet deleted file mode 100644 index 76a16367b..000000000 --- a/templates/i18n/changelog/exam-additional-schools.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Exams associated with courses may now also specify additional departments that then have full access to exam achievements. diff --git a/templates/i18n/changelog/exam-automatic-boni.de-de-formal.hamlet b/templates/i18n/changelog/exam-automatic-boni.de-de-formal.hamlet deleted file mode 100644 index d5767c0bc..000000000 --- a/templates/i18n/changelog/exam-automatic-boni.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Automatische Berechnung von Prufüngsboni diff --git a/templates/i18n/changelog/exam-automatic-boni.en-eu.hamlet b/templates/i18n/changelog/exam-automatic-boni.en-eu.hamlet deleted file mode 100644 index 4aaace341..000000000 --- a/templates/i18n/changelog/exam-automatic-boni.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Automatic computation of exam boni. diff --git a/templates/i18n/changelog/exam-automatic-results.de-de-formal.hamlet b/templates/i18n/changelog/exam-automatic-results.de-de-formal.hamlet deleted file mode 100644 index 6b2681d6e..000000000 --- a/templates/i18n/changelog/exam-automatic-results.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Automatische Berechnung von Prüfungsleistungen diff --git a/templates/i18n/changelog/exam-automatic-results.en-eu.hamlet b/templates/i18n/changelog/exam-automatic-results.en-eu.hamlet deleted file mode 100644 index b21d5c347..000000000 --- a/templates/i18n/changelog/exam-automatic-results.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Automatic computation of exam results. diff --git a/templates/i18n/changelog/exam-automatic-room-distribution-better-rules-display.de-de-formal.hamlet b/templates/i18n/changelog/exam-automatic-room-distribution-better-rules-display.de-de-formal.hamlet deleted file mode 100644 index 139efb8c8..000000000 --- a/templates/i18n/changelog/exam-automatic-room-distribution-better-rules-display.de-de-formal.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen ,Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Verbesserung bei der Darstellung von Zuteilungsregeln nach der # -automatischen Verteilung von Klausurteilnehmer:innen diff --git a/templates/i18n/changelog/exam-automatic-room-distribution-better-rules-display.en-eu.hamlet b/templates/i18n/changelog/exam-automatic-room-distribution-better-rules-display.en-eu.hamlet deleted file mode 100644 index 3bb3569df..000000000 --- a/templates/i18n/changelog/exam-automatic-room-distribution-better-rules-display.en-eu.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen ,Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Improvements in display of assignment rules after automated # -distribution of exam participants. diff --git a/templates/i18n/changelog/exam-automatic-room-distribution-respect-size.de-de-formal.hamlet b/templates/i18n/changelog/exam-automatic-room-distribution-respect-size.de-de-formal.hamlet deleted file mode 100644 index 241c52bca..000000000 --- a/templates/i18n/changelog/exam-automatic-room-distribution-respect-size.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Diverse Verbesserungen an der automatischen Zuteilung von Klausurteilnehmer:innen auf Termine/Räume diff --git a/templates/i18n/changelog/exam-automatic-room-distribution-respect-size.en-eu.hamlet b/templates/i18n/changelog/exam-automatic-room-distribution-respect-size.en-eu.hamlet deleted file mode 100644 index 1b5be92d9..000000000 --- a/templates/i18n/changelog/exam-automatic-room-distribution-respect-size.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Several improvements for the automated distribution of exam participants to occurrences/rooms. diff --git a/templates/i18n/changelog/exam-automatic-room-distribution-unrestricted-rooms.de-de-formal.hamlet b/templates/i18n/changelog/exam-automatic-room-distribution-unrestricted-rooms.de-de-formal.hamlet deleted file mode 100644 index 58718c253..000000000 --- a/templates/i18n/changelog/exam-automatic-room-distribution-unrestricted-rooms.de-de-formal.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros ,Wolfgang Witt -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Erlaube unbeschränkte Räume bei der # -automatischen Verteilung von Klausurteilnehmer:innen diff --git a/templates/i18n/changelog/exam-automatic-room-distribution-unrestricted-rooms.en-eu.hamlet b/templates/i18n/changelog/exam-automatic-room-distribution-unrestricted-rooms.en-eu.hamlet deleted file mode 100644 index 7cf63e3b8..000000000 --- a/templates/i18n/changelog/exam-automatic-room-distribution-unrestricted-rooms.en-eu.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel ,Wolfgang Witt -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Allow unrestricted rooms in the automated # -distribution of exam participants. diff --git a/templates/i18n/changelog/exam-automatic-room-distribution.de-de-formal.hamlet b/templates/i18n/changelog/exam-automatic-room-distribution.de-de-formal.hamlet deleted file mode 100644 index ebc17a95c..000000000 --- a/templates/i18n/changelog/exam-automatic-room-distribution.de-de-formal.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen ,Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Automatische Verteilung von Klausurteilnehmer:innen auf # -Termine/Räume diff --git a/templates/i18n/changelog/exam-automatic-room-distribution.en-eu.hamlet b/templates/i18n/changelog/exam-automatic-room-distribution.en-eu.hamlet deleted file mode 100644 index 57e148ee3..000000000 --- a/templates/i18n/changelog/exam-automatic-room-distribution.en-eu.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen ,Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Automated distribution of exam participants over configured # -occurrences/rooms. diff --git a/templates/i18n/changelog/exam-closure.de-de-formal.hamlet b/templates/i18n/changelog/exam-closure.de-de-formal.hamlet deleted file mode 100644 index bdf011d9a..000000000 --- a/templates/i18n/changelog/exam-closure.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Abschluss von Klausuren (d.h. Melden der Prüfungsleistungen an die Prüfungsverwalter) jetzt als Button, statt als voreingestellter Zeitpunkt diff --git a/templates/i18n/changelog/exam-closure.en-eu.hamlet b/templates/i18n/changelog/exam-closure.en-eu.hamlet deleted file mode 100644 index 3e2333446..000000000 --- a/templates/i18n/changelog/exam-closure.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Closure of exams (i.e. notification of relevant exam offices) is now a button instead of a predetermined time. diff --git a/templates/i18n/changelog/exam-correct.de-de-formal.hamlet b/templates/i18n/changelog/exam-correct.de-de-formal.hamlet deleted file mode 100644 index cce0723bd..000000000 --- a/templates/i18n/changelog/exam-correct.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Oberfläche zum schnellen Eintragen von Prüfungsergebnissen diff --git a/templates/i18n/changelog/exam-correct.en-eu.hamlet b/templates/i18n/changelog/exam-correct.en-eu.hamlet deleted file mode 100644 index afdfeb064..000000000 --- a/templates/i18n/changelog/exam-correct.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Interface for quick entering of exam achievements diff --git a/templates/i18n/changelog/exam-design.de-de-formal.hamlet b/templates/i18n/changelog/exam-design.de-de-formal.hamlet deleted file mode 100644 index b78c8d7c5..000000000 --- a/templates/i18n/changelog/exam-design.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Es kann nun die Ausgestaltung von Prüfungen angegeben werden. diff --git a/templates/i18n/changelog/exam-design.en-eu.hamlet b/templates/i18n/changelog/exam-design.en-eu.hamlet deleted file mode 100644 index 75aed9179..000000000 --- a/templates/i18n/changelog/exam-design.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Exam design can now be specified. diff --git a/templates/i18n/changelog/exam-finished-before-end.de-de-formal.hamlet b/templates/i18n/changelog/exam-finished-before-end.de-de-formal.hamlet deleted file mode 100644 index 58c3d71ef..000000000 --- a/templates/i18n/changelog/exam-finished-before-end.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Für die Einzelfälle in denen es sinnvoll ist, kann bei Prüfungen nun „_{MsgExamFinished}“ auch vor „_{MsgExamEnd}“ eingestellt werden. diff --git a/templates/i18n/changelog/exam-finished-before-end.en-eu.hamlet b/templates/i18n/changelog/exam-finished-before-end.en-eu.hamlet deleted file mode 100644 index 7a3f4a156..000000000 --- a/templates/i18n/changelog/exam-finished-before-end.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -For the rare cases in which it is sensible to do so, “_{MsgExamFinished}” can now be set to be before “_{MsgExamEnd}” for exams. diff --git a/templates/i18n/changelog/exam-grading-mode.de-de-formal.hamlet b/templates/i18n/changelog/exam-grading-mode.de-de-formal.hamlet deleted file mode 100644 index c9b333455..000000000 --- a/templates/i18n/changelog/exam-grading-mode.de-de-formal.hamlet +++ /dev/null @@ -1,9 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Prüfungen können nun angeben in welchem Format Leistungen # -eingetragen werden dürfen (Bestanden/Nicht Bestanden, # -Numerische Noten oder Gemischt) diff --git a/templates/i18n/changelog/exam-grading-mode.en-eu.hamlet b/templates/i18n/changelog/exam-grading-mode.en-eu.hamlet deleted file mode 100644 index 26b69fec8..000000000 --- a/templates/i18n/changelog/exam-grading-mode.en-eu.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen ,Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Exams may now specify in which format results are expected to # -entered (passed/failed, numeric grades, or mixed). diff --git a/templates/i18n/changelog/exam-office-exam-notification.de-de-formal.hamlet b/templates/i18n/changelog/exam-office-exam-notification.de-de-formal.hamlet deleted file mode 100644 index 2c49571c7..000000000 --- a/templates/i18n/changelog/exam-office-exam-notification.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -E-Mail-Benachrichtigungen an zuständige Prüfungsverwalter:innen bei Abschluss einer Klausur diff --git a/templates/i18n/changelog/exam-office-exam-notification.en-eu.hamlet b/templates/i18n/changelog/exam-office-exam-notification.en-eu.hamlet deleted file mode 100644 index d089064b2..000000000 --- a/templates/i18n/changelog/exam-office-exam-notification.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Email notifications to relevant exam offices when exams are closed. diff --git a/templates/i18n/changelog/exam-offices.de-de-formal.hamlet b/templates/i18n/changelog/exam-offices.de-de-formal.hamlet deleted file mode 100644 index e9e122352..000000000 --- a/templates/i18n/changelog/exam-offices.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Prüfungsverwaltung im System inkl. direkte Einsicht in relevante Prüfungsleistungen diff --git a/templates/i18n/changelog/exam-offices.en-eu.hamlet b/templates/i18n/changelog/exam-offices.en-eu.hamlet deleted file mode 100644 index 6f47c5bf8..000000000 --- a/templates/i18n/changelog/exam-offices.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Exam offices (including direct access to relevant exam achievements). diff --git a/templates/i18n/changelog/exam-sheets.de-de-formal.hamlet b/templates/i18n/changelog/exam-sheets.de-de-formal.hamlet deleted file mode 100644 index 54d275f3b..000000000 --- a/templates/i18n/changelog/exam-sheets.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Übungsblätter können nun „als Prüfungsaufgabe“ bewertet werden. diff --git a/templates/i18n/changelog/exam-sheets.en-eu.hamlet b/templates/i18n/changelog/exam-sheets.en-eu.hamlet deleted file mode 100644 index 4f1da9f9b..000000000 --- a/templates/i18n/changelog/exam-sheets.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Exercise sheets can now be rated “as an exam part”. diff --git a/templates/i18n/changelog/exam-staff.de-de-formal.hamlet b/templates/i18n/changelog/exam-staff.de-de-formal.hamlet deleted file mode 100644 index f29b78025..000000000 --- a/templates/i18n/changelog/exam-staff.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Mit Kursen assoziierte Prüfungen müssen nun auch verantwortliche Hochschullehrer:innen bzw. Prüfer:innen angeben diff --git a/templates/i18n/changelog/exam-staff.en-eu.hamlet b/templates/i18n/changelog/exam-staff.en-eu.hamlet deleted file mode 100644 index 51cc6f1c4..000000000 --- a/templates/i18n/changelog/exam-staff.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Exams associated with courses now also need to specify responsible university teachers/examiners. diff --git a/templates/i18n/changelog/exams.de-de-formal.hamlet b/templates/i18n/changelog/exams.de-de-formal.hamlet deleted file mode 100644 index e1ac3fe71..000000000 --- a/templates/i18n/changelog/exams.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Rudimentäre Unterstützung für Klausurbetrieb diff --git a/templates/i18n/changelog/exams.en-eu.hamlet b/templates/i18n/changelog/exams.en-eu.hamlet deleted file mode 100644 index 250a239cb..000000000 --- a/templates/i18n/changelog/exams.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Rudimentary support for exams diff --git a/templates/i18n/changelog/export-course-participants.de-de-formal.hamlet b/templates/i18n/changelog/export-course-participants.de-de-formal.hamlet deleted file mode 100644 index 255bb5aef..000000000 --- a/templates/i18n/changelog/export-course-participants.de-de-formal.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen ,Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Export von Listen von Kursteilnehmer:innen zur Durchführung von # -Kursumfragen diff --git a/templates/i18n/changelog/export-course-participants.en-eu.hamlet b/templates/i18n/changelog/export-course-participants.en-eu.hamlet deleted file mode 100644 index 94b935c40..000000000 --- a/templates/i18n/changelog/export-course-participants.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Export of lists of course participants. diff --git a/templates/i18n/changelog/external-exams.de-de-formal.hamlet b/templates/i18n/changelog/external-exams.de-de-formal.hamlet deleted file mode 100644 index 02d1d75c6..000000000 --- a/templates/i18n/changelog/external-exams.de-de-formal.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Eintragung von Ergebnissen für extern (nicht in Uni2work # -verwaltete) Klausuren zur Übermittlung an Prüfungsbeauftragte diff --git a/templates/i18n/changelog/external-exams.en-eu.hamlet b/templates/i18n/changelog/external-exams.en-eu.hamlet deleted file mode 100644 index 188449992..000000000 --- a/templates/i18n/changelog/external-exams.en-eu.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Support for uploading results of external exams (not managed # -within Uni2work). diff --git a/templates/i18n/changelog/faq.de-de-formal.hamlet b/templates/i18n/changelog/faq.de-de-formal.hamlet deleted file mode 100644 index 5aaca3ea9..000000000 --- a/templates/i18n/changelog/faq.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Häufig gestellte Fragen diff --git a/templates/i18n/changelog/faq.en-eu.hamlet b/templates/i18n/changelog/faq.en-eu.hamlet deleted file mode 100644 index 1fc8b706a..000000000 --- a/templates/i18n/changelog/faq.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Frequently asked questions diff --git a/templates/i18n/changelog/file-download-option.de-de-formal.hamlet b/templates/i18n/changelog/file-download-option.de-de-formal.hamlet deleted file mode 100644 index 883bdd7a2..000000000 --- a/templates/i18n/changelog/file-download-option.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Einführung einer Option, ob Dateien automatisch heruntergeladen werden sollen diff --git a/templates/i18n/changelog/file-download-option.en-eu.hamlet b/templates/i18n/changelog/file-download-option.en-eu.hamlet deleted file mode 100644 index ecc54dee8..000000000 --- a/templates/i18n/changelog/file-download-option.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Option whether files should be downloaded automatically. diff --git a/templates/i18n/changelog/fix-exam-bonus-all-sheets-bonus.de-de-formal.hamlet b/templates/i18n/changelog/fix-exam-bonus-all-sheets-bonus.de-de-formal.hamlet deleted file mode 100644 index b58e5ec76..000000000 --- a/templates/i18n/changelog/fix-exam-bonus-all-sheets-bonus.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Automatische Berechnung von Prüfungsboni führt nun nicht mehr zu einem Fehler, wenn alle Übungsblätter im Bonus-Modus sind. diff --git a/templates/i18n/changelog/fix-exam-bonus-all-sheets-bonus.en-eu.hamlet b/templates/i18n/changelog/fix-exam-bonus-all-sheets-bonus.en-eu.hamlet deleted file mode 100644 index d161ff7c6..000000000 --- a/templates/i18n/changelog/fix-exam-bonus-all-sheets-bonus.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Automatic calculation of exam bonuses now no longer causes an error if all exercise sheets are set to Bonus. diff --git a/templates/i18n/changelog/fix-personalised-sheet-files-keep.de-de-formal.hamlet b/templates/i18n/changelog/fix-personalised-sheet-files-keep.de-de-formal.hamlet deleted file mode 100644 index 1eea99c48..000000000 --- a/templates/i18n/changelog/fix-personalised-sheet-files-keep.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -„Bestehende Dateien behalten“ für personalisierte Angabe-Dateien funktioniert nun wie erwartet diff --git a/templates/i18n/changelog/fix-personalised-sheet-files-keep.en-eu.hamlet b/templates/i18n/changelog/fix-personalised-sheet-files-keep.en-eu.hamlet deleted file mode 100644 index a7ba3fdcd..000000000 --- a/templates/i18n/changelog/fix-personalised-sheet-files-keep.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -“Keep existing files” for personalised sheet files now works as expected diff --git a/templates/i18n/changelog/fix-sheet-bonus-rounding.de-de-formal.hamlet b/templates/i18n/changelog/fix-sheet-bonus-rounding.de-de-formal.hamlet deleted file mode 100644 index b686f56f4..000000000 --- a/templates/i18n/changelog/fix-sheet-bonus-rounding.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Bonuspunkte werden nun wieder korrekt gerundet diff --git a/templates/i18n/changelog/fix-sheet-bonus-rounding.en-eu.hamlet b/templates/i18n/changelog/fix-sheet-bonus-rounding.en-eu.hamlet deleted file mode 100644 index 664e271d0..000000000 --- a/templates/i18n/changelog/fix-sheet-bonus-rounding.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Exam bonus points are now rounded correctly again. diff --git a/templates/i18n/changelog/former-course-participants.de-de-formal.hamlet b/templates/i18n/changelog/former-course-participants.de-de-formal.hamlet deleted file mode 100644 index 1efe398e6..000000000 --- a/templates/i18n/changelog/former-course-participants.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Verwaltung von ehemaligen Kursteilnehmer:innen diff --git a/templates/i18n/changelog/former-course-participants.en-eu.hamlet b/templates/i18n/changelog/former-course-participants.en-eu.hamlet deleted file mode 100644 index 4d67a81a0..000000000 --- a/templates/i18n/changelog/former-course-participants.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Management of former course participants. diff --git a/templates/i18n/changelog/forms-times-reset.de-de-formal.hamlet b/templates/i18n/changelog/forms-times-reset.de-de-formal.hamlet deleted file mode 100644 index 2273205b9..000000000 --- a/templates/i18n/changelog/forms-times-reset.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Uhrzeiten werden beim Laden eines Formulars nichtmehr zurückgesetzt diff --git a/templates/i18n/changelog/forms-times-reset.en-eu.hamlet b/templates/i18n/changelog/forms-times-reset.en-eu.hamlet deleted file mode 100644 index d2891bb43..000000000 --- a/templates/i18n/changelog/forms-times-reset.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Times are no longer reset when loading a form. diff --git a/templates/i18n/changelog/fradrive-initial-release.de-de-formal.hamlet b/templates/i18n/changelog/fradrive-initial-release.de-de-formal.hamlet new file mode 100644 index 000000000..fee19fa41 --- /dev/null +++ b/templates/i18n/changelog/fradrive-initial-release.de-de-formal.hamlet @@ -0,0 +1,7 @@ +$newline never + +$# SPDX-FileCopyrightText: 2022 Steffen Jost +$# +$# SPDX-License-Identifier: AGPL-3.0-or-later + +Erste FRADrive Version für die produktive Instanz diff --git a/templates/i18n/changelog/fradrive-initial-release.en-eu.hamlet b/templates/i18n/changelog/fradrive-initial-release.en-eu.hamlet new file mode 100644 index 000000000..ff780069f --- /dev/null +++ b/templates/i18n/changelog/fradrive-initial-release.en-eu.hamlet @@ -0,0 +1,7 @@ +$newline never + +$# SPDX-FileCopyrightText: 2022 Steffen Jost +$# +$# SPDX-License-Identifier: AGPL-3.0-or-later + +First release of FRADrive for production diff --git a/templates/i18n/changelog/haskell-campus-login.de-de-formal.hamlet b/templates/i18n/changelog/haskell-campus-login.de-de-formal.hamlet deleted file mode 100644 index 6a743d868..000000000 --- a/templates/i18n/changelog/haskell-campus-login.de-de-formal.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Verbesserter Campus-Login
- (Ersatz einer C-Bibliothek mit undokumentierter Abhängigkeit durch selbst entwickelten Haskell-Code erlaubt nun auch Umlaute) diff --git a/templates/i18n/changelog/haskell-campus-login.en-eu.hamlet b/templates/i18n/changelog/haskell-campus-login.en-eu.hamlet deleted file mode 100644 index b9cd74fbd..000000000 --- a/templates/i18n/changelog/haskell-campus-login.en-eu.hamlet +++ /dev/null @@ -1,9 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Improved campus login -
-(Replacement of a C-library with undocumented runtime dependencies with a new haskell-library now supports special characters) diff --git a/templates/i18n/changelog/hidden-rooms.de-de-formal.hamlet b/templates/i18n/changelog/hidden-rooms.de-de-formal.hamlet deleted file mode 100644 index c6794f7a5..000000000 --- a/templates/i18n/changelog/hidden-rooms.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Räume für Tutorien, Kurstermine, Klausurtermine, etc. können nun als „Versteckt“ markiert werden, sie werden dann nur Teilnehmer:innen des Tutoriums, des Kurses bzw. des Klausurtermins angezeigt. diff --git a/templates/i18n/changelog/hidden-rooms.en-eu.hamlet b/templates/i18n/changelog/hidden-rooms.en-eu.hamlet deleted file mode 100644 index 5dc264a8e..000000000 --- a/templates/i18n/changelog/hidden-rooms.en-eu.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Rooms for tutorials, course events, exam occurrences, etc. can now be marked “hidden”. # -They are then only displayed to participants of the tutorial, the course, or the exam occurrence respectively. diff --git a/templates/i18n/changelog/hide-system-messages.de-de-formal.hamlet b/templates/i18n/changelog/hide-system-messages.de-de-formal.hamlet deleted file mode 100644 index 78ba13499..000000000 --- a/templates/i18n/changelog/hide-system-messages.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Verstecken von Systemnachrichten auf "Aktuelles" diff --git a/templates/i18n/changelog/hide-system-messages.en-eu.hamlet b/templates/i18n/changelog/hide-system-messages.en-eu.hamlet deleted file mode 100644 index 8e96f4850..000000000 --- a/templates/i18n/changelog/hide-system-messages.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Hiding of system messages on "News" diff --git a/templates/i18n/changelog/honor-room-hidden.de-de-formal.hamlet b/templates/i18n/changelog/honor-room-hidden.de-de-formal.hamlet deleted file mode 100644 index 81cbda49f..000000000 --- a/templates/i18n/changelog/honor-room-hidden.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -„Raum nur für Teilnehmer:innen“ u.Ä. wird nun korrekt beachtet. diff --git a/templates/i18n/changelog/honor-room-hidden.en-eu.hamlet b/templates/i18n/changelog/honor-room-hidden.en-eu.hamlet deleted file mode 100644 index 973cf2d20..000000000 --- a/templates/i18n/changelog/honor-room-hidden.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -“Room only for participants” and similiar settings are now honored. diff --git a/templates/i18n/changelog/i18n.de-de-formal.hamlet b/templates/i18n/changelog/i18n.de-de-formal.hamlet deleted file mode 100644 index 921f03b45..000000000 --- a/templates/i18n/changelog/i18n.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Unterstützung für Internationalisierung diff --git a/templates/i18n/changelog/i18n.en-eu.hamlet b/templates/i18n/changelog/i18n.en-eu.hamlet deleted file mode 100644 index c32488a7e..000000000 --- a/templates/i18n/changelog/i18n.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Support for internationalisation diff --git a/templates/i18n/changelog/improved-submittor-ui.de-de-formal.hamlet b/templates/i18n/changelog/improved-submittor-ui.de-de-formal.hamlet deleted file mode 100644 index c721c9813..000000000 --- a/templates/i18n/changelog/improved-submittor-ui.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Besseres Interface zum Einstellen von Abgebenden diff --git a/templates/i18n/changelog/improved-submittor-ui.en-eu.hamlet b/templates/i18n/changelog/improved-submittor-ui.en-eu.hamlet deleted file mode 100644 index 49575c1e8..000000000 --- a/templates/i18n/changelog/improved-submittor-ui.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Improved interface for configuring submittors diff --git a/templates/i18n/changelog/improvements-for-correctors.de-de-formal.hamlet b/templates/i18n/changelog/improvements-for-correctors.de-de-formal.hamlet deleted file mode 100644 index 180f5c356..000000000 --- a/templates/i18n/changelog/improvements-for-correctors.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Verschiedene Verbesserungen für Korrektor:innen diff --git a/templates/i18n/changelog/improvements-for-correctors.en-eu.hamlet b/templates/i18n/changelog/improvements-for-correctors.en-eu.hamlet deleted file mode 100644 index a7287fcc3..000000000 --- a/templates/i18n/changelog/improvements-for-correctors.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Multiple improvements for correctors diff --git a/templates/i18n/changelog/ldap-ad-errors.de-de-formal.hamlet b/templates/i18n/changelog/ldap-ad-errors.de-de-formal.hamlet deleted file mode 100644 index 43a573f56..000000000 --- a/templates/i18n/changelog/ldap-ad-errors.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Bessere Fehlermeldungen bei fehlgeschlagenem Login diff --git a/templates/i18n/changelog/ldap-ad-errors.en-eu.hamlet b/templates/i18n/changelog/ldap-ad-errors.en-eu.hamlet deleted file mode 100644 index 5736f84cd..000000000 --- a/templates/i18n/changelog/ldap-ad-errors.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Better error messages on failed login. diff --git a/templates/i18n/changelog/lmu-internal-fields.de-de-formal.hamlet b/templates/i18n/changelog/lmu-internal-fields.de-de-formal.hamlet deleted file mode 100644 index f7f322675..000000000 --- a/templates/i18n/changelog/lmu-internal-fields.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -nterstützung für LMU-lokale Studiengänge diff --git a/templates/i18n/changelog/lmu-internal-fields.en-eu.hamlet b/templates/i18n/changelog/lmu-internal-fields.en-eu.hamlet deleted file mode 100644 index 9ba0e9054..000000000 --- a/templates/i18n/changelog/lmu-internal-fields.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Support for LMU-internal terms of study diff --git a/templates/i18n/changelog/markdown-emails.de-de-formal.hamlet b/templates/i18n/changelog/markdown-emails.de-de-formal.hamlet deleted file mode 100644 index 5289973af..000000000 --- a/templates/i18n/changelog/markdown-emails.de-de-formal.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Alle ausgehenden HTML E-Mails haben nun auch einen # -Markdown-Teil diff --git a/templates/i18n/changelog/markdown-emails.en-eu.hamlet b/templates/i18n/changelog/markdown-emails.en-eu.hamlet deleted file mode 100644 index 84df10fac..000000000 --- a/templates/i18n/changelog/markdown-emails.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -All HTML-Emails now include a Markdown version. diff --git a/templates/i18n/changelog/markdown-html-input.de-de-formal.hamlet b/templates/i18n/changelog/markdown-html-input.de-de-formal.hamlet deleted file mode 100644 index b25f45d55..000000000 --- a/templates/i18n/changelog/markdown-html-input.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Alle HTML-Eingabefelder akzeptieren nun stattdessen Markdown diff --git a/templates/i18n/changelog/markdown-html-input.en-eu.hamlet b/templates/i18n/changelog/markdown-html-input.en-eu.hamlet deleted file mode 100644 index 2bb99797f..000000000 --- a/templates/i18n/changelog/markdown-html-input.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -All HTML-inputs now accept Markdown instead. diff --git a/templates/i18n/changelog/materials-video-streaming.de-de-formal.hamlet b/templates/i18n/changelog/materials-video-streaming.de-de-formal.hamlet deleted file mode 100644 index 7c8a3753e..000000000 --- a/templates/i18n/changelog/materials-video-streaming.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Als Kursmaterial hochgeladene Videos können jetzt direkt in Uni2work gestreamt, statt nur komplett heruntergeladen, werden. diff --git a/templates/i18n/changelog/materials-video-streaming.en-eu.hamlet b/templates/i18n/changelog/materials-video-streaming.en-eu.hamlet deleted file mode 100644 index 806032177..000000000 --- a/templates/i18n/changelog/materials-video-streaming.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Videos uploaded as course material can now be streamed directly in Uni2work. Previously they could only be downloaded completely. diff --git a/templates/i18n/changelog/non-anonymised-correction.de-de-formal.hamlet b/templates/i18n/changelog/non-anonymised-correction.de-de-formal.hamlet deleted file mode 100644 index afee5fa4c..000000000 --- a/templates/i18n/changelog/non-anonymised-correction.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Nicht-anonymisierte Korrektur von Übungsblatt-Abgaben diff --git a/templates/i18n/changelog/non-anonymised-correction.en-eu.hamlet b/templates/i18n/changelog/non-anonymised-correction.en-eu.hamlet deleted file mode 100644 index 8babda904..000000000 --- a/templates/i18n/changelog/non-anonymised-correction.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Non-anonymised correction of sheet submissions. diff --git a/templates/i18n/changelog/notification-course-participant-via-admin.de-de-formal.hamlet b/templates/i18n/changelog/notification-course-participant-via-admin.de-de-formal.hamlet deleted file mode 100644 index a843ca318..000000000 --- a/templates/i18n/changelog/notification-course-participant-via-admin.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Benachrichtigung bei nicht-eigenständiger Anmeldung zu einem Kurs diff --git a/templates/i18n/changelog/notification-course-participant-via-admin.en-eu.hamlet b/templates/i18n/changelog/notification-course-participant-via-admin.en-eu.hamlet deleted file mode 100644 index 4133e3337..000000000 --- a/templates/i18n/changelog/notification-course-participant-via-admin.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Users are notified if they are enrolled in courses by administrators. diff --git a/templates/i18n/changelog/notification-exam-registration.de-de-formal.hamlet b/templates/i18n/changelog/notification-exam-registration.de-de-formal.hamlet deleted file mode 100644 index d7c3a94b2..000000000 --- a/templates/i18n/changelog/notification-exam-registration.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Benachrichtigungen bzgl. Klausur An- und Abmeldung diff --git a/templates/i18n/changelog/notification-exam-registration.en-eu.hamlet b/templates/i18n/changelog/notification-exam-registration.en-eu.hamlet deleted file mode 100644 index 68fb4911e..000000000 --- a/templates/i18n/changelog/notification-exam-registration.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Notifications for exam registration and deregistration diff --git a/templates/i18n/changelog/notification-submission-changed.de-de-formal.hamlet b/templates/i18n/changelog/notification-submission-changed.de-de-formal.hamlet deleted file mode 100644 index aad552d1b..000000000 --- a/templates/i18n/changelog/notification-submission-changed.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Benachrichtigungen bei Änderungen an Übungsblatt-Abgaben diff --git a/templates/i18n/changelog/notification-submission-changed.en-eu.hamlet b/templates/i18n/changelog/notification-submission-changed.en-eu.hamlet deleted file mode 100644 index 375176695..000000000 --- a/templates/i18n/changelog/notification-submission-changed.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Notifications when exercise sheet submissions are changed. diff --git a/templates/i18n/changelog/passing-by-points-works.de-de-formal.hamlet b/templates/i18n/changelog/passing-by-points-works.de-de-formal.hamlet deleted file mode 100644 index 2e49f10bf..000000000 --- a/templates/i18n/changelog/passing-by-points-works.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Übungsblätter im "bestehen nach Punkten"-Modus werden wieder korrekt gespeichert diff --git a/templates/i18n/changelog/passing-by-points-works.en-eu.hamlet b/templates/i18n/changelog/passing-by-points-works.en-eu.hamlet deleted file mode 100644 index 6f21fa481..000000000 --- a/templates/i18n/changelog/passing-by-points-works.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Exercise sheets in "passing by points"-mode now saved correctly again. diff --git a/templates/i18n/changelog/personal-information.de-de-formal.hamlet b/templates/i18n/changelog/personal-information.de-de-formal.hamlet deleted file mode 100644 index 0a51a68e3..000000000 --- a/templates/i18n/changelog/personal-information.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -User Data zeigt nun alle momentan gespeicherten Datensätze an diff --git a/templates/i18n/changelog/personal-information.en-eu.hamlet b/templates/i18n/changelog/personal-information.en-eu.hamlet deleted file mode 100644 index 57e52efe0..000000000 --- a/templates/i18n/changelog/personal-information.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Personal information now shows all currently saved data. diff --git a/templates/i18n/changelog/personalised-sheet-files-seeds.de-de-formal.hamlet b/templates/i18n/changelog/personalised-sheet-files-seeds.de-de-formal.hamlet deleted file mode 100644 index 6fb78517f..000000000 --- a/templates/i18n/changelog/personalised-sheet-files-seeds.de-de-formal.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - - -Die Metainformationsdateien, die zum Anlegen von personalisierten Übungsblattdateien erzeugt werden, enthalten nun einen Seed für Pseudozufallsgeneratoren. diff --git a/templates/i18n/changelog/personalised-sheet-files-seeds.en-eu.hamlet b/templates/i18n/changelog/personalised-sheet-files-seeds.en-eu.hamlet deleted file mode 100644 index 28381a846..000000000 --- a/templates/i18n/changelog/personalised-sheet-files-seeds.en-eu.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - - -Metadata files created when adding personalised files to exercise sheets now contain a seed for pseudorandom generators. diff --git a/templates/i18n/changelog/personalised-sheet-files.de-de-formal.hamlet b/templates/i18n/changelog/personalised-sheet-files.de-de-formal.hamlet deleted file mode 100644 index fea9c32c4..000000000 --- a/templates/i18n/changelog/personalised-sheet-files.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kursverwalter:innen können pro Teilnehmer:in personalisierte Übungsblatt-Dateien hinterlegen. diff --git a/templates/i18n/changelog/personalised-sheet-files.en-eu.hamlet b/templates/i18n/changelog/personalised-sheet-files.en-eu.hamlet deleted file mode 100644 index 9031c12c6..000000000 --- a/templates/i18n/changelog/personalised-sheet-files.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Course administrators can now assign personalised exercise sheet files to course participants. diff --git a/templates/i18n/changelog/registered-submission-groups.de-de-formal.hamlet b/templates/i18n/changelog/registered-submission-groups.de-de-formal.hamlet deleted file mode 100644 index c5fb5ceab..000000000 --- a/templates/i18n/changelog/registered-submission-groups.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Registrierte/Feste Abgabegruppen diff --git a/templates/i18n/changelog/registered-submission-groups.en-eu.hamlet b/templates/i18n/changelog/registered-submission-groups.en-eu.hamlet deleted file mode 100644 index 0bc59e7de..000000000 --- a/templates/i18n/changelog/registered-submission-groups.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Registered submission groups diff --git a/templates/i18n/changelog/restrict-submission-file-download-by-exam.de-de-formal.hamlet b/templates/i18n/changelog/restrict-submission-file-download-by-exam.de-de-formal.hamlet deleted file mode 100644 index 33bbf1e27..000000000 --- a/templates/i18n/changelog/restrict-submission-file-download-by-exam.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Beim Herunterladen von personalisierten Übungsblatt-Dateien kann der Download nun auf jene Teilnehmer:innen eingeschränkt werden, die auch für eine bestimmte Prüfung registriert sind. diff --git a/templates/i18n/changelog/restrict-submission-file-download-by-exam.en-eu.hamlet b/templates/i18n/changelog/restrict-submission-file-download-by-exam.en-eu.hamlet deleted file mode 100644 index fc9b3a3da..000000000 --- a/templates/i18n/changelog/restrict-submission-file-download-by-exam.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -When downloading personalised exercise sheet files, the download can now be restricted to only those participants, who are also registered for a certain exam. diff --git a/templates/i18n/changelog/reworked-automatic-correction-distribution.de-de-formal.hamlet b/templates/i18n/changelog/reworked-automatic-correction-distribution.de-de-formal.hamlet deleted file mode 100644 index a2f365895..000000000 --- a/templates/i18n/changelog/reworked-automatic-correction-distribution.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Komplett überarbeitete Funktionalität zur automatischen Verteilung von Korrekturen diff --git a/templates/i18n/changelog/reworked-automatic-correction-distribution.en-eu.hamlet b/templates/i18n/changelog/reworked-automatic-correction-distribution.en-eu.hamlet deleted file mode 100644 index fa039188e..000000000 --- a/templates/i18n/changelog/reworked-automatic-correction-distribution.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Completely reworked automatic distribution of corrections. diff --git a/templates/i18n/changelog/reworked-navigation.de-de-formal.hamlet b/templates/i18n/changelog/reworked-navigation.de-de-formal.hamlet deleted file mode 100644 index 1cb8ace25..000000000 --- a/templates/i18n/changelog/reworked-navigation.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Überarbeitete Navigation diff --git a/templates/i18n/changelog/reworked-navigation.en-eu.hamlet b/templates/i18n/changelog/reworked-navigation.en-eu.hamlet deleted file mode 100644 index 04e9f3b6c..000000000 --- a/templates/i18n/changelog/reworked-navigation.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Reworked navigation diff --git a/templates/i18n/changelog/room-references.de-de-formal.hamlet b/templates/i18n/changelog/room-references.de-de-formal.hamlet deleted file mode 100644 index 875243162..000000000 --- a/templates/i18n/changelog/room-references.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Räume für Tutorien, Kurstermine, etc. können nun auch als Link+Anweisungen angegeben werden. diff --git a/templates/i18n/changelog/room-references.en-eu.hamlet b/templates/i18n/changelog/room-references.en-eu.hamlet deleted file mode 100644 index 6873ed5a0..000000000 --- a/templates/i18n/changelog/room-references.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Rooms for tutorials, course events, etc. can now also be specified as a link plus instructions. diff --git a/templates/i18n/changelog/school-workflows.de-de-formal.hamlet b/templates/i18n/changelog/school-workflows.de-de-formal.hamlet deleted file mode 100644 index 179a7f82a..000000000 --- a/templates/i18n/changelog/school-workflows.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Erste Tests von Workflows diff --git a/templates/i18n/changelog/school-workflows.en-eu.hamlet b/templates/i18n/changelog/school-workflows.en-eu.hamlet deleted file mode 100644 index 75e9210d0..000000000 --- a/templates/i18n/changelog/school-workflows.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -First workflow tests diff --git a/templates/i18n/changelog/server-side-sessions.de-de-formal.hamlet b/templates/i18n/changelog/server-side-sessions.de-de-formal.hamlet deleted file mode 100644 index 777d8d9b1..000000000 --- a/templates/i18n/changelog/server-side-sessions.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Umstieg auf Serverseitige Sessions diff --git a/templates/i18n/changelog/server-side-sessions.en-eu.hamlet b/templates/i18n/changelog/server-side-sessions.en-eu.hamlet deleted file mode 100644 index 026bd7f37..000000000 --- a/templates/i18n/changelog/server-side-sessions.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Switch to server-side sessions diff --git a/templates/i18n/changelog/sheet-pass-always.de-de-formal.hamlet b/templates/i18n/changelog/sheet-pass-always.de-de-formal.hamlet deleted file mode 100644 index 71b102343..000000000 --- a/templates/i18n/changelog/sheet-pass-always.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Bewertungsmodus für Übungsblätter „Automatisch bestanden, wenn korrigiert“ diff --git a/templates/i18n/changelog/sheet-pass-always.en-eu.hamlet b/templates/i18n/changelog/sheet-pass-always.en-eu.hamlet deleted file mode 100644 index e1f7b1181..000000000 --- a/templates/i18n/changelog/sheet-pass-always.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Grading mode for exercise sheets “Automatically passed when corrected”. diff --git a/templates/i18n/changelog/sheet-specific-files.de-de-formal.hamlet b/templates/i18n/changelog/sheet-specific-files.de-de-formal.hamlet deleted file mode 100644 index 01ae89724..000000000 --- a/templates/i18n/changelog/sheet-specific-files.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Abgaben können bestimmte Dateinamen und Endungen erzwingen diff --git a/templates/i18n/changelog/sheet-specific-files.en-eu.hamlet b/templates/i18n/changelog/sheet-specific-files.en-eu.hamlet deleted file mode 100644 index abc6742b8..000000000 --- a/templates/i18n/changelog/sheet-specific-files.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Exercise sheets can enforce certain file names and extensions. diff --git a/templates/i18n/changelog/sheets-no-submission-and-zip-control.de-de-formal.hamlet b/templates/i18n/changelog/sheets-no-submission-and-zip-control.de-de-formal.hamlet deleted file mode 100644 index c7ecc4675..000000000 --- a/templates/i18n/changelog/sheets-no-submission-and-zip-control.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Übungsblätter können Abgabe von Dateien verbieten und angeben ob ZIP-Archive entpackt werden sollen diff --git a/templates/i18n/changelog/sheets-no-submission-and-zip-control.en-eu.hamlet b/templates/i18n/changelog/sheets-no-submission-and-zip-control.en-eu.hamlet deleted file mode 100644 index 2de07a689..000000000 --- a/templates/i18n/changelog/sheets-no-submission-and-zip-control.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Exercise sheets may prohibit submission of files and determine whether ZIP archives should be unpacked automatically. diff --git a/templates/i18n/changelog/smart-correction-distribution.de-de-formal.hamlet b/templates/i18n/changelog/smart-correction-distribution.de-de-formal.hamlet deleted file mode 100644 index c87d8a391..000000000 --- a/templates/i18n/changelog/smart-correction-distribution.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Intelligente Verteilung von Abgaben auf Korrektor:innen (z.B. bei Krankheit) diff --git a/templates/i18n/changelog/smart-correction-distribution.en-eu.hamlet b/templates/i18n/changelog/smart-correction-distribution.en-eu.hamlet deleted file mode 100644 index e1d604bae..000000000 --- a/templates/i18n/changelog/smart-correction-distribution.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Smart distribution of corrections among correctors (e.g. when some are sick) diff --git a/templates/i18n/changelog/stored-markup.de-de-formal.hamlet b/templates/i18n/changelog/stored-markup.de-de-formal.hamlet deleted file mode 100644 index dd8dcd78f..000000000 --- a/templates/i18n/changelog/stored-markup.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Html-Felder speichern nun den genauen Markdown-Eingabetext, sodass erneutes Editieren nicht mehr zu verändertem oder invaliden Markup führen sollte. diff --git a/templates/i18n/changelog/stored-markup.en-eu.hamlet b/templates/i18n/changelog/stored-markup.en-eu.hamlet deleted file mode 100644 index 7e660abe2..000000000 --- a/templates/i18n/changelog/stored-markup.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Html fields now store the exact markdown input. Therefore repeated editing should no longer result in changed or invalid markup. diff --git a/templates/i18n/changelog/study-features.de-de-formal.hamlet b/templates/i18n/changelog/study-features.de-de-formal.hamlet deleted file mode 100644 index ea5eba890..000000000 --- a/templates/i18n/changelog/study-features.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Erfassung Studiengangsdaten diff --git a/templates/i18n/changelog/study-features.en-eu.hamlet b/templates/i18n/changelog/study-features.en-eu.hamlet deleted file mode 100644 index 75d489f4e..000000000 --- a/templates/i18n/changelog/study-features.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Features of study diff --git a/templates/i18n/changelog/submission-only-exam-registered.de-de-formal.hamlet b/templates/i18n/changelog/submission-only-exam-registered.de-de-formal.hamlet deleted file mode 100644 index 8d9a6f4ba..000000000 --- a/templates/i18n/changelog/submission-only-exam-registered.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Abgabe und Download von einzelnen Übungsblättern kann auf Prüfungsteilnehmer:innen beschränkt werden. diff --git a/templates/i18n/changelog/submission-only-exam-registered.en-eu.hamlet b/templates/i18n/changelog/submission-only-exam-registered.en-eu.hamlet deleted file mode 100644 index 69fc6075f..000000000 --- a/templates/i18n/changelog/submission-only-exam-registered.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Submission for and download of exercise sheets may be restricted to participants who are registered for an exam. diff --git a/templates/i18n/changelog/support-widget.de-de-formal.hamlet b/templates/i18n/changelog/support-widget.de-de-formal.hamlet deleted file mode 100644 index 0f3a5245e..000000000 --- a/templates/i18n/changelog/support-widget.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Hilfe Widget diff --git a/templates/i18n/changelog/support-widget.en-eu.hamlet b/templates/i18n/changelog/support-widget.en-eu.hamlet deleted file mode 100644 index bc699ad64..000000000 --- a/templates/i18n/changelog/support-widget.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Support widget diff --git a/templates/i18n/changelog/table-forms-work-after-ajax.de-de-formal.hamlet b/templates/i18n/changelog/table-forms-work-after-ajax.de-de-formal.hamlet deleted file mode 100644 index dd6993a7f..000000000 --- a/templates/i18n/changelog/table-forms-work-after-ajax.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Formulare innerhalb von Tabellen funktionieren nun auch nach Javascript-Seitenwechsel oder Ändern der Sortierung diff --git a/templates/i18n/changelog/table-forms-work-after-ajax.en-eu.hamlet b/templates/i18n/changelog/table-forms-work-after-ajax.en-eu.hamlet deleted file mode 100644 index b290a9175..000000000 --- a/templates/i18n/changelog/table-forms-work-after-ajax.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Table forms now work after JavaScript page changes and changes in sorting. diff --git a/templates/i18n/changelog/table-summaries.de-de-formal.hamlet b/templates/i18n/changelog/table-summaries.de-de-formal.hamlet deleted file mode 100644 index 979e9350a..000000000 --- a/templates/i18n/changelog/table-summaries.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Unterstützung von Tabellenzusammenfassungen, z.B. Punktsummen diff --git a/templates/i18n/changelog/table-summaries.en-eu.hamlet b/templates/i18n/changelog/table-summaries.en-eu.hamlet deleted file mode 100644 index 712c92658..000000000 --- a/templates/i18n/changelog/table-summaries.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Support for table summaries e.g. sums of exercise points diff --git a/templates/i18n/changelog/tooltips-without-javascript.de-de-formal.hamlet b/templates/i18n/changelog/tooltips-without-javascript.de-de-formal.hamlet deleted file mode 100644 index 767bcdffd..000000000 --- a/templates/i18n/changelog/tooltips-without-javascript.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Tooltips funktionieren auch ohne JavaScript diff --git a/templates/i18n/changelog/tooltips-without-javascript.en-eu.hamlet b/templates/i18n/changelog/tooltips-without-javascript.en-eu.hamlet deleted file mode 100644 index 96aaa57b7..000000000 --- a/templates/i18n/changelog/tooltips-without-javascript.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Tooltips now work without JavaScript. diff --git a/templates/i18n/changelog/tutorial-registration-via-participant-table.de-de-formal.hamlet b/templates/i18n/changelog/tutorial-registration-via-participant-table.de-de-formal.hamlet deleted file mode 100644 index c66873d7c..000000000 --- a/templates/i18n/changelog/tutorial-registration-via-participant-table.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Teilnehmer:innen können von der Teilnehmerliste aus in Tutorien angemeldet werden diff --git a/templates/i18n/changelog/tutorial-registration-via-participant-table.en-eu.hamlet b/templates/i18n/changelog/tutorial-registration-via-participant-table.en-eu.hamlet deleted file mode 100644 index a6f0cc739..000000000 --- a/templates/i18n/changelog/tutorial-registration-via-participant-table.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Course participant may be registered for tutorials via the course participant table diff --git a/templates/i18n/changelog/tutorial-tutor-control.de-de-formal.hamlet b/templates/i18n/changelog/tutorial-tutor-control.de-de-formal.hamlet deleted file mode 100644 index 26e1dc5bf..000000000 --- a/templates/i18n/changelog/tutorial-tutor-control.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kontrolle über Einstellungen eines Tutoriums kann an Tutor:innen deligiert werden diff --git a/templates/i18n/changelog/tutorial-tutor-control.en-eu.hamlet b/templates/i18n/changelog/tutorial-tutor-control.en-eu.hamlet deleted file mode 100644 index cfa881c3c..000000000 --- a/templates/i18n/changelog/tutorial-tutor-control.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Control of settings for a tutorial may be delegated to the respective tutors. diff --git a/templates/i18n/changelog/tutorials.de-de-formal.hamlet b/templates/i18n/changelog/tutorials.de-de-formal.hamlet deleted file mode 100644 index d4d6c196c..000000000 --- a/templates/i18n/changelog/tutorials.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Tutorien diff --git a/templates/i18n/changelog/tutorials.en-eu.hamlet b/templates/i18n/changelog/tutorials.en-eu.hamlet deleted file mode 100644 index 4efc8e1ba..000000000 --- a/templates/i18n/changelog/tutorials.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Tutorials diff --git a/templates/i18n/changelog/upload-mode-empty-ok.de-de-formal.hamlet b/templates/i18n/changelog/upload-mode-empty-ok.de-de-formal.hamlet deleted file mode 100644 index 147284ec5..000000000 --- a/templates/i18n/changelog/upload-mode-empty-ok.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Winnie Ros -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Kursverwalter:innen können nun angeben ob Uploads, die nur aus leeren Dateien und/oder Verzeichnissen bestehen, pro Übungsblatt akzeptiert werden sollen diff --git a/templates/i18n/changelog/upload-mode-empty-ok.en-eu.hamlet b/templates/i18n/changelog/upload-mode-empty-ok.en-eu.hamlet deleted file mode 100644 index 770f309d4..000000000 --- a/templates/i18n/changelog/upload-mode-empty-ok.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Course administrators can now specify whether uploads, which consist solely of empty files and/or directories, are to be accepted on a per-exercise-sheet basis. diff --git a/templates/i18n/changelog/warning-multiple-semesters.de-de-formal.hamlet b/templates/i18n/changelog/warning-multiple-semesters.de-de-formal.hamlet deleted file mode 100644 index 39b546db5..000000000 --- a/templates/i18n/changelog/warning-multiple-semesters.de-de-formal.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Warnungen beim anlegen von Kursen, die auf mehrere zur Auswahl # -stehende Semester/Institute hinweisen diff --git a/templates/i18n/changelog/warning-multiple-semesters.en-eu.hamlet b/templates/i18n/changelog/warning-multiple-semesters.en-eu.hamlet deleted file mode 100644 index efa961786..000000000 --- a/templates/i18n/changelog/warning-multiple-semesters.en-eu.hamlet +++ /dev/null @@ -1,8 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen ,Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Display of a warning if multiple semesters/departments are # -available when creating a course. diff --git a/templates/i18n/changelog/webinterface-allocation-allocation.de-de-formal.hamlet b/templates/i18n/changelog/webinterface-allocation-allocation.de-de-formal.hamlet deleted file mode 100644 index 137a20f86..000000000 --- a/templates/i18n/changelog/webinterface-allocation-allocation.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Webinterface zur Berechnung und Durchführung von Zentralvergaben diff --git a/templates/i18n/changelog/webinterface-allocation-allocation.en-eu.hamlet b/templates/i18n/changelog/webinterface-allocation-allocation.en-eu.hamlet deleted file mode 100644 index 78a4f8a63..000000000 --- a/templates/i18n/changelog/webinterface-allocation-allocation.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Webinterface for computation of central allocations diff --git a/templates/i18n/changelog/xlsx.de-de-formal.hamlet b/templates/i18n/changelog/xlsx.de-de-formal.hamlet deleted file mode 100644 index a4bf18a30..000000000 --- a/templates/i18n/changelog/xlsx.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Tabellen können nun auch als .xlsx exportiert werden diff --git a/templates/i18n/changelog/xlsx.en-eu.hamlet b/templates/i18n/changelog/xlsx.en-eu.hamlet deleted file mode 100644 index 1b00c6c15..000000000 --- a/templates/i18n/changelog/xlsx.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Tables can now also be exported as .xlsx. diff --git a/templates/i18n/changelog/yaml-ratings.de-de-formal.hamlet b/templates/i18n/changelog/yaml-ratings.de-de-formal.hamlet deleted file mode 100644 index bce4bfe14..000000000 --- a/templates/i18n/changelog/yaml-ratings.de-de-formal.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Gregor Kleen -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -Neues (YAML-basiertes) Format für Bewertungsdateien diff --git a/templates/i18n/changelog/yaml-ratings.en-eu.hamlet b/templates/i18n/changelog/yaml-ratings.en-eu.hamlet deleted file mode 100644 index b6b04b43e..000000000 --- a/templates/i18n/changelog/yaml-ratings.en-eu.hamlet +++ /dev/null @@ -1,7 +0,0 @@ -$newline never - -$# SPDX-FileCopyrightText: 2022 Sarah Vaupel -$# -$# SPDX-License-Identifier: AGPL-3.0-or-later - -New (YAML-based) format for correction files.