Merge branch 'smokefree' into 'main'
Add smoke-free as a metadata option for events See merge request framasoft/mobilizon!1261
This commit is contained in:
commit
0f05afc643
@ -394,6 +394,9 @@
|
|||||||
"From the {startDate} to the {endDate}": "Vom {startDate} bis zum {endDate}",
|
"From the {startDate} to the {endDate}": "Vom {startDate} bis zum {endDate}",
|
||||||
"From yourself": "Von Ihnen selbst",
|
"From yourself": "Von Ihnen selbst",
|
||||||
"Fully accessible with a wheelchair": "Komplett barrierefrei für Rollstühle",
|
"Fully accessible with a wheelchair": "Komplett barrierefrei für Rollstühle",
|
||||||
|
"Smoke free": "Rauchfrei",
|
||||||
|
"Whether smoking is prohibited during the event": "Während der Veranstaltung wird nicht geraucht",
|
||||||
|
"Smoking allowed": "Rauchen gestattet",
|
||||||
"Gather ⋅ Organize ⋅ Mobilize": "Treffen ⋅ Organisieren ⋅ Mobilisieren",
|
"Gather ⋅ Organize ⋅ Mobilize": "Treffen ⋅ Organisieren ⋅ Mobilisieren",
|
||||||
"General": "Allgemein",
|
"General": "Allgemein",
|
||||||
"General information": "Allgemeine Informationen",
|
"General information": "Allgemeine Informationen",
|
||||||
|
@ -1066,6 +1066,9 @@
|
|||||||
"Not accessible with a wheelchair": "Not accessible with a wheelchair",
|
"Not accessible with a wheelchair": "Not accessible with a wheelchair",
|
||||||
"Partially accessible with a wheelchair": "Partially accessible with a wheelchair",
|
"Partially accessible with a wheelchair": "Partially accessible with a wheelchair",
|
||||||
"Fully accessible with a wheelchair": "Fully accessible with a wheelchair",
|
"Fully accessible with a wheelchair": "Fully accessible with a wheelchair",
|
||||||
|
"Smoke free": "Smoke free",
|
||||||
|
"Whether smoking is prohibited during the event": "Whether smoking is prohibited during the event",
|
||||||
|
"Smoking allowed": "Smoking allowed",
|
||||||
"YouTube replay": "YouTube replay",
|
"YouTube replay": "YouTube replay",
|
||||||
"The URL where the event live can be watched again after it has ended": "The URL where the event live can be watched again after it has ended",
|
"The URL where the event live can be watched again after it has ended": "The URL where the event live can be watched again after it has ended",
|
||||||
"Twitch replay": "Twitch replay",
|
"Twitch replay": "Twitch replay",
|
||||||
@ -1406,4 +1409,4 @@
|
|||||||
"Least recently published": "Least recently published",
|
"Least recently published": "Least recently published",
|
||||||
"With the most participants": "With the most participants",
|
"With the most participants": "With the most participants",
|
||||||
"Number of members": "Number of members"
|
"Number of members": "Number of members"
|
||||||
}
|
}
|
||||||
|
@ -56,6 +56,22 @@ export const eventMetaDataList: IEventMetadataDescription[] = [
|
|||||||
},
|
},
|
||||||
category: EventMetadataCategories.ACCESSIBILITY,
|
category: EventMetadataCategories.ACCESSIBILITY,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: "smoking-off",
|
||||||
|
key: "mz:accessibility:smokeFree",
|
||||||
|
label: i18n.t("Smoke free") as string,
|
||||||
|
description: i18n.t(
|
||||||
|
"Whether smoking is prohibited during the event"
|
||||||
|
) as string,
|
||||||
|
value: "false",
|
||||||
|
type: EventMetadataType.BOOLEAN,
|
||||||
|
keyType: EventMetadataKeyType.PLAIN,
|
||||||
|
choices: {
|
||||||
|
true: i18n.t("Smoke free") as string,
|
||||||
|
false: i18n.t("Smoking allowed") as string,
|
||||||
|
},
|
||||||
|
category: EventMetadataCategories.ACCESSIBILITY,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: "youtube",
|
icon: "youtube",
|
||||||
key: "mz:replay:youtube:url",
|
key: "mz:replay:youtube:url",
|
||||||
|
Loading…
Reference in New Issue
Block a user