forked from potsda.mn/mobilizon
make i18n work for upstream PR https://framagit.org/framasoft/mobilizon/-/merge_requests/1236
This commit is contained in:
parent
ce6ffc4e66
commit
f1304b7df8
|
@ -1020,6 +1020,7 @@
|
||||||
"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",
|
||||||
|
|
|
@ -430,6 +430,7 @@
|
||||||
"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",
|
||||||
|
|
|
@ -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,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue