Project

General

Profile

Actions

Bug #40650

closed

Publish Dates not usable in additional language

Added by Tobias Kleffmann over 11 years ago. Updated over 9 years ago.

Status:
Closed
Priority:
Must have
Category:
Backend User Interface
Target version:
Start date:
2012-09-05
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.6
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

The feature "Publish Dates" is working fine in the standard language of the installation but is greyed-out in another language.
This happens on independent content and is not a problem of inheritance.


Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Bug #24211: starttime / endtime l10n_mode exclude in core tablesClosedTolleiv Nietsch2010-11-26

Actions
Is duplicate of TYPO3 Core - Bug #32252: Unable to set Publish Dates and Access Rights on any alternative language content elementClosed2011-12-01

Actions
Actions #1

Updated by Francois Suter over 11 years ago

  • Status changed from New to Needs Feedback
  • Assignee set to Francois Suter

Hi Tobias,

This is apparently by design, although the intent can be question. Indeed the TCA of tt_content has the following:

$TCA['tt_content']['columns']['starttime']['l10n_display'] = 'defaultAsReadonly';
$TCA['tt_content']['columns']['starttime']['l10n_mode'] = 'exclude';

which means that the field should not be included in translations at all (l10n_mode = exclude). I'm not sure why this was designed this way, but it's easy to override. Just do

unset($TCA['tt_content']['columns']['starttime']['l10n_display']);
unset($TCA['tt_content']['columns']['starttime']['l10n_mode']);

in your extTables.php file (or some other ext_tables.php if you put your customization in a separate extension) and it should work. Does that help?

Actions #2

Updated by Andreas Kiessling over 11 years ago

This problem was already discussed here #32252 and was introduced here #24211

Actions #3

Updated by Francois Suter over 11 years ago

  • Category set to Backend User Interface
  • Status changed from Needs Feedback to Accepted
  • Target version set to 4.6.11
  • TYPO3 Version changed from 4.7 to 4.6

Andreas, thanks for the history. I'll try to look into that.

Actions #4

Updated by Tobias Kleffmann over 11 years ago

Thanks a lot and sorry for the inconvenience!

Actions #5

Updated by Stefan Neufeind over 11 years ago

I also think I remember we discussed disabling certain fields where, for practical reasons, only the default-value is taken into account.

Though it might make sense to show a translated element in a different translation/language at some other point in time :-)

Actions #6

Updated by Mathias Schreiber over 9 years ago

  • Status changed from Accepted to Closed
  • Is Regression set to No

closing this one, we will continue in #32252

Actions

Also available in: Atom PDF