Project

General

Profile

Actions

Bug #33499

closed

Backend ignores l10n_mode in record titles

Added by Jonas Renggli over 12 years ago. Updated almost 6 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2012-01-27
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

All titles of translated records are displayed as "[No title]" if the l10n_mode of the field selected as label is set to "exclude".
This is quite annoying because editors get a list including dozens of records titled with "[No title]" when editing records in list module. The editor can help himself by activating "Localization view" this way records are shown as following:

  • Name 1
    • [No title]
    • [No title]
  • Name 2
    • [No title]
    • [No title]
  • Name 3
    • [No title]

What do you think about using the same value as title in backend that is already used in frontend (e.g. extbase automatically uses l10n_mode). This would be much more consistent because editors can't even set the value for the title field (because it's excluded) but there's one displayed in FE.

Additional Information

$TCA['tx_abcd_table'] = array(
    'ctrl' => array(
        'label' => 'name',
    ...
    'columns' => array(
        'name' => array(
            'l10n_mode' => 'exclude',
    ...

Actions

Also available in: Atom PDF