Initial release

This commit is contained in:
Jürgen Mummert
2026-02-17 18:53:23 +01:00
commit 63b5556b21
45 changed files with 3962 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
$GLOBALS['TL_LANG']['MOD']['eventmanager_organisationen'] = ['Organizations', 'Manage organizations'];
$GLOBALS['TL_LANG']['MOD']['eventmanager_veranstaltungsorte'] = ['Locations', 'Manage locations'];
$GLOBALS['TL_LANG']['FMD']['eventmanager'] = 'Event manager';
$GLOBALS['TL_LANG']['FMD']['member_organizations'] = ['My organizations', 'Lists organizations of the logged-in member.'];
$GLOBALS['TL_LANG']['FMD']['organization_edit'] = ['Edit organization', 'Edit form for one organization.'];
$GLOBALS['TL_LANG']['FMD']['member_events'] = ['My events', 'Lists events of the member organizations.'];
$GLOBALS['TL_LANG']['FMD']['event_edit'] = ['Edit event', 'Edit form for one event.'];
@@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
$GLOBALS['TL_LANG']['tl_calendar_events']['organization_legend'] = 'Organizations and location';
$GLOBALS['TL_LANG']['tl_calendar_events']['location_id'] = ['Location', 'Assigned location'];
$GLOBALS['TL_LANG']['tl_calendar_events']['type'] = ['Type', 'Multiple types can be selected.'];
$GLOBALS['TL_LANG']['tl_calendar_events']['organizations'] = ['Organizations', 'Assigned organizations'];
$GLOBALS['TL_LANG']['tl_calendar_events']['photographer'] = ['Author/Photographer', 'Please provide the image author/photographer and make sure you have permission to use the image.'];
$GLOBALS['TL_LANG']['tl_calendar_events']['isSoldOut'] = ['Sold out', 'This event is sold out.'];
$GLOBALS['TL_LANG']['tl_calendar_events']['isCanceled'] = ['Canceled', 'This event has been canceled.'];
$GLOBALS['TL_LANG']['tl_calendar_events']['termsAccepted'] = ['Terms accepted', 'The terms of use have been accepted.'];
$GLOBALS['TL_LANG']['tl_calendar_events']['type_options']['accommodation'] = 'Accommodation';
$GLOBALS['TL_LANG']['tl_calendar_events']['type_options']['shopping'] = 'Shopping';
$GLOBALS['TL_LANG']['tl_calendar_events']['type_options']['culture'] = 'Culture';
+25
View File
@@ -0,0 +1,25 @@
<?php
declare(strict_types=1);
$GLOBALS['TL_LANG']['tl_location']['title'] = ['Title', 'Location name'];
$GLOBALS['TL_LANG']['tl_location']['alias'] = ['Alias', 'Unique location alias'];
$GLOBALS['TL_LANG']['tl_location']['description'] = ['Description', 'Description'];
$GLOBALS['TL_LANG']['tl_location']['street'] = ['Street', 'Street'];
$GLOBALS['TL_LANG']['tl_location']['street2'] = ['Address line 2', 'Address line 2'];
$GLOBALS['TL_LANG']['tl_location']['postal'] = ['Postal code', 'Postal code'];
$GLOBALS['TL_LANG']['tl_location']['city'] = ['City', 'City'];
$GLOBALS['TL_LANG']['tl_location']['state'] = ['State', 'State'];
$GLOBALS['TL_LANG']['tl_location']['country'] = ['Country', 'Country'];
$GLOBALS['TL_LANG']['tl_location']['lat'] = ['Latitude', 'Latitude'];
$GLOBALS['TL_LANG']['tl_location']['lng'] = ['Longitude', 'Longitude'];
$GLOBALS['TL_LANG']['tl_location']['image'] = ['Image', 'Image file'];
$GLOBALS['TL_LANG']['tl_location']['published'] = ['Published', 'Publish location'];
$GLOBALS['TL_LANG']['tl_location']['title_legend'] = 'Title';
$GLOBALS['TL_LANG']['tl_location']['address_legend'] = 'Address';
$GLOBALS['TL_LANG']['tl_location']['geo_legend'] = 'Geo data';
$GLOBALS['TL_LANG']['tl_location']['description_legend'] = 'Description';
$GLOBALS['TL_LANG']['tl_location']['publish_legend'] = 'Publication';
$GLOBALS['TL_LANG']['tl_location']['aliasExists'] = 'Alias "%s" already exists.';
+6
View File
@@ -0,0 +1,6 @@
<?php
declare(strict_types=1);
$GLOBALS['TL_LANG']['tl_member']['organization_legend'] = 'Organizations';
$GLOBALS['TL_LANG']['tl_member']['organizations'] = ['Organizations', 'Assigned organizations'];
+12
View File
@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
$GLOBALS['TL_LANG']['tl_module']['eventmanager_legend'] = 'Event manager';
$GLOBALS['TL_LANG']['tl_module']['editPage'] = ['Edit page', 'Please select the page containing the edit module.'];
$GLOBALS['TL_LANG']['tl_module']['listPage'] = ['List page', 'Please select the page containing the list module.'];
$GLOBALS['TL_LANG']['tl_module']['logoFolder'] = ['Logo folder', 'Please select the folder where uploaded organization logos should be stored.'];
$GLOBALS['TL_LANG']['tl_module']['eventFolder'] = ['Event folder', 'Please select the folder where event-related uploads should be stored.'];
$GLOBALS['TL_LANG']['tl_module']['termsPage'] = ['Terms page', 'Optional: page containing the terms of use linked from the frontend consent label.'];
$GLOBALS['TL_LANG']['tl_module']['frontendAuthorId'] = ['Backend user ID', 'Backend user ID that should be set as author for events created from the frontend.'];
$GLOBALS['TL_LANG']['tl_module']['frontendArchiveId'] = ['News archive ID', 'Archive ID (pid) where events created from the frontend should be stored.'];
+38
View File
@@ -0,0 +1,38 @@
<?php
declare(strict_types=1);
$GLOBALS['TL_LANG']['tl_organization']['title'] = ['Title', 'Organization name'];
$GLOBALS['TL_LANG']['tl_organization']['alias'] = ['Alias', 'Unique organization alias'];
$GLOBALS['TL_LANG']['tl_organization']['logo'] = ['Logo', 'Logo file'];
$GLOBALS['TL_LANG']['tl_organization']['street'] = ['Street', 'Street'];
$GLOBALS['TL_LANG']['tl_organization']['street2'] = ['Address line 2', 'Address line 2'];
$GLOBALS['TL_LANG']['tl_organization']['postal'] = ['Postal code', 'Postal code'];
$GLOBALS['TL_LANG']['tl_organization']['city'] = ['City', 'City'];
$GLOBALS['TL_LANG']['tl_organization']['state'] = ['State', 'State'];
$GLOBALS['TL_LANG']['tl_organization']['country'] = ['Country', 'Country'];
$GLOBALS['TL_LANG']['tl_organization']['phone'] = ['Phone', 'Phone number'];
$GLOBALS['TL_LANG']['tl_organization']['email'] = ['Email', 'Email address'];
$GLOBALS['TL_LANG']['tl_organization']['website'] = ['Website', 'Website'];
$GLOBALS['TL_LANG']['tl_organization']['lat'] = ['Latitude', 'Latitude'];
$GLOBALS['TL_LANG']['tl_organization']['lng'] = ['Longitude', 'Longitude'];
$GLOBALS['TL_LANG']['tl_organization']['description'] = ['Description', 'Description'];
$GLOBALS['TL_LANG']['tl_organization']['published'] = ['Published', 'Publish organization'];
$GLOBALS['TL_LANG']['tl_organization']['isExternal'] = ['External', 'External organization'];
$GLOBALS['TL_LANG']['tl_organization']['type'] = ['Type', 'Multiple types can be selected.'];
$GLOBALS['TL_LANG']['tl_organization']['members'] = ['Members', 'Assigned members'];
$GLOBALS['TL_LANG']['tl_organization']['type_options']['accommodation'] = 'Accommodation';
$GLOBALS['TL_LANG']['tl_organization']['type_options']['shopping'] = 'Shopping';
$GLOBALS['TL_LANG']['tl_organization']['type_options']['culture'] = 'Culture';
$GLOBALS['TL_LANG']['tl_organization']['title_legend'] = 'Title';
$GLOBALS['TL_LANG']['tl_organization']['address_legend'] = 'Address';
$GLOBALS['TL_LANG']['tl_organization']['contact_legend'] = 'Contact';
$GLOBALS['TL_LANG']['tl_organization']['geo_legend'] = 'Geo data';
$GLOBALS['TL_LANG']['tl_organization']['description_legend'] = 'Description';
$GLOBALS['TL_LANG']['tl_organization']['relation_legend'] = 'Relations';
$GLOBALS['TL_LANG']['tl_organization']['publish_legend'] = 'Publication';
$GLOBALS['TL_LANG']['tl_organization']['memberFallback'] = 'Member #%s';
$GLOBALS['TL_LANG']['tl_organization']['aliasExists'] = 'Alias "%s" already exists.';