This reverts commit fc2c2db21c9b6e00c2142552f10d7cd2de27fd1d.
This commit is contained in:
778a69cd 2023-04-03 13:17:40 +02:00
parent 595a3dca8b
commit e19a511d5b
3 changed files with 2 additions and 4 deletions

View file

@ -1020,7 +1020,6 @@
"Upcoming": "Demnächst", "Upcoming": "Demnächst",
"Upcoming events": "Bevorstehende Veranstaltungen", "Upcoming events": "Bevorstehende Veranstaltungen",
"Upcoming events from your groups": "Bevorstehende Veranstaltungen deiner Gruppen", "Upcoming events from your groups": "Bevorstehende Veranstaltungen deiner Gruppen",
"Recently created events": "Zuletzt erstellte Veranstaltungen",
"Update": "Update", "Update": "Update",
"Update app": "App aktualisieren", "Update app": "App aktualisieren",
"Update discussion title": "Überschrift der Diskussion aktualisieren", "Update discussion title": "Überschrift der Diskussion aktualisieren",

View file

@ -430,7 +430,6 @@
"Actor": "Actor", "Actor": "Actor",
"Text": "Text", "Text": "Text",
"Upcoming events": "Upcoming events", "Upcoming events": "Upcoming events",
"Recently created events": "Recently created events",
"Resources": "Resources", "Resources": "Resources",
"Public page": "Public page", "Public page": "Public page",
"Discussions": "Discussions", "Discussions": "Discussions",

View file

@ -1,13 +1,13 @@
import { EventSortField, SortDirection } from "./enums"; import { EventSortField, SortDirection } from "./enums";
export const SORTING_UPCOMING = { export const SORTING_UPCOMING = {
title: "Upcoming events", title: "Upcoming Events",
orderBy: EventSortField.BEGINS_ON, orderBy: EventSortField.BEGINS_ON,
direction: SortDirection.ASC, direction: SortDirection.ASC,
}; };
export const SORTING_CREATED = { export const SORTING_CREATED = {
title: "Recently created events", title: "Recently created Events",
orderBy: EventSortField.INSERTED_AT, orderBy: EventSortField.INSERTED_AT,
direction: SortDirection.DESC, direction: SortDirection.DESC,
}; };