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
+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.';