Files
Jürgen Mummert 63b5556b21 Initial release
2026-02-17 18:53:39 +01:00

26 lines
1.4 KiB
PHP

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