Reputation: 5132
When localizing tx_news articles in TYPO3 6.x out of the box, you have to set many values for the translation manually that could be taken from the original language.
For example:
How can it be achieved that these fields either completely fall back to the original language - or at least when they are left empty?
Upvotes: 0
Views: 1077
Reputation: 4558
The property "l10n_mode" in the field configuration of a TCA is responsible for the localization configuration. The possible values are documented in the TCA reference: http://docs.typo3.org/typo3cms/TCAReference/Reference/Columns/Index.html
The categories in tx_news are set to "mergeIfNotBlank". So what you want should be the default value: If you leave the field empty in the alternative language, the categories from the default language should be taken.
If you want to hide the fields and always take the values from the default language, you can of course override the TCA and set the l10n_mode to exclude, e.g.
$GLOBALS['TCA']['tx_news_domain_model_news']['columns']['categories']['l10n_mode'] = 'exclude';
(in your extTables.php)
Upvotes: 2