This commit is contained in:
778a69cd 2022-08-03 18:39:45 +02:00
parent ce6ffc4e66
commit f1304b7df8
3 changed files with 4 additions and 2 deletions

View file

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

View file

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

View file

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