From f83d6ad433a712ba478e9b5edf415b253e60fbf5 Mon Sep 17 00:00:00 2001 From: Pascal Rinker Date: Thu, 1 Feb 2018 09:08:07 +0100 Subject: [PATCH] Updated langauge labels, added composer.json --- ...x_socialservices_domain_model_district.php | 4 +-- ...x_socialservices_domain_model_helpdesk.php | 4 +-- composer.json | 29 +++++++++++++++++++ ext_emconf.php | 2 +- 4 files changed, 34 insertions(+), 5 deletions(-) create mode 100644 composer.json diff --git a/Configuration/TCA/tx_socialservices_domain_model_district.php b/Configuration/TCA/tx_socialservices_domain_model_district.php index bf5c51d..68580e9 100644 --- a/Configuration/TCA/tx_socialservices_domain_model_district.php +++ b/Configuration/TCA/tx_socialservices_domain_model_district.php @@ -28,7 +28,7 @@ 'showRecordFieldList' => 'sys_language_uid, l10n_parent, l10n_diffsource, hidden, district', ], 'types' => [ - '1' => ['showitem' => 'sys_language_uid;;;;1-1-1, l10n_parent, l10n_diffsource, hidden;;1, district,--div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.access,starttime, endtime'], + '1' => ['showitem' => 'sys_language_uid;;;;1-1-1, l10n_parent, l10n_diffsource, hidden;;1, district,--div--;LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:pages.tabs.access,starttime, endtime'], ], 'palettes' => [ '1' => ['showitem' => ''], @@ -36,7 +36,7 @@ 'columns' => [ 'sys_language_uid' => [ 'exclude' => 1, - 'label' => 'LLL:EXT:lang/locallang_general.xlf:LGL.language', + 'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_general.xlf:LGL.language', 'config' => [ 'type' => 'select', 'foreign_table' => 'sys_language', diff --git a/Configuration/TCA/tx_socialservices_domain_model_helpdesk.php b/Configuration/TCA/tx_socialservices_domain_model_helpdesk.php index 6221d8b..963e26e 100644 --- a/Configuration/TCA/tx_socialservices_domain_model_helpdesk.php +++ b/Configuration/TCA/tx_socialservices_domain_model_helpdesk.php @@ -28,7 +28,7 @@ 'showRecordFieldList' => 'sys_language_uid, l10n_parent, l10n_diffsource, hidden, title, street, house_number, zip, city, district, telephone, fax, contact_person, contact_times, email, website, barrier_free, description, tx_maps2_uid, facebook, twitter, google, tags', ], 'types' => [ - '1' => ['showitem' => 'sys_language_uid;;;;1-1-1, l10n_parent, l10n_diffsource, hidden;;1, title, street, house_number, zip, city, district, telephone, fax, contact_person, contact_times, email, website, barrier_free, description, tx_maps2_uid, facebook, twitter, google, tags,--div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.access,starttime, endtime'], + '1' => ['showitem' => 'sys_language_uid;;;;1-1-1, l10n_parent, l10n_diffsource, hidden;;1, title, street, house_number, zip, city, district, telephone, fax, contact_person, contact_times, email, website, barrier_free, description, tx_maps2_uid, facebook, twitter, google, tags,--div--;LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:pages.tabs.access,starttime, endtime'], ], 'palettes' => [ '1' => ['showitem' => ''], @@ -36,7 +36,7 @@ 'columns' => [ 'sys_language_uid' => [ 'exclude' => 1, - 'label' => 'LLL:EXT:lang/locallang_general.xlf:LGL.language', + 'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_general.xlf:LGL.language', 'config' => [ 'type' => 'select', 'foreign_table' => 'sys_language', diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..be35655 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "jweiland/socialservices", + "type": "typo3-cms-extension", + "description": "Frontend extension to display social services", + "license": "GPL-2.0+", + "keywords": ["typo3", "TYPO3 CMS", "socialservices"], + "homepage": "http://www.jweiland.net", + "authors": [ + { + "name": "Stefan Froemken", + "email": "projects@jweiland.net", + "role": "Developer" + } + ], + "support": { + "email": "projects@jweiland.net", + "issues": "https://github.com/jweiland-net/socialservices/issues", + "source": "https://github.com/jweiland-net/socialservices" + }, + "require": { + "typo3/cms-core": "~8.7", + "jweiland/maps2": ">=2.9.0,<3.2" + }, + "autoload": { + "psr-4": { + "JWeiland\\Socialservices\\": "Classes" + } + } +} diff --git a/ext_emconf.php b/ext_emconf.php index 423b4f7..bbd797c 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -31,7 +31,7 @@ 'constraints' => [ 'depends' => [ 'typo3' => '8.7.0-8.7.99', - 'maps2' => '2.9.0-2.9.99', + 'maps2' => '2.9.0-3.1.99', ], 'conflicts' => [ ],