Quantcast
Viewing all articles
Browse latest Browse all 7

Typo3: remove [Translate to:] and (copy) tags

Typo3's multi language support is well known and working fine. However, when translating large numbers of page entries using the "Copy Default Values" feature, there is one disadvantage:

By default, typo3 adds the string "[Translate to LANGUAGE:]" to every "translated" page object. Even worse, the string "(copy)" gets prepended to every header.

Lucky us, typo3 offers a solution to this dilemma:

Just add the following to your root page TS config (page properties => Resources) and "Translate to" and "(copy)" are gone:

TCEMAIN.table.pages {
disablePrependAtCopy = 1
disableHideAtCopy = 1
}
TCEMAIN.table.tt_content {
disablePrependAtCopy = 1
disableHideAtCopy = 1
}


Viewing all articles
Browse latest Browse all 7