26 lines
1.5 KiB
PHP
26 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
$GLOBALS['TL_LANG']['tl_location']['title'] = ['Titel', 'Name des Veranstaltungsortes'];
|
|
$GLOBALS['TL_LANG']['tl_location']['alias'] = ['Alias', 'Eindeutiger Alias des Veranstaltungsortes'];
|
|
$GLOBALS['TL_LANG']['tl_location']['description'] = ['Beschreibung', 'Beschreibung'];
|
|
$GLOBALS['TL_LANG']['tl_location']['street'] = ['Straße', 'Straße'];
|
|
$GLOBALS['TL_LANG']['tl_location']['street2'] = ['Adresszusatz', 'Adresszusatz'];
|
|
$GLOBALS['TL_LANG']['tl_location']['postal'] = ['PLZ', 'Postleitzahl'];
|
|
$GLOBALS['TL_LANG']['tl_location']['city'] = ['Ort', 'Ort'];
|
|
$GLOBALS['TL_LANG']['tl_location']['state'] = ['Bundesland', 'Bundesland'];
|
|
$GLOBALS['TL_LANG']['tl_location']['country'] = ['Land', 'Land'];
|
|
$GLOBALS['TL_LANG']['tl_location']['lat'] = ['Breitengrad', 'Breitengrad'];
|
|
$GLOBALS['TL_LANG']['tl_location']['lng'] = ['Längengrad', 'Längengrad'];
|
|
$GLOBALS['TL_LANG']['tl_location']['image'] = ['Bild', 'Bild-Datei'];
|
|
$GLOBALS['TL_LANG']['tl_location']['published'] = ['Veröffentlicht', 'Veranstaltungsort veröffentlichen'];
|
|
|
|
$GLOBALS['TL_LANG']['tl_location']['title_legend'] = 'Titel';
|
|
$GLOBALS['TL_LANG']['tl_location']['address_legend'] = 'Adresse';
|
|
$GLOBALS['TL_LANG']['tl_location']['geo_legend'] = 'Geodaten';
|
|
$GLOBALS['TL_LANG']['tl_location']['description_legend'] = 'Beschreibung';
|
|
$GLOBALS['TL_LANG']['tl_location']['publish_legend'] = 'Veröffentlichung';
|
|
|
|
$GLOBALS['TL_LANG']['tl_location']['aliasExists'] = 'Alias "%s" ist bereits vergeben.';
|