问题
How can I rename a TYPO3 CMS backend field for authors? i.e. the mentioned field for content-elements of csc_styled_content?
回答1:
In general, overriding label names can by done with Page TSconfig in the backend. The following example modifies the label of the subheader
field.
TCEFORM {
tt_content {
subheader.label = My new Label-Name
}
}
There are two way to configure that adjustment in TYPO3.
Type your configuration changes directly to the page settings » resources » TypoScript Configuration » Page TSConfig (see the screenshot below)
as an alternative you can store that configuration directly in the file system - either in your custom extension (e.g. at
typo3conf/ext/my_extension/Configuration/TSconfig/labels.t3s
) or with a similar name in the global file storage (e.g.fileadmin/templates/configuration/...
)
That's basically it to provide custom labels for any database table in the TYPO3 backend. Find more aspects that can be adjusted in the accordant Page TSconfig documentation.
来源:https://stackoverflow.com/questions/28094786/how-to-rename-subheader-in-typo3-cms-backend