Skip to content
Snippets Groups Projects
Commit 55343f38 authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Finishing location tca

parent 5f6da8c2
No related branches found
No related tags found
No related merge requests found
......@@ -44,21 +44,21 @@ return [
'columns' => [
'sys_language_uid' => [
'exclude' => 1,
'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.language',
'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_general.xml:LGL.language',
'config' => [
'type' => 'select',
'foreign_table' => 'sys_language',
'foreign_table_where' => 'ORDER BY sys_language.title',
'items' => [
['LLL:EXT:lang/locallang_general.xml:LGL.allLanguages', -1],
['LLL:EXT:lang/locallang_general.xml:LGL.default_value', 0]
['LLL:EXT:lang/Resources/Private/Language/locallang_general.xml:LGL.allLanguages', -1],
['LLL:EXT:lang/Resources/Private/Language/locallang_general.xml:LGL.default_value', 0]
],
],
],
'l10n_parent' => [
'displayCond' => 'FIELD:sys_language_uid:>:0',
'exclude' => 1,
'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.l18n_parent',
'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_general.xml:LGL.l18n_parent',
'config' => [
'type' => 'select',
'items' => [
......@@ -74,7 +74,7 @@ return [
],
],
't3ver_label' => [
'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.versionLabel',
'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_general.xml:LGL.versionLabel',
'config' => [
'type' => 'input',
'size' => 30,
......@@ -90,7 +90,7 @@ return [
],
'hidden' => [
'exclude' => 1,
'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.hidden',
'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_general.xml:LGL.hidden',
'config' => [
'type' => 'check',
],
......@@ -98,7 +98,7 @@ return [
'starttime' => [
'exclude' => 1,
'l10n_mode' => 'mergeIfNotBlank',
'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.starttime',
'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_general.xml:LGL.starttime',
'config' => [
'type' => 'input',
'size' => 13,
......@@ -114,7 +114,7 @@ return [
'endtime' => [
'exclude' => 1,
'l10n_mode' => 'mergeIfNotBlank',
'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.endtime',
'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_general.xml:LGL.endtime',
'config' => [
'type' => 'input',
'size' => 13,
......
......@@ -9,6 +9,10 @@
<authorEmail>fabian@sgalinski.de</authorEmail>
</header>
<body>
<trans-unit id=":tx_sgjobs_domain_model_contact.city" approved="yes">
<source>City</source>
<target>Stadt</target>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_base" approved="yes">
<source>Base Table</source>
<target>Basis-Tabelle</target>
......@@ -33,6 +37,38 @@
<source>Text Field</source>
<target>Textfeld</target>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact" approved="yes">
<source>Contact</source>
<target>Kontakt</target>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.city" approved="yes">
<source>City</source>
<target>Stadt</target>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.company" approved="yes">
<source>Company</source>
<target>Firma</target>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.email" approved="yes">
<source>Email</source>
<target>E-Mail</target>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.first_name" approved="yes">
<source>First name</source>
<target>Vorname</target>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.last_name" approved="yes">
<source>Last name</source>
<target>Nachname</target>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.phone" approved="yes">
<source>Phone</source>
<target>Telefon</target>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.zip" approved="yes">
<source>Zip code</source>
<target>PLZ</target>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_job" approved="yes">
<source>Job offer</source>
<target>Stellenanzeige</target>
......
......@@ -9,6 +9,9 @@
<authorEmail>fabian@sgalinski.de</authorEmail>
</header>
<body>
<trans-unit id=":tx_sgjobs_domain_model_contact.city">
<source>City</source>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_base">
<source>Base Table</source>
</trans-unit>
......@@ -27,6 +30,30 @@
<trans-unit id="tx_sgjobs_domain_model_base.text_field">
<source>Text Field</source>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact">
<source>Contact</source>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.city">
<source>City</source>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.company">
<source>Company</source>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.email">
<source>Email</source>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.first_name">
<source>First name</source>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.last_name">
<source>Last name</source>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.phone">
<source>Phone</source>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_contact.zip">
<source>Zip code</source>
</trans-unit>
<trans-unit id="tx_sgjobs_domain_model_job">
<source>Job offer</source>
</trans-unit>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment